
/* ── HERO ── */
#hero {
min-height: 100vh;
padding: 68px 5% 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
align-items: center;
position: relative;
overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0;
background:
    radial-gradient(ellipse 60% 80% at 70% 50%, #e6f4ec 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, #fef7e8 0%, transparent 60%);
z-index: 0;
}
.hero-left { position: relative; z-index: 1; padding: 60px 0; }
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: var(--green-light); color: var(--green);
border: 1px solid #b8dcca;
padding: 6px 14px; border-radius: 50px;
font-size: 0.82rem; font-weight: 600;
letter-spacing: .03em; margin-bottom: 28px;
}
.hero-badge::before {
content: ''; width: 8px; height: 8px; border-radius: 50%;
background: var(--green); flex-shrink: 0;
animation: pulse-dot 2s ease-in-out infinite;
}
h1.hero-title {
font-family: 'Playfair Display', serif;
font-size: clamp(2.4rem, 4.5vw, 3.8rem);
font-weight: 900; line-height: 1.1;
color: var(--dark); margin-bottom: 24px;
}
h1.hero-title em { font-style: normal; color: var(--green); }
h1.hero-title .accent { color: var(--red); }
.hero-sub {
font-size: 1.08rem; color: var(--muted);
line-height: 1.7; max-width: 480px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
display: flex; gap: 32px; margin-top: 52px;
padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num {
font-family: 'Playfair Display', serif;
font-size: 2rem; font-weight: 900; color: var(--green);
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.hero-right {
position: relative; z-index: 1;
display: flex; align-items: center; justify-content: center;
padding: 80px 0 60px 40px;
}
.hero-image-wrap { position: relative; width: 100%; }
.hero-img-main {
width: 100%; height: 420px;
object-fit: cover;
border-radius: 24px 24px 80px 24px;
box-shadow: 0 24px 64px rgba(26,107,58,.18);
}
.hero-flag-card {
position: absolute; bottom: -20px; left: -28px;
background: #fff; border-radius: 14px;
padding: 14px 18px;
box-shadow: 0 8px 32px rgba(0,0,0,0.12);
display: flex; align-items: center; gap: 10px;
}
.flag-emoji { font-size: 1.6rem; }
.flag-text { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.flag-sub  { font-size: 0.72rem; color: var(--muted); }
.hero-achievement {
position: absolute; top: 24px; right: -20px;
background: var(--gold); border-radius: 14px;
padding: 12px 16px;
box-shadow: 0 8px 32px rgba(232,160,32,.3);
text-align: center; color: #fff;
}
.achievement-num   { font-size: 1.6rem; font-weight: 800; }
.achievement-label { font-size: 0.72rem; font-weight: 600; line-height: 1.3; }

/* ── ABOUT ── */
#about { background: #fff; }
.about-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 60px; align-items: center; margin-top: 50px;
}
.about-img-stack { position: relative; }
.about-img-1 {
width: 80%; height: 340px;
object-fit: cover; border-radius: 20px;
box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-img-2 {
width: 55%; height: 220px;
object-fit: cover; border-radius: 16px;
position: absolute; bottom: -36px; right: 0;
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
border: 4px solid #fff;
}
.about-content p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-pillars {
display: grid; grid-template-columns: 1fr 1fr;
gap: 16px; margin-top: 32px;
}
.pillar-chip {
display: flex; align-items: center; gap: 10px;
background: var(--green-light); border-radius: var(--radius-sm);
padding: 12px 14px; font-size: 0.9rem; font-weight: 600;
color: var(--green);
}
.pillar-chip .icon {
width: 28px; height: 28px; border-radius: 50%;
background: var(--green);
display: flex; align-items: center; justify-content: center;
font-size: 0.85rem; flex-shrink: 0;
}

/* ── GRADES ── */
#grades { background: var(--cream); }
.grades-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 24px; margin-top: 50px;
}
.grade-card {
border-radius: var(--radius); overflow: hidden;
transition: transform .25s, box-shadow .25s; cursor: default;
}
.grade-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
.grade-card-header { padding: 28px 28px 20px; color: #fff; }
.grade-card-header.kg  { background: linear-gradient(135deg, #1a6b3a, #2d9057); }
.grade-card-header.pri { background: linear-gradient(135deg, #6a0dad, #e05544); }
.grade-card-header.sec { background: linear-gradient(135deg, #e8a020, #f0bb44); color: var(--dark); }
.grade-icon  { font-size: 2.2rem; margin-bottom: 8px; }
.grade-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.grade-range { font-size: 0.82rem; opacity: .8; }
.grade-card-body { background: #fff; padding: 24px 28px; }
.grade-list { list-style: none; }
.grade-list li {
display: flex; align-items: center; gap: 10px;
padding: 8px 0; border-bottom: 1px solid var(--border);
font-size: 0.93rem; color: var(--text);
}
.grade-list li:last-child { border-bottom: none; }
.grade-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.grade-dot.red  { background: var(--red); }
.grade-dot.gold { background: var(--gold); }

/* ── PILLARS ── */
#pillars { background: var(--dark); color: #fff; }
#pillars .section-title { color: #fff; }
#pillars .section-tag  { color: #7bd4a0; }
#pillars .section-sub  { color: #9ab0c0; }
.pillars-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 24px; margin-top: 50px;
}
.pillar-card {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius); padding: 32px 24px;
transition: background .2s, transform .2s;
}
.pillar-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.pillar-icon-wrap {
width: 52px; height: 52px; border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 1.6rem; margin-bottom: 20px;
}
.pillar-icon-wrap.green  { background: rgba(45,144,87,.25); }
.pillar-icon-wrap.red    { background: rgba(192,57,43,.25); }
.pillar-icon-wrap.gold   { background: rgba(232,160,32,.25); }
.pillar-icon-wrap.blue   { background: rgba(52,120,200,.25); }
.pillar-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.pillar-card p  { font-size: 0.9rem; line-height: 1.7; color: #9ab0c0; }

/* ── FEES ── */
#fees { background: #fff; }
.fees-inner {
display: grid; grid-template-columns: 1fr 1fr;
gap: 60px; align-items: center; margin-top: 50px;
}
.fees-card {
background: var(--cream); border-radius: var(--radius);
padding: 40px; border: 1.5px solid var(--border);
}
.fees-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px; color: var(--dark); }
.fees-card p  { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.brochure-btn {
display: inline-flex; align-items: center; gap: 8px;
background: var(--green); color: #fff;
padding: 12px 24px; border-radius: 50px;
font-size: 0.9rem; font-weight: 600;
text-decoration: none; transition: background .2s;
}
.brochure-btn:hover { background: #145730; }
.fees-trips h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 16px; color: var(--dark); }
.trips-list { list-style: none; }
.trip-item {
display: flex; align-items: flex-start; gap: 16px;
padding: 18px 0; border-bottom: 1px solid var(--border);
}
.trip-item:last-child { border-bottom: none; }
.trip-emoji  { font-size: 1.6rem; flex-shrink: 0; }
.trip-title  { font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.trip-desc   { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 60px; margin-top: 50px;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 24px; color: var(--dark); }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
width: 42px; height: 42px; border-radius: 10px;
background: var(--green-light);
display: flex; align-items: center; justify-content: center;
font-size: 1.1rem; flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 2px; }
.contact-val   { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.social-btn {
width: 40px; height: 40px; border-radius: 50%;
background: var(--green-light);
display: flex; align-items: center; justify-content: center;
color: var(--green); font-size: 1.1rem; text-decoration: none;
transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--green); color: #fff; }
.contact-form-wrap {
background: #fff; border-radius: var(--radius);
padding: 36px; border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 24px; }
.form-submit {
background: var(--green); color: #fff; border: none;
padding: 13px 28px; border-radius: 50px;
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem; font-weight: 600; cursor: pointer;
width: 100%; transition: background .2s;
}
.form-submit:hover { background: #145730; }

/* ── MAP ── */
#map { padding: 0; }
#map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
#hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 50px; }
.hero-right { display: none; }
.about-grid, .fees-inner, .contact-grid { grid-template-columns: 1fr; }
.grades-grid  { grid-template-columns: 1fr 1fr; }
.pillars-grid { grid-template-columns: 1fr 1fr; }
.about-img-2 { display: none; }
.about-img-1 { width: 100%; }
}
@media (max-width: 580px) {
.grades-grid, .pillars-grid { grid-template-columns: 1fr; }
.about-pillars { grid-template-columns: 1fr; }
.hero-stats { gap: 18px; }
}
