/* ==========================
   YELI THERAPY MEDICAL CENTER
   ========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
line-height:1.6;
color:#333;
background:#ffffff;
}

/* ==========================
   CONTAINER
   ========================== */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ==========================
   HEADER
   ========================== */

.header{
background:#ffffff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
max-width:280px;
height:auto;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
font-weight:500;
color:#0F4C81;
transition:.3s;
}

nav a:hover{
color:#00A7C4;
}

.active{
color:#00A7C4;
}

/* ==========================
   HERO
   ========================== */

.hero{
position:relative;
height:850px;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);

display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-content{
max-width:900px;
padding:20px;
color:white;
}

.hero-content h1{
font-size:56px;
font-weight:700;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:35px;
}

/* ==========================
   BUTTONS
   ========================== */

.btn-primary{
display:inline-block;
background:#00A7C4;
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
margin-right:15px;
transition:.3s;
}

.btn-primary:hover{
background:#0087a0;
}

.btn-secondary{
display:inline-block;
background:white;
color:#0F4C81;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-secondary:hover{
background:#f1f1f1;
}

/* ==========================
   SECTIONS
   ========================== */

section{
padding:80px 0;
}

section h2{
font-size:40px;
margin-bottom:20px;
color:#0F4C81;
text-align:center;
}

/* ==========================
   SERVICES
   ========================== */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:50px;
}

.service-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card img{
width:100%;
height:250px;
object-fit:cover;
}

.service-card h3{
padding:20px;
color:#0F4C81;
}

.service-card p{
padding:0 20px 25px;
}

/* ==========================
   BENEFITS
   ========================== */

.benefits{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.benefit-box{
background:#f8fbfd;
padding:30px;
border-radius:15px;
text-align:center;
}

.benefit-box h3{
color:#0F4C81;
margin-bottom:10px;
}

/* ==========================
   INSURANCE
   ========================== */

.insurance-section img{
width:100%;
border-radius:15px;
margin:30px 0;
}

.insurance-section p{
font-size:20px;
text-align:center;
}

/* ==========================
   CONTACT
   ========================== */

.contact-home{
background:#f8fbfd;
}

.contact-home p{
font-size:20px;
text-align:center;
margin-bottom:10px;
}

/* ==========================
   CTA
   ========================== */

.cta{
background:#0F4C81;
color:white;
text-align:center;
}

.cta h2{
color:white;
}

.cta p{
font-size:20px;
margin-bottom:30px;
}

/* ==========================
   FOOTER
   ========================== */

footer{
background:#0A2F4D;
color:white;
padding:40px 0;
text-align:center;
}

footer p{
margin-bottom:10px;
}

/* ==========================
   PAGE BANNERS
   ========================== */

.page-banner{
background:#0F4C81;
color:white;
text-align:center;
padding:100px 20px;
}

.page-banner h1{
font-size:50px;
margin-bottom:15px;
}

/* ==========================
   ABOUT PAGE
   ========================== */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:15px;
}

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.value-card{
background:#f8fbfd;
padding:30px;
border-radius:15px;
text-align:center;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media(max-width:768px){

.header .container{
flex-direction:column;
}

nav ul{
flex-direction:column;
text-align:center;
gap:15px;
margin-top:20px;
}

.hero{
height:650px;
}

.hero-content h1{
font-size:34px;
}

.hero-content p{
font-size:18px;
}

.about-grid{
grid-template-columns:1fr;
}

section h2{
font-size:30px;
}

.btn-primary,
.btn-secondary{
display:block;
margin:10px auto;
width:250px;
}

.language-switcher{
font-weight:600;
}

.language-switcher a{
color:#00A7C4;
text-decoration:none;
padding:0 4px;
}

.language-switcher a:hover{
color:#0F4C81;
}

}