  :root {
    --navy: #0e54ad;
    --navy-mid: #122844;
    --navy-light: #1a3a5c;
    --gold: #fc5185;
    --gold-light: #ef89a8;
    --cream: #f2f2ff;
    --text: #2C3E50;
    --text-light: #6B7A8D;
    --white: #FFFFFF;
    --red-soft: #E85D5D;
    --green: #2ECC71;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* STICKY CTA BAR */
  .sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .sticky-bar .logo {
    display: flex;
    align-items: center;
  }
  .sticky-bar .logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    /*filter: brightness(0) invert(1);
*/  }
  .sticky-bar .cta-top {
    display: flex; gap: 12px; align-items: center;
  }
  .sticky-bar .phone-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .btn-sm {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .btn-sm:hover { background: var(--gold-light); }

  /* HERO */
  .hero {
    min-height: 100vh;
/*    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #fc5185 100%);*/
background: #f7f7f7;
    display: flex;
    align-items: center;
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255);
    border: 1px solid #eee;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
  }
  .hero-badge::before { content: '●'; color: var(--green); font-size: 0.5rem; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero h1 em {
    color: var(--gold);
    font-style: normal;
  }
  .hero-sub {
    color: rgba(0,0,0,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
  }
  .hero-conditions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
  }
  .hero-conditions span {
    background: var(--gold);
    border: 1px solid rgb(255,255,255);
    color: rgb(255,255,255);
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 50px;
  }
  .btn-hero {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    margin-right: 16px;
  }
  .btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-secondary {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .btn-secondary:hover { opacity: 1; }
  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.2);
  }
  .hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
  }
  .hero-stat .label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  /* HERO CARD */
  .hero-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  }
  .hero-card-header {
    background: var(--navy);
    padding: 18px 28px 16px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
  }
  .hero-card-header .logo-strip {
    background: white;
    border-radius: 8px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 12px;
  }
  .hero-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 700;
  }
  .hero-card-header p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
  }
  .hero-card-body { padding: 28px; }
  .form-field {
    margin-bottom: 16px;
  }
  .form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: #F8FAFC;
    outline: none;
    transition: border 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus { border-color: var(--gold); background: white; }
  .form-submit {
    width: 100%;
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .form-submit:hover { background: var(--navy-light); }
  .form-note {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
  }
  .fee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
  }
  .fee-item {
    text-align: center;
    flex: 1;
    padding: 8px;
    background: #F8FAFC;
    border-radius: 8px;
  }
  .fee-item .fee-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
  }
  .fee-item .fee-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* TRUST STRIP */
  .trust-strip {
    background: #3a3a3a;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(255,255,255);
    font-size: 0.82rem;
  }
  .trust-item .icon { font-size: 1.1rem; }

  /* SECTION STYLES */
  section { padding: 80px 40px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  /* PAIN CONDITIONS */
  .conditions-section { background: white; }
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .condition-card {
    border: 1.5px solid #EEF2F7;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    background: #FAFBFC;
  }
  .condition-card:hover {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 8px 30px rgba(200,168,75,0.1);
    transform: translateY(-3px);
  }
  .condition-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,168,75,0.07);
    border-radius: 16px;
    padding: 6px;
  }
  .condition-icon svg {
    width: 60px;
    height: 60px;
  }
  .condition-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .condition-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* DOCTOR SECTION */
  .doctor-section { background: #ffffff; }
  .doctor-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
  }
  .doctor-img-wrap {
    position: relative;
  }
  .doctor-photos-tabs {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11,29,53,0.18);
  }
  .tab-buttons {
    display: flex;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
  }
  .tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .tab-btn.active {
    color: var(--gold-light);
    background: rgba(200,168,75,0.1);
  }
  .tab-btn:hover { color: var(--gold-light); }
  .doctor-photos {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--navy);
    overflow: hidden;
  }
  .doctor-photo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .doctor-photo.active {
    opacity: 1;
  }
  .doctor-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(200,168,75,0.3);
  }
  .doctor-badge .rating {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
  }
  .doctor-badge .rating-label {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .doctor-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .doctor-info .designation {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }
  .doctor-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .credential {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .credential .icon {
    background: rgba(200,168,75,0.1);
    color: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .credential .text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 600;
  }
  .credential .text span {
    font-size: 0.78rem;
    color: var(--text-light);
  }

  /* WHY CHOOSE */
  .why-section { background: var(--cream); }
  .why-section .section-title { color: rgba(0, 0, 0, 0.7);}
  .why-section .section-label { color: var(--gold-light); }
  .why-section .section-sub { color: rgba(0,0,0,0.7); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: #FAFBFC;
    border: 1.5px solid #EEF2F7;
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.2s;
  }
  .why-card:hover {
    background: rgba(200,168,75,0.07);
    border-color: rgba(200,168,75,0.25);
  }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
  }
  .why-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* TESTIMONIALS */
  .testimonials-section { background: white; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testimonial-card {
    border: 1.5px solid #EEF2F7;
    border-radius: 14px;
    padding: 28px;
    background: #FAFBFC;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 8px; left: 20px;
    line-height: 1;
  }
  .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
  }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
  }
  .reviewer-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
  }
  .reviewer-source {
    font-size: 0.7rem;
    color: var(--text-light);
  }

  /* KEYWORDS / TREATMENTS */
  .treatments-section { background: var(--cream); }
  .treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .treatment-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 10px;
    padding: 16px 20px;
    border: 1.5px solid transparent;
    transition: border 0.2s;
  }
  .treatment-item:hover { border-color: var(--gold); }
  .treatment-item .check {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
  }
  .treatment-item .name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
  }
  .treatment-item .desc {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
  }



  /* LOCATION */
  .location-section { background: white; }
  .location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .location-map-placeholder {
    background: var(--navy);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    gap: 12px;
  }
  .location-map-placeholder .map-icon { font-size: 3rem; }
  .location-map-placeholder a {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 8px;
  }
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }
  .info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .info-icon {
    width: 42px;
    height: 42px;
    background: rgba(200,168,75,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .info-content strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
  }
  .info-content span {
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
  }

  /* FINAL CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%);
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,168,75,0.06) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: white;
    margin-bottom: 16px;
    position: relative;
  }
  .cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 36px;
    position: relative;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-gold-lg {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
  }
  .btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline-lg {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline-lg:hover { border-color: white; }

  /* FOOTER */
  footer {
    background: #f2f2ff;
    color: rgba(0,0,0,0.7);
    padding: 28px 40px;
    text-align: center;
    font-size: 0.78rem;
  }
  footer strong { color: rgb(255,255,255); }

  /* KEYWORD SEO hidden text */
  .seo-keywords { display: none; }

  /* FLOATING WHATSAPP */
  .float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 200;
    transition: transform 0.2s;
  }
  .float-wa:hover { transform: scale(1.1); }

  /* MOBILE STICKY BOTTOM CTA */
  .mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 12px 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  }
  .mobile-sticky-cta .cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .mobile-sticky-cta .cta-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 13px 10px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .mobile-sticky-cta .cta-book {
    flex: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 13px 10px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .mobile-sticky-cta .cta-label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }



.thank-wrap{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background: var(--cream);
}

.thank-wrap .container{
background:#fff;
padding:60px 40px;
border-radius:15px;
text-align:center;
max-width:450px;
width:90%;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
animation:fadeIn 1s ease;
}

.thank-wrap .icon{
font-size:70px;
color:#28c76f;
margin-bottom:20px;
animation:pop 0.6s ease;
}

.thank-wrap h1{
font-size:32px;
color:#333;
margin-bottom:10px;
}

.thank-wrap p{
color:#666;
font-size:16px;
margin-bottom:30px;
}

.thank-wrap .btn{
display:inline-block;
padding:12px 30px;
background:var(--gold);
color:#fff;
text-decoration:none;
border-radius:4px;
font-weight:500;
transition:0.3s;
}

.thank-wrap .btn:hover{
background:var(--gold-light);
transform:translateY(-2px);
}


/* Popup background */
.popup{
  position: fixed;
  top:2rem;
  z-index: 9;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
}

/* Popup box */
.popup-content{
  background:#fff;
  padding:0px;
  position: relative;
  border-radius:16px;
  width:600px;
  text-align:left;
}
.row-sec{
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0px;
}
.row-sec .form-field{}
.col-s{padding: 0 5px;}
.row-sec .form-field.full-w{width: 100%}

.close{
cursor: pointer;
    float: right;
    font-size: 20px;
    background: #fc5185;
    color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50px;
    right: -10px;
    top: -10px;

}
.close:hover{
  background: var(--navy);
}
.error-msg{
    color: red;
    font-size: 14px;
    padding: 8px 5px;}
.d-none{display: none;}
.video-sec{background: #fff;}
.video-sec .testimonial-card{background: #f2f2ff;}
.video-frame iframe{width: 100%; height: 300px;}
.common-error{margin-top: 6px;}
  @media (max-width: 1280px) {
    .trust-strip{gap:15px;}
  }

  @media (max-width: 1152px) {
    .trust-item{font-size: 0.7rem;}
    .trust-strip{padding:20px 10px;}
  }
  @media (max-width: 1024px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 80px; }
    .float-wa { bottom: 90px; }
  }

  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .popup-content .hero-card{display: initial;}

    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .doctor-inner { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .treatments-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .sticky-bar { padding: 10px 20px; }
    section { padding: 60px 20px; }
    .trust-strip { gap: 24px; padding: 20px; }
      .hero{min-height: initial;}
  .mobile-sticky-cta .cta-call{background: #fff;}
.mobile-sticky-cta .cta-book{color: #fff;}
  }
@media (max-width: 768px) {
  .hero{min-height: initial;}
  .mobile-sticky-cta .cta-call{background: #fff;}
.mobile-sticky-cta .cta-book{color: #fff;}
}
@media (max-width: 767px) {
  .hero-content{text-align: center;}
  .hero-conditions{justify-content: center;}
  .sticky-bar .phone-link{display: none;}
  .hero{padding:100px 15px 25px; }
  .hero-badge{display: none;}
  .hero-sub{max-width: 100%;}
  .hero-stats{flex-wrap: wrap; justify-content: center; gap:15px}
  .hero-stat{width: 40%; text-align: center;}
.trust-strip{flex-wrap: wrap; justify-content: center;}
.trust-item{width: 100%; justify-content: center;}
.mobile-sticky-cta .cta-call{background: #fff;}
.mobile-sticky-cta .cta-book{color: #fff;}
.popup-content{padding: 10px; border-radius: 10px;}
.row-sec{gap:10px;}
.hero-card-body{padding:10px;}
.close{right: 0;}
.section-label{text-align: center;}
.section-title, .doctor-info h2{text-align: center;}
.section-sub, .doctor-info p{text-align: center;}
.btn-dr{text-align: center;}
.why-card{text-align: center;}
.btn-gold-lg{padding: 15px 15px;}
.btn-outline-lg{padding: 15px 15px;}
.btn-hero{margin-right: 0; padding: 15px 15px;}
}
@media (max-width: 393px) {
.btn-hero{padding: 15px 15px;}
}