/* ======================================================
SLP INSTITUTE - PREMIUM EXECUTIVE MASTERCLASS
BLOCK 1
====================================================== */

:root{
--primary:#012A67;
--secondary:#009DA5;
--accent:#D8A73C;
--dark:#10233f;
--text:#334155;
--light:#F8FAFC;
--white:#ffffff;
--border:#e5eaf1;
--radius:20px;
--shadow:0 12px 40px rgba(1,42,103,.08);
--shadow-lg:0 25px 70px rgba(1,42,103,.12);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--light);
color:var(--text);
line-height:1.7;
overflow-x:hidden;
}

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

a{
text-decoration:none;
}

.container{
width:92%;
max-width:1380px;
margin:auto;
}

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

.header{
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,.97);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(0,0,0,.05);
box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:14px 0;
}

.logo{
height:55px;
width:auto;
flex-shrink:0;
}

.nav-menu{
display:flex;
align-items:center;
justify-content:center;
gap:28px;
flex:1;
}

.nav-menu a{
position:relative;
color:var(--primary);
font-size:.95rem;
font-weight:600;
transition:.3s;
}

.nav-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:var(--secondary);
transition:.3s;
}

.nav-menu a:hover{
color:var(--secondary);
}

.nav-menu a:hover::after{
width:100%;
}

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

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:999px;
font-weight:700;
transition:.3s;
}

.btn-primary{
background:var(--accent);
color:var(--primary);
box-shadow:0 10px 25px rgba(216,167,60,.25);
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 15px 30px rgba(216,167,60,.35);
}

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

.hero{
background:
linear-gradient(
135deg,
#012A67,
#01457a,
#009DA5
);
padding:40px 0;
color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.8fr 340px;
    gap:40px;
    align-items:start;
}

.hero-content{
max-width:760px;
}

/* ==========================================
COUNTDOWN
========================================== */

.hero-countdown{
display:flex;
gap:12px;
margin-bottom:20px;
}

.count-box{
background:rgba(255,255,255,.12);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.15);
border-radius:16px;
padding:12px 16px;
min-width:85px;
text-align:center;
}

.count-box span{
display:block;
font-size:1.5rem;
font-weight:700;
color:#fff;
}

.count-box small{
color:rgba(255,255,255,.8);
font-size:.7rem;
letter-spacing:1px;
}

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

.eyebrow{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,.12);
font-size:.8rem;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-size:3rem;
line-height:1.08;
letter-spacing:-1px;
margin-bottom:18px;
}

.hero h1::after{
content:'';
display:block;
width:90px;
height:4px;
background:var(--accent);
margin-top:18px;
border-radius:10px;
}

.hero-text{
max-width:650px;
font-size:1.05rem;
color:rgba(255,255,255,.92);
margin-bottom:28px;
}

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

.hero-meta{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    margin:25px 0;
}

.meta{
background:rgba(255,255,255,.12);
padding:10px 16px;
border-radius:999px;
font-size:.9rem;
}

/* ==========================================
FACILITATOR CARD
========================================== */

.facilitator-card{
    width:340px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    margin-left:auto;
}
.facilitator-photo{
    width:100%;
    height:320px;
    object-fit:cover;
    object-position:center 15%;
    display:block;
}
.speaker-content{
    padding:25px;
}

.facilitator-content{
padding:18px;
}

.speaker-tag{
    display:inline-block;
    padding:6px 14px;
    border-radius:20px;
    background:#eef4ff;
    color:#012A67;
    font-size:.75rem;
    font-weight:700;
    margin-bottom:15px;
}
.speaker-content h3{
    margin-bottom:18px;
    color:#012A67;
}
.speaker-card{
    width:360px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.facilitator-content h3{
color:var(--primary);
font-size:1.4rem;
margin:10px 0;
}

.facilitator-highlights{
    list-style:none;
    padding:0;
    margin:0;
}

.facilitator-highlights li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    line-height:1.7;
    font-size:.95rem;
    color:#334155;
    font-weight:500;
}

.facilitator-highlights li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#00a67e;
    font-weight:700;
}

.read-more-btn{
    display:inline-flex;
    align-items:center;
    margin-top:18px;
    color:#009DA5;
    background:none;
    border:none;
    font-weight:700;
    cursor:pointer;
    font-size:.95rem;
    padding:0;
}
.facilitator-bio{
    display:none;
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid #e5e7eb;
    color:#475569;
    line-height:1.7;
}

/* ==========================================
TRUST BAR
========================================== */

.trust-bar{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;
}

.trust-bar span{
background:rgba(255,255,255,.12);
padding:10px 14px;
border-radius:30px;
font-size:.85rem;
}

/* ==========================================
WHATSAPP
========================================== */

.floating-whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:16px 22px;
border-radius:50px;
font-weight:700;
z-index:9999;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* ======================================================
BLOCK 2
SECTIONS + BENEFITS + LEARNING + COURSE INFO
====================================================== */

/* ==========================================
SECTIONS
========================================== */

.section{
padding:75px 0;
}

.section-light{
background:#ffffff;
border-top:1px solid #eef2f7;
}

.section-heading{
text-align:center;
max-width:760px;
margin:0 auto 45px;
}

.section-tag{
display:inline-block;
padding:8px 16px;
border-radius:999px;
background:rgba(1,42,103,.08);
color:#012A67;
font-size:.8rem;
font-weight:700;
margin-bottom:15px;
}

.section-heading h2,
.section-title{
font-size:2.2rem;
color:#012A67;
margin-bottom:10px;
line-height:1.2;
}

.section-heading p{
color:#64748b;
max-width:650px;
margin:auto;
}

/* ==========================================
WHY ATTEND
========================================== */

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

.benefit{
background:#fff;
padding:24px;
border-radius:18px;
border:1px solid rgba(1,42,103,.08);
box-shadow:0 8px 25px rgba(1,42,103,.06);
transition:.3s;
}

.benefit:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(1,42,103,.12);
}

.benefit h3{
color:#012A67;
font-size:1.15rem;
margin-bottom:10px;
}

.benefit p{
color:#475569;
font-size:.95rem;
line-height:1.8;
}

/* ==========================================
WHAT YOU WILL LEARN
========================================== */

.learn-grid{
max-width:900px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px 40px;
}

.learn-grid div{
padding:16px 0;
border-bottom:1px solid #e5eaf1;
font-weight:600;
color:#334155;
font-size:1rem;
}

/* ==========================================
COURSE INFORMATION
========================================== */

.event-card{
max-width:1000px;
margin:auto;
background:#fff;
padding:35px;
border-radius:24px;
border:1px solid rgba(1,42,103,.06);
box-shadow:0 15px 40px rgba(1,42,103,.08);
}

.event-modern{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.event-item{
display:flex;
align-items:center;
gap:16px;
background:#f8fafc;
border:1px solid rgba(1,42,103,.08);
border-radius:16px;
padding:18px;
}

.event-item i{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#012A67;
color:white;
border-radius:12px;
font-size:18px;
}

.event-item span{
display:block;
color:#64748B;
font-size:.85rem;
margin-bottom:4px;
}

.event-item strong{
color:#012A67;
font-size:1rem;
}

.event-divider{
margin:30px 0;
border:none;
border-top:1px solid #e5e7eb;
}

/* ==========================================
IDEAL FOR
========================================== */

.event-card h3{
color:#012A67;
margin-bottom:15px;
}

.audience-list{
display:flex;
flex-wrap:wrap;
gap:10px;
list-style:none;
padding:0;
}

.audience-list li{
background:#eef4ff;
color:#012A67;
padding:10px 16px;
border-radius:30px;
font-size:.9rem;
font-weight:600;
}

/* ======================================================
BLOCK 3
FAQ + RSVP + FOOTER + RESPONSIVE
====================================================== */

/* ==========================================
FAQ
========================================== */

.faq{
max-width:950px;
margin:auto;
}

.faq-item{
background:#fff;
border-radius:18px;
margin-bottom:15px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.faq-question{
width:100%;
border:none;
background:none;
padding:22px 25px;
display:flex;
justify-content:space-between;
align-items:center;
text-align:left;
cursor:pointer;
font-size:1rem;
font-weight:600;
color:#012A67;
}

.faq-icon{
font-size:24px;
font-weight:700;
color:#009DA5;
transition:.3s;
}

.faq-answer{
display:none;
padding:0 25px 22px;
color:#475569;
line-height:1.8;
}

.faq-item.active .faq-answer{
display:block;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}

/* ==========================================
RSVP
========================================== */

.rsvp-section{
background:
linear-gradient(
135deg,
#012A67,
#001C47
);
padding:70px 0;
}

.rsvp-card{
background:#fff;
max-width:850px;
margin:auto;
padding:50px;
border-radius:24px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.rsvp-card h2{
color:#012A67;
margin-bottom:10px;
}

.rsvp-card p{
color:#64748b;
}

.rsvp-card form{
display:grid;
gap:16px;
margin-top:25px;
}

.rsvp-card input{
width:100%;
padding:16px;
border:1px solid #e5eaf1;
border-radius:12px;
font-size:.95rem;
transition:.3s;
}

.rsvp-card input:focus{
outline:none;
border-color:#009DA5;
box-shadow:0 0 0 4px rgba(0,157,165,.08);
}

.rsvp-card button{
width:100%;
margin-top:10px;
}

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

.footer{
background:#001C47;
color:#fff;
padding:30px 0 20px;
}

.footer-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.footer-brand{
display:flex;
align-items:center;
gap:18px;
}

.footer-logo{
height:60px;
width:auto;
}

.footer-tagline{
color:rgba(255,255,255,.8);
font-size:.95rem;
}

.footer-contact{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.footer-contact a{
color:#fff;
font-weight:500;
transition:.3s;
}

.footer-contact a:hover{
    color:#D8A73C;
}

.footer-contact i{
    margin-right:8px;
}

.footer-bottom{
margin-top:20px;
padding-top:15px;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
color:rgba(255,255,255,.75);
font-size:.9rem;
}

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

@media(max-width:991px){

```
.nav-menu{
    display:none;
}

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

.hero-content{
    max-width:100%;
}

.hero-meta .meta{
    white-space:nowrap;
    font-size:.9rem;
}

.hero-countdown{
    justify-content:center;
}

.trust-bar{
    justify-content:center;
}

.facilitator-card{
    max-width:340px;
    margin:auto;
}

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

.event-modern{
    grid-template-columns:1fr;
}
```

}

@media(max-width:768px){

```
.hero{
background:
linear-gradient(
135deg,
#012A67,
#01457a,
#009DA5
);
padding:40px 0 50px;
color:#fff;
}

.hero h1{
    font-size:2.2rem;
}

.section{
    padding:60px 0;
}

.benefits-grid,
.learn-grid{
    grid-template-columns:1fr;
}

.rsvp-card{
    padding:35px 25px;
}

.footer-content{
    flex-direction:column;
    text-align:center;
}

.footer-brand{
    flex-direction:column;
}

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

.floating-whatsapp{
    right:15px;
    bottom:15px;
    padding:14px 18px;
}
.countdown-label{
    color:rgba(255,255,255,.85);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:12px;
    text-transform:uppercase;
}
.speaker-card{
    color:#334155;
}

.speaker-card h3{
    color:#012A67;
}

.facilitator-highlights li{
    color:#334155;
}

.facilitator-bio{
    color:#475569;
}
.meta{
    white-space:nowrap;
}
```

}

