/* TOP CONTACT BAR */

.top-contact-bar{
background:#0f3b64;
color:#fff;
font-size:14px;
padding:8px 0;
}

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

.contact-left span{
margin-right:25px;
}

.top-cta{
background:#2bb7a9;
padding:6px 16px;
border-radius:20px;
color:#fff;
text-decoration:none;
}


/* HOW SECTION */

.how-section{
background:#f7fafc;
padding:80px 0;
text-align:center;
}

.how-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:40px;
}

.how-card{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.how-icon{
font-size:40px;
margin-bottom:10px;
}


/* SERVICE ICON */

.service-icon{
font-size:30px;
margin-bottom:10px;
}


/* CONTACT STRIP */

.contact-strip{
background:#f1f5f9;
padding:50px 0;
}

.strip-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
text-align:center;
font-size:18px;
}
/* ================================
   GLOBAL / RESET
================================ */
body {
    margin:0;
    padding:0;
    background:#ffffff;
    color:#204D6F;
    font-family:'Source Sans Pro', sans-serif;
}

h1,h2,h3,h4{
    font-family:'Montserrat', sans-serif;
    color:#003A70;
    margin-top:0;
}

p,li{
    font-size:18px;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

/* Bright medical image style */
.hero-img img,
.about-img img{
    filter:brightness(1.08) contrast(1.05);
}


/* ================================
   HEADER
================================ */
.acwc-header{
    background:#ffffff;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================================
   NAVIGATION
================================ */

.nav-list{
    list-style:none;
    display:flex;
    gap:35px;
    padding:0;
    margin:0;
}

.nav-list li a{
    text-decoration:none;
    font-weight:600;
    color:#003A70;
    padding:10px 0;
    display:inline-block;
    transition:.25s ease;
}

.nav-list li a:hover{
    color:#1C5FA8;
}


/* ================================
   MOBILE MENU
================================ */

.mobile-toggle{
    display:none;
    cursor:pointer;
    font-size:26px;
}

.mobile-menu{
    display:none;
    background:#ffffff;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* ================================
   GLOBAL BUTTON
================================ */

.cta-btn{
background:linear-gradient(45deg,#2DB7A3,#1C5FA8);
padding:12px 25px;
border-radius:6px;
color:#fff;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:.3s;
}

.cta-btn:hover{
background:linear-gradient(45deg,#178C90,#003A70);
}


/* ================================
   HEADER CTA BUTTON
================================ */

.header-cta{
background:linear-gradient(45deg,#2DB7A3,#1C5FA8);
color:#fff;
padding:10px 22px;
border-radius:6px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.header-cta:hover{
background:linear-gradient(45deg,#178C90,#003A70);
}


/* ================================
   HERO SECTION
================================ */

.hero-section{
padding:150px 0 120px;
background:linear-gradient(120deg,#E8F3FB,#ffffff);
position:relative;
}
.hero-section::after{
content:"";
position:absolute;
right:10%;
top:40px;
width:300px;
height:300px;
background:radial-gradient(circle,#d9ecff 0%, transparent 70%);
opacity:.5;
z-index:0;
}


.hero-inner{
display:flex;
align-items:center;
gap:70px;
position:relative;
z-index:1;
}

.hero-inner h1{
font-size:50px;
line-height:1.2;
margin-bottom:18px;
}

.hero-inner p{
font-size:19px;
margin-bottom:25px;
max-width:520px;
}

.hero-img img{
width:820px;
max-width:100%;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


/* ================================
   PAGE HERO
================================ */

.page-hero{
background:linear-gradient(45deg,#2DB7A3,#1C5FA8);
padding:80px 0;
text-align:center;
color:#fff;
}

.page-hero h1{
color:#fff;
font-size:42px;
}

.page-hero p{
color:#e7f9ff;
}


/* ================================
   SERVICES GRID
================================ */

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#ffffff;
border-radius:14px;
padding:32px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:all .35s ease;
border:1px solid #f1f5f9;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}
.card h3{
margin-bottom:10px;
font-size:20px;
}

/* ================================
   ABOUT SECTION
================================ */

.about-section{
padding:120px 0;
background:#F5F7FA;
}

.about-inner{
display:flex;
align-items:center;
gap:40px;
}

.about-img img{
width:430px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


/* ================================
   WHY SECTION
================================ */

.why-section{
padding:100px 0;
}

.why-grid{
margin-top:30px;
columns:2;
font-size:18px;
line-height:1.9;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px 80px;
margin-top:35px;
}
.why-grid p{
font-size:18px;
padding-left:5px;
}

/* ================================
   CTA SECTION
================================ */

.cta-section{
padding:110px 0;
background:linear-gradient(45deg,#2DB7A3,#1C5FA8);
text-align:center;
color:#fff;
}

.cta-section h2{
font-size:32px;
margin-bottom:10px;
}

.cta-section p{
margin-bottom:25px;
}

.cta-section .cta-btn{
background:#ffffff;
color:#2b6cb0;
padding:14px 30px;
border-radius:6px;
font-weight:600;
}

.cta-section .cta-btn:hover{
background:#e9f3ff;
}


/* ================================
   CONTACT PAGE
================================ */

.contact-cards{
display:flex;
gap:30px;
margin:50px auto;
}

.contact-card{
flex:1;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:center;
}

.contact-section{
display:flex;
gap:60px;
margin:60px auto;
}


/* ================================
   OFFER PAGE
================================ */

.offer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin:80px auto;
max-width:1200px;
}

.offer-card{
background:#ffffff;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.35s;
}

.offer-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.offer-icon{
font-size:32px;
color:#2b8fd6;
margin-bottom:15px;
}


/* ================================
   SERVICES PAGE
================================ */

.service-card{
background:#ffffff;
padding:35px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}


/* ================================
   FOOTER
================================ */

footer{
background:#003A70;
color:#fff;
padding:40px 0;
margin-top:80px;
text-align:center;
}


/* ================================
   BACK TO TOP BUTTON
================================ */

#backToTop{
position:fixed;
bottom:35px;
right:35px;
background:#0e84ff;
color:#fff;
height:45px;
width:45px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:22px;
cursor:pointer;
transition:.3s;
opacity:0;
pointer-events:none;
box-shadow:0 5px 20px rgba(0,0,0,0.25);
}

#backToTop.show{
opacity:1;
pointer-events:auto;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

.hero-inner,
.about-inner,
.contact-section{
flex-direction:column;
text-align:center;
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

.mobile-toggle{
display:block;
}

.main-menu{
display:none;
}

.header-cta{
display:none;
}

}
/* ============================
   PREMIUM FOOTER
============================ */

.premium-footer{
background:#00315c;
color:#ffffff;
margin-top:0;
}

/* CTA BAR ABOVE FOOTER */

.footer-cta-bar{
background:linear-gradient(90deg,#0e84ff,#2ac5a5);
padding:40px 0;
text-align:center;
}

.cta-flex{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.footer-cta-bar h3{
font-size:26px;
margin:0;
color:#fff;
}

.cta-white{
background:#ffffff;
color:#00315c;
padding:12px 28px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.cta-white:hover{
background:#e7e7e7;
}

/* FOOTER MAIN AREA */

.footer-main{
display:flex;
justify-content:space-between;
gap:60px;
padding:70px 0 50px;
flex-wrap:wrap;
}

.footer-col{
width:20%;
min-width:220px;
}

.footer-col h4{
font-size:18px;
margin-bottom:20px;
font-weight:700;
color:#fff;
}

.footer-brand p{
line-height:1.7;
max-width:260px;
}

.footer-logo{
width:130px;
margin-bottom:14px;
}

/* LINKS */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:12px;
}

.footer-links a{
color:#d7e7f6;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#fff;
padding-left:4px;
}

/* SOCIAL */

.footer-social{
display:flex;
gap:14px;
margin-top:15px;
}

.social-icon svg{
height:26px;
width:26px;
fill:#ffffff;
transition:.3s;
}

.social-icon:hover svg{
fill:#2ac5a5;
}

/* BOTTOM BAR */

.footer-bottom{
background:#002543;
text-align:center;
padding:18px 0;
font-size:15px;
}

/* FOOTER RESPONSIVE */

@media(max-width:900px){

.footer-main{
gap:40px;
}

.footer-col{
width:45%;
}

}

@media(max-width:600px){

.footer-col{
width:100%;
}

.cta-flex{
flex-direction:column;
gap:15px;
}

}
/* POPUP OVERLAY */
.modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
display:none;
justify-content:center;
align-items:center;
z-index:99999;
padding:20px;
}

.modal-overlay.show{
display:flex;
}

/* MODAL BOX */


.modal-box{
background:#ffffff;
padding:45px;
border-radius:16px;
width:100%;
max-width:720px;
max-height:85vh;
overflow-y:auto;
box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.modal-box{
position:relative;
}

.modal-close{
position:absolute;
top:18px;
right:22px;
font-size:28px;
font-weight:700;
color:#1c3f5f;
cursor:pointer;
line-height:1;
z-index:10;
}

.modal-close:hover{
color:#0e84ff;
}
.modal-title{
font-size:26px;
margin-bottom:5px;
color:#003A70;
}

.modal-subtitle{
color:#6b7d8a;
margin-bottom:20px;
}
/* ===============================
APPOINTMENT FORM DESIGN
================================ */

.appointment-form{
max-width:620px;
margin:auto;
}

.form-row{
display:flex;
gap:24px;
margin-bottom:22px;
}

.form-group{
flex:1;
display:flex;
flex-direction:column;
}

.form-group label{
font-weight:600;
color:#0f3b64;
margin-bottom:6px;
font-size:14px;
}

/* Inputs */

.appointment-form input,
.appointment-form textarea,
.appointment-form select{
width:100%;
padding:12px 14px;
border-radius:8px;
border:1px solid #d5e2ee;
font-size:15px;
background:#f9fcff;
transition:all .2s ease;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus{
border-color:#2b8fd6;
box-shadow:0 0 6px rgba(43,143,214,0.25);
background:#ffffff;
outline:none;
}

.appointment-form textarea{
height:110px;
resize:none;
}

/* Submit Button */

.form-submit{
margin-top:10px;
}

.appointment-form input[type="submit"]{
width:100%;
background:linear-gradient(135deg,#2bb7a9,#2b6cb0);
color:#fff;
border:none;
padding:16px;
font-size:17px;
font-weight:600;
border-radius:10px;
cursor:pointer;
transition:.3s;
letter-spacing:.3px;
}

.appointment-form input[type="submit"]:hover{
transform:translateY(-1px);
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */

@media(max-width:600px){

.form-row{
flex-direction:column;
}

}
.modal-title{
font-size:30px;
font-weight:700;
color:#0f3b64;
margin-bottom:6px;
}

.modal-subtitle{
color:#6b7d8a;
margin-bottom:28px;
font-size:16px;
}
section.services-section.container {
    padding:120px 0;
}
.legal-card{
max-width:900px;
margin:80px auto;
}

.legal-box{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.legal-box h3{
margin-top:25px;
color:#003A70;
}

.legal-box p{
color:#5c6b78;
line-height:1.7;
}
.footer-col a {
    color: #fff;
}
.contact-card a {
    color: #204D6F;
}