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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f5f7fb;
color:#333;
line-height:1.6;
}

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

section{
padding:80px 0;
}


/* ========================= */
/* ANNOUNCEMENT BAR */
/* ========================= */

.announcement{
background:#e53935;
color:#fff;
text-align:center;
font-size:14px;
padding:8px 10px;
}

.announcement span{
font-weight:600;
}

.announcement a{
color:#fff;
text-decoration:underline;
margin-left:5px;
}


/* ========================= */
/* HEADER */
/* ========================= */

.header{
background:#ffffff;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #e9eef5;
}

.menu-btn{
display:none;
}

@media(max-width:768px){

.menu-btn{
display:block;
}

}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

/* ========================= */
/* LOGO */
/* ========================= */

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:55px;
width:auto;
}

/* LOGO TEXT */

.logo-text{
font-size:24px;
font-weight:700;
letter-spacing:0.2px;
}

/* BLUE PART */

.logo-blue{
color:#2f6fb5;
}

/* RED PART */

.logo-red{
color:#e53935;
margin-left:4px;
}

.nav{
display:flex;
align-items:center;
}

.nav a{
margin-left:25px;
text-decoration:none;
color:#1c2d4a;
font-weight:500;
transition:0.3s;
}

.nav a:hover{
color:#2f6fb5;
}

.menu-btn{
display:none;
font-size:24px;
color:white;
cursor:pointer;
}


/* ORDER BUTTON */

.order-btn{
background:#25D366;
color:white;
padding:10px 22px;
border-radius:30px;
font-weight:600;
display:inline-flex;
align-items:center;
gap:8px;
text-decoration:none;
}

.order-btn:hover{
background:#1fa851;
}


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

.hero{
background:url('../images/medical.png') center/cover no-repeat;
min-height:600px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
padding:120px 20px;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
margin:auto;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
font-weight:700;
}

.hero p{
font-size:18px;
margin-bottom:30px;
line-height:1.7;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}


/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary{
background:#0a63ff;
color:#fff;
padding:13px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
margin-right:10px;
transition:.3s;
}

.btn-primary:hover{
background:#084bd1;
transform:translateY(-2px);
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:13px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-whatsapp:hover{
background:#1da851;
transform:translateY(-2px);
}


/* ========================= */
/* FEATURES */
/* ========================= */

.features{
background:white;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
margin-top:40px;
}

.feature-card{
background:white;
padding:30px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

.feature-card i{
font-size:40px;
color:#0a63ff;
margin-bottom:15px;
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}


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

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-img img{
width:100%;
border-radius:10px;
}

.about-text h2{
font-size:34px;
margin-bottom:20px;
}

.about-text p{
margin-bottom:15px;
color:#555;
}


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

.section-title{
text-align:center;
font-size:36px;
font-weight:700;
color:#1c2d4a;
margin-bottom:30px;
}

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

.service-card{
background:white;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
overflow:hidden;
transition:.3s;
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
}

.service-card h3{
padding:15px 20px 5px;
font-size:20px;
}

.service-card p{
padding:0 20px 20px;
font-size:14px;
color:#555;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

@media(max-width:768px){

.logo img{
height:45px;
}

}

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

.cta-section{
background:#f0f5ff;
text-align:center;
border-top:1px solid #e4e9f2;
}

.cta-content{
max-width:700px;
margin:auto;
}

.cta-content h2{
font-size:36px;
color:#1c2d4a;
margin-bottom:15px;
}

.cta-content p{
color:#555;
margin-bottom:30px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-call{
background:#0a63ff;
color:white;
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.btn-call:hover{
background:#084bd1;
}


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

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

.footer{
background:#1c2d4a;
color:white;
padding:70px 0 30px;
}

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

/* FOOTER TITLES */

.footer h3{
margin-bottom:18px;
font-size:20px;
font-weight:600;
}

/* LINKS */

.footer a{
display:block;
color:#cfd8e3;
margin-top:10px;
text-decoration:none;
transition:0.3s;
}

.footer a:hover{
color:#ffffff;
transform:translateX(4px);
}

/* CONTACT ITEMS */

.footer-contact p{
margin:8px 0;
color:#cfd8e3;
font-size:14px;
}

.footer-contact i{
margin-right:8px;
color:#4da3ff;
}

/* SOCIAL ICONS */

.footer-social{
margin-top:15px;
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:36px;
height:36px;
background:#2d3f63;
border-radius:50%;
margin-right:8px;
color:white;
transition:0.3s;
}

.footer-social a:hover{
background:#0a63ff;
transform:translateY(-3px);
}

/* COPYRIGHT */

.copyright{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.1);
font-size:14px;
color:#cfd8e3;
}


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

.back-to-top{
position:fixed;
bottom:30px;
right:30px;
background:#0a63ff;
color:white;
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
cursor:pointer;
transition:0.3s;
opacity:0;
visibility:hidden;
z-index:999;
}

.back-to-top:hover{
background:#084bd1;
transform:translateY(-3px);
}

.back-to-top.show{
opacity:1;
visibility:visible;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:992px){

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

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

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

.hero{
height:auto;
padding:120px 20px;
}

}


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

@media(max-width:768px){

.nav{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:#2f6fb5;
flex-direction:column;
padding:20px;
}

.nav a{
margin:10px 0;
}

.nav.active{
display:flex;
}

.menu-btn{
display:block;
}

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

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

@media(max-width:768px){

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

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

}

.cta-buttons{
flex-direction:column;
}

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media(max-width:480px){

.hero h1{
font-size:26px;
}

.service-grid{
grid-template-columns:1fr;
gap:20px;
}

.about-text h2{
font-size:26px;
}

.cta-content h2{
font-size:24px;
}

}

@media(max-width:768px){

.logo-text{
font-size:18px;
}

.logo img{
height:45px;
}

}


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

.services-page{
background:#f5f7fb;
padding-top:40px;
}

/* Title */

.services-page h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.services-page p{
color:#555;
margin-bottom:40px;
max-width:750px;
}


/* GRID */

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


/* CARD */

.service-box i{
font-size:22px;
color:#0a63ff;
background:#eef4ff;
padding:14px;
border-radius:10px;
margin-bottom:15px;
}

/* ICON */

.service-box i{
font-size:28px;
color:#0a63ff;
margin-bottom:15px;
display:inline-block;
}

/* TITLE */

.service-box h3{
font-size:18px;
font-weight:600;
margin-bottom:10px;
color:#1c2d4a;
}

/* TEXT */

.service-box p{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:0;
}

/* HOVER EFFECT */

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

/* ========================= */
/* SERVICES CTA */
/* ========================= */

.services-cta{
background:white;
border-top:1px solid #eaeaea;
padding:70px 0;
text-align:center;
}

.services-cta h2{
font-size:30px;
margin-bottom:10px;
}

.services-cta p{
color:#555;
margin-bottom:25px;
}




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

.contact-section{
background:#f5f7fb;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:flex-start;
}

/* LEFT SIDE */

.contact-info h2{
font-size:36px;
margin-bottom:10px;
color:#1c2d4a;
}

.contact-info p{
color:#555;
margin-bottom:30px;
max-width:520px;
}

/* CONTACT CARD */

.contact-card{
display:flex;
gap:15px;
align-items:flex-start;
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
margin-bottom:18px;
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-4px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.contact-card i{
font-size:20px;
color:#0a63ff;
background:#eef4ff;
padding:12px;
border-radius:10px;
min-width:44px;
text-align:center;
}

.contact-card h4{
margin-bottom:5px;
font-size:18px;
}

.contact-card p{
margin:0;
color:#555;
font-size:15px;
}

/* BUTTONS */

.contact-buttons{
margin-top:25px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* MAP */

.contact-map iframe{
width:100%;
height:480px;
border:0;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

@media(max-width:768px){

.contact-wrapper{
grid-template-columns:1fr;
gap:30px;
}

.contact-map iframe{
height:340px;
}

.contact-buttons{
justify-content:center;
}

}