 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal: #4F46E5;
    --teal-dark: #312E81;
    --teal-light: #EEF2FF;
    --teal-mid: #6366F1;
    --amber: #7C3AED;
    --amber-light: #F5F3FF;
    --slate: #1E1B4B;
    --slate-mid: #3730A3;
    --muted: #6B7280;
    --soft: #F5F3FF;
    --white: #FFFFFF;
    --border: #E0E7FF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 2px 20px rgba(79,70,229,0.08);
    --shadow-md: 0 8px 32px rgba(79,70,229,0.14);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ─── UTILITY ─── */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 88px 0; }
  .section-sm { padding: 64px 0; }
  .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--slate);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.7;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
  }
  .btn-primary {
    background: var(--teal);
    color: var(--white);
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,123,108,0.35); }
  .btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
  }
  .btn-outline:hover { background: var(--teal); color: white; transform: translateY(-1px); }
  .btn-white {
    background: var(--white);
    color: var(--teal);
  }
  .btn-white:hover { background: var(--teal-light); }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--teal-dark);
    color: #A7F3D0;
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar a { color: #A7F3D0; }
  .topbar a:hover { color: white; }
  .topbar-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .topbar-item { display: flex; align-items: center; gap: 6px; }
  .topbar-icon {
    width: 14px; height: 14px;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-dot {
    width: 10px; height: 10px;
    background: var(--teal-mid);
    border-radius: 50%;
    display: inline-block;
  }
  .nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }
  .nav-links a {
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.18s;
  }
  .nav-links a:hover { color: var(--teal); background: var(--teal-light); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: 0.2s; }
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 200;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .mobile-menu a { font-size: 20px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--slate); }
  .close-btn { font-size: 28px; background: none; border: none; cursor: pointer; color: var(--slate); }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 60%, #7C3AED 100%);
    color: white;
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #C7D2FE;
    margin-bottom: 24px;
  }
  .hero-badge-dot {
    width: 6px; height: 6px;
    background: #A5B4FC;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
  }
  .hero h1 em {
    font-style: normal;
    color: #C7D2FE;
  }
  .hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.80);
    margin-bottom: 36px;
    max-width: 500px;
  }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s, background 0.2s;
  }
  .hero-card:hover { transform: translateX(4px); background: rgba(255,255,255,0.16); }
  .hero-card-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .hero-card-text strong { font-size: 15px; font-weight: 600; color: white; display: block; margin-bottom: 2px; }
  .hero-card-text span { font-size: 13px; color: rgba(255,255,255,0.65); }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--teal);
  }
  .trust-item span { font-size: 13px; color: var(--muted); font-weight: 500; }

  /* ─── QUICK ACTIONS ─── */
  .quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .quick-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .quick-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .quick-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .quick-card:hover::before { transform: scaleX(1); }
  .quick-icon { font-size: 32px; margin-bottom: 12px; }
  .quick-card h3 { font-size: 15px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
  .quick-card p { font-size: 13px; color: var(--muted); }

  /* ─── ABOUT ─── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-main-card {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .about-main-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .about-main-card blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    color: white;
    font-style: italic;
  }
  .about-main-card cite { font-size: 14px; color: rgba(255,255,255,0.6); font-style: normal; }
  .about-float-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    position: absolute;
    right: -28px;
    bottom: -28px;
    min-width: 200px;
  }
  .about-float-stat { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--teal); line-height: 1; }
  .about-float-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
  .about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .pill {
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
  }
  .about-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .about-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .about-check {
    width: 22px; height: 22px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
  }
  .about-points li span { font-size: 15px; color: var(--slate-mid); line-height: 1.5; }

  /* ─── SERVICES ─── */
  .services-bg { background: var(--soft); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }
  .service-icon {
    font-size: 36px;
    margin-bottom: 14px;
  }
  .service-card h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
  .service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .service-link:hover { text-decoration: underline; }

  /* ─── WHY CHOOSE US ─── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-cards { display: flex; flex-direction: column; gap: 16px; }
  .why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .why-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
  .why-icon {
    width: 48px; height: 48px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .why-card h3 { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .why-visual {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #4F46E5 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
  }
  .why-visual h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
  }
  .why-visual p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step { display: flex; gap: 16px; position: relative; }
  .step:not(:last-child) .step-line {
    position: absolute;
    left: 19px; top: 44px;
    width: 2px; height: calc(100% - 8px);
    background: rgba(255,255,255,0.15);
  }
  .step-num {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    color: #C7D2FE;
    margin-bottom: 24px;
  }
  .step-text strong { display: block; font-size: 15px; font-weight: 600; color: white; margin-bottom: 3px; }
  .step-text span { font-size: 13px; color: rgba(255,255,255,0.65); }

  /* ─── TESTIMONIALS ─── */
  .testimonials-bg { background: var(--soft); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
  }
  .review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; }
  .review-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-mid);
    font-style: italic;
    margin-bottom: 20px;
  }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--teal-dark);
    flex-shrink: 0;
  }
  .reviewer-name { font-size: 14px; font-weight: 600; color: var(--slate); }
  .reviewer-date { font-size: 12px; color: var(--muted); }
  .review-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
  }

  /* ─── FAQ ─── */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  .faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--slate);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-q:hover { color: var(--teal); }
  .faq-arrow { font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
  .faq-item.open .faq-arrow { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 260px; padding: 0 24px 20px; }

  /* ─── CONTACT ─── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  .contact-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .contact-info p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
  .contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }
  .contact-method:hover { border-color: var(--teal); }
  .contact-method-icon { font-size: 20px; }
  .contact-method-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
  .contact-method-val { font-size: 15px; font-weight: 600; color: var(--slate); }
  .contact-method-val a { color: var(--teal); }
  .contact-method-val a:hover { text-decoration: underline; }
  .contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
  }
  .contact-form h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--slate);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--slate);
    background: var(--soft);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: auto;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15,123,108,0.10);
    background: white;
  }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-submit { width: 100%; padding: 15px; border-radius: 100px; border: none; background: var(--teal); color: white; font-family: var(--font-body); font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 6px; }
  .form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: linear-gradient(135deg, var(--teal-dark), #7C3AED);
    padding: 72px 0;
    text-align: center;
    color: white;
  }
  .cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
  }
  .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.80); margin-bottom: 32px; }
  .cta-banner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--slate);
    color: rgba(255,255,255,0.70);
    padding: 56px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
  .footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 14px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.18s; }
  .footer-col ul li a:hover { color: #C7D2FE; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: filter 0.2s;
  }
  .footer-wa:hover { filter: brightness(1.1); }

  /* ─── FLOATING CTA ─── */
  .float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  .float-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.20);
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    color: white;
  }
  .float-btn:hover { transform: scale(1.04); }
  .float-call { background: var(--teal); }
  .float-wa { background: #25D366; }

/* The container holding all your FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates the 2 columns */
    gap: 20px; /* Space between the boxes */
    
    /* 👇 THIS IS THE MAGIC FIX 👇 */
    align-items: start; 
}

/* Updated styling to match your screenshot's "card" look */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* Light gray border */
    border-radius: 10px; /* Rounded corners */
    padding: 0 20px;
    margin-bottom: 0; /* Remove bottom margin if using grid gap */
}

/* Testimonial Section Background */
.testimonials-bg {
    background-color: #f8f9fa; /* Light gray background to make white cards pop */
}

/* Review Card Styling */
.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px; /* Prevents the text from stretching too wide on desktop */
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eef2f7;
    position: relative;
}

/* Badge Styling */
.review-badge {
    display: inline-block;
    background-color: #f1f5f9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 15px;
}

/* Adjust indicator dots positioning so they don't overlap the cards */
.carousel-indicators {
    margin-bottom: -1rem;
}

/* Ensure mobile layout goes back to 1 column */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-float-card { right: 0; bottom: -20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .float-cta { bottom: 20px; right: 16px; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
  }