/* =================================
YOGSEEKHO COURSE PAGE PREMIUM
================================= */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HERO */

.course-hero{
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55)),
url('https://images.unsplash.com/photo-1506126613408-eca07ce68773');
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
padding:180px 20px 120px;
}

.course-hero-content{
max-width:900px;
margin:auto;
}

.course-hero h1{
font-size:72px;
font-weight:800;
margin-bottom:20px;
line-height:1.1;
}

.course-hero p{
font-size:22px;
line-height:1.8;
margin-bottom:35px;
}

.course-hero .btn-primary{
display:inline-block;
padding:18px 40px;
border-radius:50px;
font-size:18px;
font-weight:700;
}

/* HIGHLIGHTS */

.course-highlights{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}

.highlight-card{
background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);
padding:16px 24px;
border-radius:15px;
font-weight:600;
border:1px solid rgba(255,255,255,.2);
}

/* COMMON SECTIONS */

.course-overview,
.course-learning,
.course-curriculum,
.course-benefits,
.instructor-section,
.certificate-section{
padding:90px 0;
}

.course-overview h2,
.course-learning h2,
.course-curriculum h2,
.course-benefits h2,
.instructor-section h2,
.certificate-section h2{
font-size:42px;
margin-bottom:25px;
color:#115E59;
}

.course-overview p,
.instructor-section p,
.certificate-section p{
font-size:18px;
line-height:1.9;
color:#555;
}

/* LEARNING */

.course-learning ul,
.course-benefits ul{
list-style:none;
padding:0;
margin-top:30px;
}

.course-learning li,
.course-benefits li{
background:#fff;
padding:20px;
margin-bottom:15px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-size:17px;
transition:.3s;
}

.course-learning li:hover,
.course-benefits li:hover{
transform:translateY(-5px);
}

/* CURRICULUM */

.module{
background:#fff;
padding:22px;
margin-bottom:15px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-size:18px;
font-weight:600;
transition:.3s;
}

.module:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* INSTRUCTOR */

.instructor-section{
background:#ffffff;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
padding:60px;
margin:40px auto;
}

.instructor-section h3{
font-size:28px;
margin-bottom:15px;
color:#0F766E;
}

/* CERTIFICATE */

.certificate-section{
background:#f8fafc;
border-radius:25px;
padding:60px;
text-align:center;
}

/* CTA */

.course-cta{
background:
linear-gradient(
135deg,
#0F766E,
#115E59
);
text-align:center;
padding:100px 20px;
color:#fff;
}

.course-cta h2{
font-size:54px;
margin-bottom:30px;
}

.course-cta .btn-primary{
display:inline-block;
padding:18px 40px;
background:#fff;
color:#115E59;
font-weight:700;
border-radius:50px;
}

/* MOBILE */

@media(max-width:768px){

.course-hero{
padding:140px 20px 80px;
}

.course-hero h1{
font-size:42px;
}

.course-hero p{
font-size:17px;
}

.course-highlights{
flex-direction:column;
align-items:center;
}

.highlight-card{
width:100%;
max-width:300px;
text-align:center;
}

.course-overview h2,
.course-learning h2,
.course-curriculum h2,
.course-benefits h2,
.instructor-section h2,
.certificate-section h2{
font-size:30px;
}

.course-cta h2{
font-size:34px;
}

.instructor-section,
.certificate-section{
padding:35px 25px;
}
}
/* PREMIUM IMPROVEMENTS */

.course-overview .container{
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.course-learning ul{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.module{
border-left:5px solid #0F766E;
}

.instructor-section{
background:#fff;
padding:60px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:768px){

.course-learning ul{
grid-template-columns:1fr;
}

}