*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter','Nunito Sans',system-ui,-apple-system,sans-serif;color:#4a4a4a;line-height:1.7;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.25;color:#222}
h1{font-size:clamp(2rem,4vw,3rem);font-weight:700}
h2{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:700}
h3{font-size:clamp(1.125rem,2vw,1.5rem);font-weight:600}
p{margin-bottom:1rem}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* Top Bar */
.top-bar{background:#fff;padding:.5rem 0;border-bottom:1px solid #eee}
.top-bar .container{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.top-bar__logo img{height:70px;width:auto}
.top-bar__right{display:flex;align-items:center;gap:1rem}
.top-bar__social{display:flex;gap:.75rem;align-items:center}
.top-bar__social a{color:#555;font-size:1.25rem;transition:color .2s}
.top-bar__social a:hover{color:#3964F0}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.625rem 1.25rem;border-radius:6px;font-weight:600;font-size:.875rem;letter-spacing:.03em;transition:all .2s;border:none;cursor:pointer;text-transform:uppercase}
.btn--primary{background:#3964F0;color:#fff}
.btn--primary:hover{background:#2d52d0}
.btn--dark{background:#232322;color:#fff}
.btn--dark:hover{background:#3a3a3a}
.btn--outline{background:transparent;color:#3964F0;border:2px solid #3964F0}
.btn--outline:hover{background:#3964F0;color:#fff}
.btn--phone{background:#5E96EA;color:#fff}
.btn--phone:hover{background:#4a80d4}
.btn--white{background:#fff;color:#3964F0}
.btn--white:hover{background:#f0f4ff}
.btn--lg{padding:.875rem 2rem;font-size:1rem}

/* Alert Banner */
.alert-banner{background:#232322;color:#fff;text-align:center;padding:.75rem 1rem;font-size:.9rem}
.alert-banner a{color:#5E96EA;font-weight:600;text-decoration:underline}
.alert-banner a:hover{color:#fff}

/* Nav */
.main-nav{background:#fff;padding:.5rem 0;position:sticky;top:0;z-index:100;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.main-nav .container{display:flex;align-items:center;justify-content:center}
.nav-links{display:flex;gap:.25rem;align-items:center}
.nav-links a,.nav-links .nav-dropdown>span{padding:.5rem .875rem;font-size:.9rem;font-weight:500;color:#333;border-radius:6px;transition:all .2s;cursor:pointer;display:inline-block}
.nav-links a:hover,.nav-links .nav-dropdown>span:hover{color:#3964F0;background:#f5f7ff}
.nav-dropdown{position:relative}
.nav-dropdown>span::after{content:'';display:inline-block;width:0;height:0;margin-left:.375rem;vertical-align:.15em;border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent;transition:transform .2s}
.nav-dropdown:hover>span::after{transform:rotate(180deg)}
.nav-dropdown__menu{position:absolute;top:100%;left:0;background:#fff;min-width:280px;border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,.12);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s;padding:.5rem 0;z-index:200}
.nav-dropdown:hover .nav-dropdown__menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown__menu a{display:block;padding:.625rem 1.25rem;font-size:.875rem;white-space:nowrap}
.nav-dropdown__menu a:hover{background:#f5f7ff}

/* Mobile nav */
.mobile-toggle{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer;padding:.5rem;color:#333}
@media(max-width:960px){
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;padding:1rem;box-shadow:0 8px 32px rgba(0,0,0,.12);gap:0}
  .nav-links.active{display:flex}
  .nav-dropdown__menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;padding-left:1rem;display:none}
  .nav-dropdown:hover .nav-dropdown__menu,.nav-dropdown.open .nav-dropdown__menu{display:block}
  .mobile-toggle{display:block}
  .main-nav .container{justify-content:flex-end}
  .top-bar__right .btn{display:none}
}
@media(max-width:600px){
  .top-bar__social{display:none}
}

/* Hero */
.hero{position:relative;min-height:550px;display:flex;align-items:center;overflow:hidden;background:#2a2a2a}
.hero__bg{position:absolute;inset:0;z-index:1}
.hero__bg img{width:100%;height:100%;object-fit:cover}
.hero__overlay{position:absolute;inset:0;z-index:2}
.hero__content{position:relative;z-index:3;max-width:640px;padding:3rem 0}
.hero__subtitle{font-size:.875rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:.75rem}
.hero__title{color:#fff;margin-bottom:1rem}
.hero__text{color:rgba(255,255,255,.9);font-size:1.05rem;line-height:1.7;margin-bottom:2rem}
.hero__ctas{display:flex;gap:1rem;flex-wrap:wrap}

/* Sections */
.section{padding:4rem 0}
.section--gray{background:#f8f9fa}
.section--dark{background:#232322;color:#fff}
.section--dark h2,.section--dark h3{color:#fff}
.section--blue{background:#3964F0;color:#fff}
.section--blue h2,.section--blue h3{color:#fff}
.section__header{text-align:center;margin-bottom:3rem}
.section__subtitle{font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#3964F0;margin-bottom:.5rem}
.section__title{margin-bottom:1rem}
.section__text{max-width:700px;margin:0 auto;color:#666}

/* Welcome / About section */
.welcome{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.welcome__content{order:1}
.welcome__image{order:2;border-radius:12px;overflow:hidden}
@media(max-width:768px){
  .welcome{grid-template-columns:1fr;gap:2rem}
  .welcome__image{order:1}
}

/* Services Cards */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.service-card{border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08);transition:transform .3s,box-shadow .3s;background:#fff}
.service-card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(0,0,0,.12)}
.service-card__image{height:220px;overflow:hidden}
.service-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.service-card:hover .service-card__image img{transform:scale(1.05)}
.service-card__body{padding:1.5rem}
.service-card__title{font-size:1.125rem;margin-bottom:.5rem}
@media(max-width:768px){
  .services-grid{grid-template-columns:1fr}
}

/* Consultation Cards */
.consult-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:2rem}
.consult-card{border-radius:12px;overflow:hidden;position:relative;min-height:300px;display:flex;align-items:flex-end;background:#eee}
.consult-card__overlay{position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(0,0,0,.7))}
.consult-card__body{position:relative;z-index:2;padding:2rem;color:#fff}
.consult-card__body h3{color:#fff;font-size:1.5rem;margin-bottom:.5rem}
@media(max-width:768px){
  .consult-grid{grid-template-columns:1fr}
}

/* Reviews */
.reviews-slider{display:flex;gap:1.5rem;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:1rem 0}
.reviews-slider::-webkit-scrollbar{display:none}
.review-card{min-width:320px;max-width:400px;background:#fff;border-radius:12px;padding:1.75rem;box-shadow:0 2px 16px rgba(0,0,0,.06);scroll-snap-align:start;flex-shrink:0}
.review-card__stars{color:#FFC107;font-size:1.125rem;margin-bottom:.75rem;letter-spacing:.15em}
.review-card__text{font-size:.925rem;line-height:1.6;color:#555;margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.review-card__author{font-weight:600;color:#333}
.review-card__date{font-size:.8rem;color:#888;margin-top:.25rem}
.review-card__source{display:flex;align-items:center;gap:.5rem;margin-top:.75rem}
.review-card__source img{height:20px;width:auto}

/* Contact / Location */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info h3{font-size:1.25rem;margin-bottom:1rem;color:#3964F0}
.contact-info__item{display:flex;gap:.75rem;margin-bottom:1rem;align-items:flex-start}
.contact-info__item svg{flex-shrink:0;margin-top:.2rem}
.map-embed{border-radius:12px;overflow:hidden;height:350px;background:#e5e5e5}
.map-embed iframe{width:100%;height:100%;border:0}
@media(max-width:768px){
  .contact-grid{grid-template-columns:1fr}
}

/* Blog Cards */
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.blog-card{border-radius:12px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,.06);background:#fff;transition:transform .3s}
.blog-card:hover{transform:translateY(-3px)}
.blog-card__body{padding:1.5rem}
.blog-card__tag{display:inline-block;background:#f0f4ff;color:#3964F0;padding:.25rem .75rem;border-radius:20px;font-size:.75rem;font-weight:600;margin-bottom:.75rem;margin-right:.5rem}
.blog-card__title{font-size:1.05rem;margin-bottom:.5rem;line-height:1.4}
.blog-card__date{font-size:.8rem;color:#888}
@media(max-width:768px){
  .blog-grid{grid-template-columns:1fr}
}

/* CTA Section */
.cta-section{text-align:center;padding:4rem 2rem}
.cta-section h2{margin-bottom:.5rem}
.cta-section h3{margin-bottom:1.5rem;font-weight:400;color:rgba(255,255,255,.85)}
.cta-section .hero__ctas{justify-content:center}

/* Footer */
.footer{background:#1a1a1a;color:#ccc;padding:3rem 0 1.5rem}
.footer__grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:3rem;margin-bottom:2rem}
.footer__col h4{color:#fff;font-size:.9rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem}
.footer__col a{display:block;padding:.25rem 0;font-size:.875rem;color:#aaa;transition:color .2s}
.footer__col a:hover{color:#5E96EA}
.footer__subscribe{margin-bottom:2rem}
.footer__subscribe h4{color:#fff;font-size:.9rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.75rem}
.footer__subscribe form{display:flex;gap:.5rem;max-width:450px}
.footer__subscribe input{flex:1;padding:.625rem 1rem;border:1px solid #444;border-radius:6px;background:#2a2a2a;color:#fff;font-size:.875rem}
.footer__subscribe input::placeholder{color:#888}
.footer__subscribe button{white-space:nowrap}
.footer__bottom{border-top:1px solid #333;padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer__logos{display:flex;align-items:center;gap:1.5rem}
.footer__logos img{height:40px;width:auto;opacity:.8}
.footer__social{display:flex;gap:.75rem}
.footer__social a{color:#aaa;font-size:1.25rem;transition:color .2s}
.footer__social a:hover{color:#5E96EA}
.footer__legal{display:flex;gap:1.5rem;flex-wrap:wrap;font-size:.8rem}
.footer__legal a{color:#888;transition:color .2s}
.footer__legal a:hover{color:#fff}
.footer__copy{font-size:.8rem;color:#666;text-align:center;margin-top:1rem}
@media(max-width:768px){
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
}

/* Forms */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;font-size:.875rem;margin-bottom:.375rem;color:#333}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid #ddd;border-radius:8px;font-size:.9rem;font-family:inherit;transition:border-color .2s;background:#fff}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#3964F0;box-shadow:0 0 0 3px rgba(57,100,240,.1)}
.form-group textarea{resize:vertical;min-height:100px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}
.checkbox-group{display:flex;flex-wrap:wrap;gap:.75rem}
.checkbox-group label{display:flex;align-items:center;gap:.375rem;font-weight:400;cursor:pointer}
.checkbox-group input[type="checkbox"]{width:18px;height:18px;accent-color:#3964F0}
.radio-group{display:flex;flex-wrap:wrap;gap:.75rem}
.radio-group label{display:flex;align-items:center;gap:.375rem;font-weight:400;cursor:pointer}
.radio-group input[type="radio"]{width:18px;height:18px;accent-color:#3964F0}

/* Form success */
.form-success{display:none;text-align:center;padding:3rem 2rem;background:#f0fdf4;border-radius:12px;border:2px solid #86efac}
.form-success h3{color:#166534;margin-bottom:.75rem}
.form-success p{color:#15803d}
.form-success.active{display:block}
.appointment-form.hidden{display:none}

/* Provider page */
.provider-hero{display:grid;grid-template-columns:300px 1fr;gap:3rem;align-items:start}
.provider-hero__photo{border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.provider-hero__photo img{width:100%;aspect-ratio:1;object-fit:cover}
.provider-hero__info h1{margin-bottom:.5rem}
.provider-hero__role{color:#3964F0;font-weight:600;font-size:1.1rem;margin-bottom:1rem}
.provider-hero__specialties{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}
.specialty-tag{background:#f0f4ff;color:#3964F0;padding:.375rem .875rem;border-radius:20px;font-size:.8rem;font-weight:600}
@media(max-width:768px){
  .provider-hero{grid-template-columns:1fr;text-align:center}
  .provider-hero__specialties{justify-content:center}
}

/* Education timeline */
.timeline{border-left:3px solid #3964F0;padding-left:2rem;margin:2rem 0}
.timeline__item{position:relative;margin-bottom:1.5rem}
.timeline__item::before{content:'';position:absolute;left:-2.5rem;top:.4rem;width:12px;height:12px;border-radius:50%;background:#3964F0;border:3px solid #fff;box-shadow:0 0 0 2px #3964F0}
.timeline__title{font-weight:600;color:#222}
.timeline__org{color:#3964F0;font-size:.9rem}
.timeline__date{font-size:.85rem;color:#888}

/* FAQ */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border:1px solid #eee;border-radius:10px;margin-bottom:.75rem;overflow:hidden;transition:box-shadow .2s}
.faq-item:hover{box-shadow:0 2px 12px rgba(0,0,0,.05)}
.faq-item__q{padding:1.25rem 1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:.95rem;background:#fff;border:none;width:100%;text-align:left;font-family:inherit;color:#222}
.faq-item__q::after{content:'+';font-size:1.5rem;color:#3964F0;transition:transform .2s;font-weight:300}
.faq-item.open .faq-item__q::after{transform:rotate(45deg)}
.faq-item__a{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 1.5rem}
.faq-item.open .faq-item__a{max-height:2000px;padding:0 1.5rem 1.25rem}
.faq-item__a p{color:#555;font-size:.925rem;line-height:1.7}

/* Insurance grid */
.insurance-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.insurance-card{background:#fff;border-radius:12px;padding:2rem;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 12px rgba(0,0,0,.06);min-height:100px;font-weight:600;color:#333;text-align:center;font-size:1rem}
@media(max-width:768px){
  .insurance-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .insurance-grid{grid-template-columns:1fr}
}

/* Team grid */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.team-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,.06);text-align:center;transition:transform .3s}
.team-card:hover{transform:translateY(-3px)}
.team-card__photo{height:220px;overflow:hidden;background:#f0f0f0}
.team-card__photo img{width:100%;height:100%;object-fit:cover}
.team-card__body{padding:1.25rem}
.team-card__name{font-weight:700;font-size:1.05rem;margin-bottom:.25rem}
.team-card__role{color:#3964F0;font-size:.85rem;font-weight:600}
@media(max-width:768px){
  .team-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .team-grid{grid-template-columns:1fr}
}

/* Testimonials page */
.testimonials-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
@media(max-width:768px){
  .testimonials-grid{grid-template-columns:1fr}
}
.testimonial-card{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 2px 16px rgba(0,0,0,.06)}
.testimonial-card__stars{color:#FFC107;margin-bottom:.75rem;letter-spacing:.15em}
.testimonial-card__text{font-size:.925rem;line-height:1.7;color:#555;margin-bottom:1rem}
.testimonial-card__author{font-weight:600;color:#333}
.testimonial-card__date{font-size:.8rem;color:#888;margin-top:.25rem}

/* Condition list */
.conditions-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.condition-card{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 2px 12px rgba(0,0,0,.05)}
.condition-card h3{color:#3964F0;margin-bottom:1rem;font-size:1.15rem}
.condition-card ul{padding-left:1.25rem;list-style:disc}
.condition-card li{margin-bottom:.375rem;color:#555;font-size:.9rem}
@media(max-width:768px){
  .conditions-grid{grid-template-columns:1fr}
}

/* Utilities */
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.mb-2{margin-bottom:2rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Page hero (inner pages) */
.page-hero{background:#232322;color:#fff;padding:3.5rem 0;text-align:center}
.page-hero h1{color:#fff;margin-bottom:.5rem}
.page-hero__subtitle{color:rgba(255,255,255,.8);font-size:1.05rem;max-width:600px;margin:0 auto}

/* Content page */
.content-page{max-width:800px;margin:0 auto;padding:3rem 1.5rem}
.content-page h2{margin-top:2.5rem;margin-bottom:1rem;color:#3964F0}
.content-page h3{margin-top:2rem;margin-bottom:.75rem}
.content-page ul{padding-left:1.5rem;list-style:disc;margin-bottom:1rem}
.content-page li{margin-bottom:.375rem;color:#555}
.content-page p{color:#555}

/* Structured data - visually hidden */
.schema-data{display:none}
