/* ============================================
   CodeNest Digitals LLC - Static Website CSS
   ============================================ */

/* CSS Variables */
:root {
  --primary: #3b5998;
  --primary-light: #4a6baf;
  --primary-dark: #2d4373;
  --foreground: #1a1f36;
  --background: #f8f9fc;
  --card: #ffffff;
  --secondary: #f0f2f7;
  --muted: #6b7280;
  --border: #e5e7eb;
  --destructive: #ef4444;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-white { color: #ffffff; }
.text-foreground { color: var(--foreground); }

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   Disclaimer Bar
   ============================================ */
.disclaimer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem;
}

.disclaimer-bar p {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .disclaimer-bar p {
    font-size: 0.875rem;
  }
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .navbar {
    top: 52px;
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
}

.navbar-brand .brand-primary {
  color: var(--primary);
}

.navbar-brand .brand-secondary {
  color: var(--foreground);
}

.navbar-brand .brand-muted {
  color: var(--muted);
  font-weight: 500;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .navbar-brand .brand-muted {
    font-size: 1.125rem;
  }
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  color: var(--muted);
  transition: all 0.2s;
}

.navbar-nav a:hover {
  color: var(--foreground);
  background-color: var(--secondary);
}

.navbar-nav a.active {
  color: var(--primary);
  font-weight: 500;
  background-color: rgba(59, 89, 152, 0.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-call-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .navbar-call-btn {
    display: inline-flex;
  }
}

.navbar-call-btn:hover {
  background-color: var(--primary-light);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background-color: var(--secondary);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--muted);
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: var(--foreground);
  background-color: var(--secondary);
}

.mobile-menu a.active {
  color: var(--primary);
  font-weight: 500;
  background-color: rgba(59, 89, 152, 0.1);
}

.mobile-menu .mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* ============================================
   Main Content Padding
   ============================================ */
.main-content {
  padding-top: 124px;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 116px;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 700px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(59, 89, 152, 0.8);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-cta-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 1.25rem 3rem;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid rgba(59, 89, 152, 0.6);
  box-shadow: 0 0 20px rgba(59, 89, 152, 0.3);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .hero-call-btn {
    padding: 1.5rem 4rem;
    font-size: 2.25rem;
  }
}

.hero-call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 89, 152, 0.5);
  border-color: rgba(59, 89, 152, 0.8);
}

.hero-call-btn svg {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .hero-call-btn svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ============================================
   Page Hero (for inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 4rem 1rem;
  overflow: hidden;
  background-color: var(--primary);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 6rem 1rem;
  }
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.page-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.page-hero-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}

.page-hero h1 {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto;
}

.page-hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
  transition: all 0.2s;
}

.page-hero-call-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-secondary {
  background-color: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
  position: relative;
  overflow: hidden;
}

.trust-badges-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b5998' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(59, 89, 152, 0.3);
  box-shadow: var(--shadow-xl);
  transform: translateY(-0.5rem);
}

.card-body {
  padding: 2rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(3deg);
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.card-icon.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.card-icon.gradient-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.card-icon.gradient-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.card-icon.gradient-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.card-icon.gradient-red { background: linear-gradient(135deg, #ef4444, #e11d48); }
.card-icon.gradient-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.card-icon.gradient-slate { background: linear-gradient(135deg, #475569, #334155); }

.card-centered {
  text-align: center;
}

.card-centered .card-icon {
  margin-left: auto;
  margin-right: auto;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Accent line on top */
.card-accent-line {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover .card-accent-line {
  opacity: 1;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(59, 89, 152, 0.1);
  margin-bottom: 1.5rem;
}

.service-card .card-icon svg {
  color: var(--primary);
}

.service-card:hover .card-icon {
  background-color: var(--primary);
}

.service-card:hover .card-icon svg {
  color: #ffffff;
}

.service-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.2s;
}

.service-card-btn:hover {
  background-color: var(--primary-light);
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
}

.step-line {
  display: none;
  position: absolute;
  top: 2rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .step-line {
    display: block;
  }
}

/* ============================================
   Why Choose Us Grid
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-content p {
    font-size: 1.25rem;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: var(--primary);
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}

.cta-btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

.cta-or-call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-or-call span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.cta-or-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.2s;
}

.cta-or-call a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand .brand-primary { color: var(--primary); }
.footer-brand .brand-secondary { color: var(--foreground); }
.footer-brand .brand-muted { color: var(--muted); font-weight: 500; font-size: 1rem; }

.footer-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--foreground);
}

.footer-phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.footer-phone a:hover {
  color: var(--primary-light);
}

.footer-hours {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  max-width: 56rem;
  margin: 0 auto;
}

.footer-disclaimer .copyright {
  margin-top: 1rem;
}

/* ============================================
   Floating Call Button
   ============================================ */
.floating-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
  animation: none;
}

.floating-call-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 89, 152, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(59, 89, 152, 0); }
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--destructive);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--secondary);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit-btn:hover {
  background-color: var(--primary-light);
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.contact-info-card.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-info-card.primary::before,
.contact-info-card.primary::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info-card.primary::before {
  width: 8rem;
  height: 8rem;
  top: -4rem;
  right: -4rem;
}

.contact-info-card.primary::after {
  width: 6rem;
  height: 6rem;
  bottom: -3rem;
  left: -3rem;
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-info-card.default {
  background-color: var(--card);
  border: 1px solid var(--border);
}

.contact-info-card.default:hover {
  border-color: rgba(59, 89, 152, 0.3);
  box-shadow: var(--shadow-lg);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}

.contact-card-icon.white {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-card-subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ffffff;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}

.contact-call-btn:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

.contact-email-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-email-link:hover {
  color: var(--primary-light);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-hours-row span:first-child {
  color: var(--muted);
}

.contact-hours-row span:last-child {
  font-weight: 600;
}

.contact-hours-row .closed {
  color: var(--destructive);
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.legal-card:hover {
  border-color: rgba(59, 89, 152, 0.3);
  box-shadow: var(--shadow-xl);
}

.legal-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.legal-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.legal-card:hover .legal-card-icon {
  transform: scale(1.1);
}

.legal-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}

.legal-card-body {
  flex: 1;
}

.legal-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-card p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.legal-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.legal-list li span {
  color: var(--muted);
}

.legal-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-card-footer p {
  margin-bottom: 0;
}

/* Legal Contact Card */
.legal-contact-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
}

.legal-contact-card .legal-card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.legal-contact-card h2 {
  color: #ffffff;
}

.legal-contact-card p {
  color: rgba(255, 255, 255, 0.8);
}

.legal-contact-card a {
  color: #ffffff;
  font-weight: 600;
  transition: opacity 0.2s;
}

.legal-contact-card a:hover {
  opacity: 0.8;
}

/* ============================================
   Services Detail Page
   ============================================ */
.service-detail-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-content {
  padding: 2rem;
}

@media (min-width: 768px) {
  .service-detail-content {
    padding: 3rem;
  }
}

.service-detail-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: rgba(59, 89, 152, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-detail-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-detail-content h2 {
    font-size: 1.875rem;
  }
}

.service-detail-content > p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-detail-visual {
  background-color: var(--secondary);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-detail-visual {
    padding: 3rem;
  }
}

.service-detail-visual-inner {
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  background-color: rgba(59, 89, 152, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-visual-inner svg {
  width: 6rem;
  height: 6rem;
  color: rgba(59, 89, 152, 0.4);
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-visual {
  background-color: var(--secondary);
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .about-visual {
    padding: 3rem;
  }
}

.about-visual-inner {
  aspect-ratio: 1;
  border-radius: 1rem;
  background-color: rgba(59, 89, 152, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-inner svg {
  width: 8rem;
  height: 8rem;
  color: rgba(59, 89, 152, 0.4);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-trust-section {
  background-color: var(--secondary);
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .about-trust-section {
    padding: 3rem;
  }
}

.about-trust-section h2 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   Success Message
   ============================================ */
.success-message {
  display: none;
  background-color: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.success-message svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
}

.success-message p {
  color: #065f46;
  margin: 0;
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.relative { position: relative; }

/* ============================================
   Responsive Visibility
   ============================================ */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}
