:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --dark: #0D0D0D;
    --dark2: #141414;
    --dark3: #d6955b;
    --white: #FFFFFF;
    --text-muted: #9E9E9E;
    --green: #22C55E;
    --accent: #C9A84C;
    --red: #EF4444;
    --section-pad: 72px 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
  }

  h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }

  /* ─── FIXED NAV ─── */
  .nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo img { height: 42px; border-radius: 8px; }
  .nav-logo-text { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); line-height: 1.2; }
  .nav-logo-text span { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--text-muted); font-weight: 400; }
  .nav-ctas { display: flex; gap: 10px; align-items: center; }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark); font-weight: 700; padding: 10px 20px;
    border-radius: 6px; text-decoration: none; font-size: 13px;
    border: none; cursor: pointer; white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
  .btn-wa {
    background: #25D366; color: white; font-weight: 700; padding: 10px 18px;
    border-radius: 6px; text-decoration: none; font-size: 13px;
    display: flex; align-items: center; gap: 6px; white-space: nowrap;
    transition: transform 0.2s;
  }
  .btn-wa:hover { transform: translateY(-1px); }

  /* ─── HERO BANNER ─── */
  .hero {
    margin-top: 68px;
    background: #d6955b;
    padding: 60px 20px 40px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 14px; border-radius: 100px; font-size: 12px; color: #cc8f57;
    font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px;
  }
  .hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 14px;
  }
  .hero h1 span { color: #fff; }
  .hero-sub { font-size: 16px; color: #fff; margin-bottom: 24px; line-height: 1.6; }
  .hero-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding-left: 0px;}
  .hero-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: var(--white);
  }
  .hero-points li .num {
    background: #fff; color: var(--dark);
    font-weight: 800; font-size: 12px;
    min-width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }
  .hero-points li strong { color: #fff; }

  .hero-img-wrap { position: relative; }
  .hero-img-wrap img {
    width: 100%; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(201,168,76,0.2);
    object-fit: cover; aspect-ratio: 4/5;
  }
  .hero-badge-float {
    position: absolute; bottom: -16px; left: -16px;
    background: var(--gold); color: var(--dark);
    padding: 14px 18px; border-radius: 12px;
    font-weight: 800; font-size: 13px; line-height: 1.3;
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  }
  .hero-badge-float span { display: block; font-size: 22px; font-weight: 900; }

  /* ─── STICKY CTA BAR ─── */
  .sticky-cta {
    background: #f1f1e9;
    padding: 14px 20px;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap;
  }
  .sticky-cta p { color: var(--dark); font-weight: 700; font-size: 14px;  margin-bottom: 0px;}
  .sticky-cta a {
    background: var(--dark); color: #d6955b;
    padding: 8px 20px; border-radius: 6px; font-weight: 700; font-size: 13px;
    text-decoration: none; white-space: nowrap;
  }

  /* ─── SECTION BASE ─── */
  section { padding: var(--section-pad); }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    display: inline-block; background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3); color: #d6955b;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase;
  }
  .section-title { font-size: clamp(24px, 3vw, 36px); color: #000; margin-bottom: 10px; }
  .section-title span { color: #d6955b; }
  .section-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 36px; max-width: 600px; }
  .divider { width: 56px; height: 3px; background: #d6955b; border-radius: 2px; margin: 12px 0 28px; }

  /* ─── FORM / LEAD ─── */
  .lead-section {
    background: aliceblue;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 56px 20px;
  }
  .lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }
  .lead-offer p { font-size: 15px; color: #000; margin-bottom: 14px; }
  .offer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
  .offer-card {
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px; padding: 16px;
    text-align: center;
  }

  section.trtsrc { background: antiquewhite; }

  .offer-card .oc-icon { font-size: 26px; margin-bottom: 6px; }
  .offer-card strong { display: block; color: #d6955b; font-size: 14px; }
  .offer-card span { font-size: 12px; color: var(--text-muted); }

  .form-card {
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.2);
    padding: 32px;
  }
  .form-card h3 { font-size: 20px; margin-bottom: 6px; color: #d6955b; }
  .form-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input, .form-group select {
    width: 100%; padding: 12px 14px;
    background: rgba(255,255,255,0.05); border: 1px solid rgb(57 48 48 / 62%);
    border-radius: 8px; color: var(--white); font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--gold);
  }
  .form-group select option { background: #222; }
  .btn-submit {
    width: 100%; padding: 14px;
    background: #d6955b;
    color: var(--dark); font-weight: 800; font-size: 16px;
    border: none; border-radius: 8px; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
  .form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

  /* ─── GOOGLE REVIEWS ─── */
  .reviews-strip {
    background: #efe5e0;
    padding: 40px 20px;
  }
  .reviews-inner { max-width: 1100px; margin: 0 auto; }
  .g-rating-box {
    display: flex; align-items: center; gap: 24px;
    background: blanchedalmond; border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px; padding: 24px 32px;
    margin-bottom: 28px; flex-wrap: wrap;
  }
  .g-logo { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .g-logo .gl-text { font-size: 28px; font-weight: 900; letter-spacing: -1px; }
  .g-logo .gl-text span:nth-child(1){color:#4285F4}
  .g-logo .gl-text span:nth-child(2){color:#EA4335}
  .g-logo .gl-text span:nth-child(3){color:#FBBC05}
  .g-logo .gl-text span:nth-child(4){color:#4285F4}
  .g-logo .gl-text span:nth-child(5){color:#34A853}
  .g-logo .gl-text span:nth-child(6){color:#EA4335}
  .g-logo small { font-size: 10px; color: var(--text-muted); }
  .g-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.1); }
  .g-score .big { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: #000; line-height: 1; }
  .g-score .stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
  .g-score .count { font-size: 12px; color: var(--text-muted); }
  .g-highlights { display: flex; gap: 20px; flex-wrap: wrap; }
  .g-highlight { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #000;}
  .g-highlight .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

  .review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .review-card {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 20px;
  }
  .review-card .reviewer { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .review-card .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: white; flex-shrink: 0;
  }
  .review-card .name { font-weight: 700; font-size: 14px; color: var(--white); }
  .review-card .date { font-size: 11px; color: #ffffff; }
  .review-card .stars { color: #FBBC05; font-size: 13px; margin-bottom: 10px; }
  .review-card .text { font-size: 13px; color: #ffffff; line-height: 1.6; }
  .review-card .keyword { color: #fff; font-weight: 600; }

  /* ─── STATS ─── */
  .stats-section {
    background: aliceblue;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 48px 20px;
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .stat-item { text-align: center; }
  .stat-item .big-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px); font-weight: 900;
    color: var(--gold); line-height: 1;
  }
  .stat-item .label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
  .stat-divider { width: 1px; background: rgba(255,255,255,0.08); }

  /* ─── DOCTOR ─── */
  .doctor-section { background: #f1f1f1; padding: var(--section-pad); }
  .doctor-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }
  .doc-img-wrap { position: relative; }
  .doc-img-wrap img {
    width: 100%; border-radius: 16px;
    object-fit: cover; aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(201,168,76,0.2);
  }
  .doc-badge {
    position: absolute; bottom: -12px; right: -12px;
    background: var(--gold); color: var(--dark); border-radius: 12px;
    padding: 12px 16px; font-weight: 800; font-size: 12px; text-align: center;
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  }
  .doc-badge span { display: block; font-size: 20px; font-weight: 900; }
  .doc-creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
  .cred-tag {
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold); font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 100px;
  }
  .doc-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .doc-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #000; }
  .doc-points li::before {
    content: '✓'; background: rgba(34,197,94,0.15); color: var(--green);
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
  }

  /* ─── COMPARISON TABLE ─── */
  .comparison-section { background: aliceblue; padding: var(--section-pad); }
  .comp-table-wrap { overflow-x: auto; }
  .comp-table {
    width: 100%; max-width: 1100px; margin: 0 auto;
    border-collapse: collapse; font-size: 14px;
  }
  .comp-table th {
    padding: 14px 20px; text-align: center; font-size: 13px; font-weight: 700;
  }
  .comp-table th:first-child { text-align: left; color: var(--text-muted); }
  .comp-table .th-ms {
    background: var(--gold); color: var(--dark); border-radius: 8px 8px 0 0;
  }
  .comp-table .th-other { background: rgba(255,255,255,0.06); color: #000; border-radius: 8px 8px 0 0; }
  .comp-table td {
    padding: 14px 20px; border-bottom: 1px solid rgb(255 255 255);
    vertical-align: middle;
  }
  .comp-table td:first-child { color: #0f0e0e; font-weight: 500; }
  .comp-table td.ms-col { background: rgba(201,168,76,0.06); text-align: center; font-weight: 700; color: var(--gold); }
  .comp-table td.other-col { text-align: center; color: #1f1b1b; }
  .comp-table tr:hover td { background: rgba(255,255,255,0.02); }
  .tick { color: var(--green); font-size: 18px; }
  .cross { color: var(--red); font-size: 18px; }

  /* ─── USP CARDS ─── */
  .usp-section { background: aliceblue; padding: var(--section-pad); }
  .usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
  .usp-card {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 24px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .usp-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
  .usp-icon { font-size: 32px; margin-bottom: 12px; }
  .usp-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .usp-card p { font-size: 13px; color: #ffffff; line-height: 1.6; }
  .usp-card .usp-num { font-family: 'Playfair Display', serif; font-size: 28px; color: #000000a8; font-weight: 600; display: block; margin-top: 10px; }

  /* ─── PROCESS ─── */
  .process-section { background: #f1f1f1; padding: var(--section-pad); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
  .p-step { position: relative; text-align: center; }
  .p-step::after {
    content: '→'; position: absolute; right: -14px; top: 20px;
    font-size: 24px; color: var(--gold); opacity: 0.4;
  }
  .p-step:last-child::after { display: none; }
  .p-num {
    width: 52px; height: 52px; border-radius: 50%;
    background-color: #d6955b;
    color: #ffffff; font-weight: 900; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .p-step h4 { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 6px; }
  .p-step p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { background: aliceblue; padding: var(--section-pad); }
  .testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
  .testi-card {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 24px;
  }
  .testi-card .tq { font-size: 48px; color: #ffffff; line-height: 0.7; margin-bottom: 12px; font-family: Georgia; }
  .testi-card p { font-size: 14px; color: #ffffff; line-height: 1.7; margin-bottom: 16px; }
  .testi-card .keyword { color: #ffffff; font-weight: 600; }
  .testi-author { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); }
  .testi-author .av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; flex-shrink: 0;
  }
  .testi-author .info strong { display: block; font-size: 14px; color: var(--white); }
  .testi-author .info span { font-size: 11px; color: #000; }
  .testi-author .stars { color: #FBBC05; font-size: 13px; margin-top: 2px; }

  /* ─── FAQ ─── */
  .faq-section { background: azure; padding: var(--section-pad); }
  .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; overflow: hidden;
  }
  .faq-q {
    padding: 18px 20px; font-weight: 700; font-size: 15px; color: var(--white);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    user-select: none;
  }
  .faq-q:hover { color: #ffffff; }
  .faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 20px; font-size: 14px; color: #ffffff; line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* ─── INLINE CTA ─── */
  .inline-cta {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px; padding: 40px;
    text-align: center; max-width: 700px; margin: 0 auto;
  }
  .inline-cta h3 { font-size: 26px; margin-bottom: 10px; }
  .inline-cta p { color: #fff; font-size: 15px; margin-bottom: 24px; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-call {
    background: rgba(255,255,255,0.08); color: var(--white);
    padding: 12px 24px; border-radius: 8px; font-weight: 700;
    font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s;
  }
  .btn-call:hover { background: rgba(255,255,255,0.14); }
  .btn-wa-lg {
    background: #25D366; color: white;
    padding: 12px 24px; border-radius: 8px; font-weight: 700;
    font-size: 15px; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: filter 0.2s;
  }
  .btn-wa-lg:hover { filter: brightness(1.1); }

  /* ─── FOOTER ─── */
  .footer {
    background: #080808; border-top: 1px solid rgba(201,168,76,0.2);
    padding: 48px 20px 24px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer h4 { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
  .footer p, .footer a { font-size: 13px; color: #fff; line-height: 1.8; text-decoration: none; display: block; }
  .footer a:hover { color: var(--gold); }
  .footer .f-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-bottom { max-width: 1100px; margin: 20px auto 0; text-align: center; font-size: 12px; color: #555; }
  .footer-cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
  .f-btn {
    background: var(--gold); color: var(--dark); padding: 10px 20px;
    border-radius: 6px; font-weight: 700; font-size: 13px; text-decoration: none;
    display: inline-block;
  }
  .f-btn-wa {
    background: #25D366; color: white; padding: 10px 20px;
    border-radius: 6px; font-weight: 700; font-size: 13px; text-decoration: none;
    display: inline-block;
  }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--dark2); border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px; padding: 36px; width: 100%; max-width: 460px;
    position: relative;
  }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; color: var(--text-muted);
    font-size: 24px; cursor: pointer;
  }
  .modal-close:hover { color: var(--white); }
  .modal-box h3 { font-size: 22px; color: var(--white); margin-bottom: 6px; }
  .modal-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
  .success-msg { display: none; text-align: center; padding: 20px; }
  .success-msg .tick-big { font-size: 56px; margin-bottom: 12px; }
  .success-msg h4 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
  .success-msg p { font-size: 14px; color: var(--text-muted); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img-wrap { display: block; }
    .hero-img-wrap img {height: 100%; object-fit: contain; aspect-ratio: auto;}
    .lead-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-divider { display: none; }
    .doctor-grid { grid-template-columns: 1fr; }
    .doc-img-wrap { max-width: 320px; margin: 0 auto; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .p-step::after { display: none; }
    .review-cards { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-logo-text { display: none; }
  }

  @media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .offer-cards { grid-template-columns: 1fr; }
    .inline-cta { padding: 28px 20px; }
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* Pulsing badge */
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  }
  .pulse { animation: pulse-gold 2s infinite; }


  .owl-dots { text-align: center; padding-top: 15px; display: flex; margin: auto; justify-content: center; }
.owl-dots .owl-dot span { width: 10px; height: 10px; padding: 0 5px; margin: 5px 2px; border: none; font-size: 16px; line-height: 16px; position: relative; background: #fff; bottom: 0px; display: block; border-radius: 50%; }
.owl-dots .owl-dot.active span { background: #e1cb8e; }
.owl-dot.active span { width: 15px; height: 15px; margin-top: 3px; }

.dr-services-wrap .service-item { background: #d6955b; border: 1px solid #eee; border-radius: 12px; padding: 20px 10px; text-align: center; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); height: 100%; border: 1px solid #d6955b; }
.dr-services-wrap .img-holder { width: 70px; height: 70px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid #ffffff; }
.dr-services-wrap .img-holder img { max-width: 100%; height: 45px !important; object-fit: contain; }
.dr-services-wrap h6 { font-size: 15px; font-weight: 600; color: #fff; margin: 0; }

.two-cta a { background: #d6955b; color: #ffffff; text-decoration: none; padding: 10px 20px; border-radius: 20px; }
.popup-youtube {position: relative;}
.play-btn i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: red; background: #fff; height: 40px; width: 40px; line-height: 40px; text-align: center; border-radius: 50%; }
.video-thumb-wrapper img { border: 2px solid #c9a84c; border-radius: 20px; }
.dr-services-wrap.pt-5 { background: antiquewhite; }


@media (max-width: 600px) {
    .hidedesktop {display: none;}
  }