@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; }
:root { --primary: #7A2331; --primary-dark: #551723; --gold: #AD8A3E; --text: #1C1712; --text-light: #6B7280; --bg: #F7F4EC; --white: #ffffff; --border: #E5E7EB; }
body { background: #F7F4EC; color: var(--text); overflow-x: hidden; }

/* ── HEADER ── */
.navbar { position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 14px 80px; background: #1C1712; backdrop-filter: blur(20px); }
.logo-circle { width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; cursor: pointer; border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.logo-circle img { width: 60px; }
.logo-circle:hover { transform: scale(1.08); }
nav { display: flex; align-items: center; gap: 32px; }
nav ul { display: flex; list-style: none; gap: 28px; }
nav ul li a { text-decoration: none; color: var(--text-light); font-size: 14.5px; font-weight: 600; transition: color 0.25s; position: relative; }
nav ul li a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; border-radius: 4px; background: var(--primary); transition: 0.3s; }
nav ul li a:hover { color: var(--primary); }
nav ul li a:hover::after { width: 100%; }
.login-btn { padding: 11px 26px; border: none; border-radius: 10px; background: var(--primary); color: white; font-weight: 700; cursor: pointer; transition: 0.3s; font-size: 14px; }
.login-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 32px; cursor: pointer; color: var(--text); }
.navbar { position: fixed; top: 0; left: 0; width: 100%; transition: 0.3s ease; z-index: 1000; }
.navbar.scrolled { background: var(--primary-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ── HERO — split layout, white theme ── */
.hero { position: relative; width: 100%; background: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; bottom: -220px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(122, 35, 49,0.07) 0%, transparent 70%); z-index: 0; }
.hero-swiper { width: 100%; }

/* ── SLIDE ── */
.hero-slide { width: 100%; }
.hero-slide-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px; max-width: 1400px; margin: 0 auto; padding: 150px 100px 70px; }

/* ── TEXT COLUMN ── */
.hero-text { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.swiper-slide-active .hero-text { opacity: 1; transform: translateY(0); }

/* ── EYEBROW TAG ── */
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; padding: 8px 18px; border: 1px solid rgba(122, 35, 49,0.25); border-radius: 4px; background: #F3EDE1; }

/* ── TITLE ── */
.hero-title { font-size: 56px; font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 18px; letter-spacing: -1px; }
.hero-title span { color: var(--primary); display: block; }

/* ── DESCRIPTION ── */
.hero-desc { font-size: 16px; line-height: 1.8; color: var(--text-light); max-width: 460px; margin-bottom: 28px; }

/* ── STATS ROW ── */
.hero-stats { display: flex; align-items: center; gap: 26px; margin-bottom: 30px; }
.hero-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--text); line-height: 1; }
.hero-stat span { font-size: 12px; color: var(--text-light); font-weight: 500; margin-top: 4px; display: block; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── CTA ROW ── */
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── VISUAL COLUMN ── */
.hero-visual { position: relative; opacity: 0; transform: translateY(30px) scale(0.96); transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s; }
.swiper-slide-active .hero-visual { opacity: 1; transform: translateY(0) scale(1); }
.hero-visual-glow { position: absolute; top: -40px; right: -40px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(122, 35, 49,0.12) 0%, transparent 70%); z-index: 0; }
.hero-img-card { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3.4; box-shadow: 0 24px 55px rgba(0,0,0,0.14); border: 1px solid var(--border); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.05); transition: transform 8s ease; }
.swiper-slide-active .hero-img-card img { transform: scale(1); }
.hero-floater { position: absolute; left: -24px; bottom: -22px; z-index: 3; display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); padding: 14px 20px; border-radius: 16px; box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.hero-floater-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; box-shadow: 0 8px 20px rgba(122, 35, 49,0.35); }
.hero-floater-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--text); }
.hero-floater-text span { font-size: 12px; color: var(--text-light); }

/* ── CUSTOM NAV BUTTONS ── */
.hero-nav { position: absolute; bottom: 30px; right: 100px; z-index: 10; display: flex; gap: 12px; }
.hero-prev, .hero-next { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 17px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s ease; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.hero-prev:hover, .hero-next:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.08); }

/* ── PAGINATION ── */
.hero-pagination { position: absolute !important; bottom: 40px !important; left: 100px !important; width: auto !important; display: flex; gap: 8px; z-index: 10; }
.hero-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(17,24,39,0.18); opacity: 1; border-radius: 50%; transition: 0.3s; }
.hero-pagination .swiper-pagination-bullet-active { width: 32px; border-radius: 30px; background: var(--primary); }

/* ── HERO RESPONSIVE ── */
@media (max-width: 1200px) { .hero-title { font-size: 46px; } .hero-slide-grid { padding: 140px 60px 60px; gap: 44px; } .hero-nav { right: 60px; } .hero-pagination { left: 60px; } }
@media (max-width: 992px) { .hero-slide-grid { grid-template-columns: 1fr; padding: 130px 40px 60px; gap: 44px; } .hero-visual { order: -1; max-width: 420px; margin: 0 auto; } .hero-text { text-align: center; } .hero-stats { justify-content: center; } .cta-row { justify-content: center; } .hero-nav { display: none; } .hero-pagination { left: 50%; transform: translateX(-50%); bottom: 20px !important; } }
@media (max-width: 640px) { .hero-title { font-size: 34px; } .hero-desc { font-size: 14.5px; margin-left: auto; margin-right: auto; } .hero-stats { gap: 18px; flex-wrap: wrap; } .hero-floater { left: 50%; transform: translateX(-50%); bottom: -18px; padding: 12px 18px; } }
@media (max-width: 480px) { .hero-title { font-size: 28px; } .hero-stat strong { font-size: 20px; } .hero-slide-grid { padding: 120px 20px 60px; } }

/* ── BUTTONS ── */
.cta-row { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn { position: relative; padding: 14px 30px; border: none; border-radius: 4px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.35s ease; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.primary { background: #7A2331; color: white; box-shadow: 0 10px 25px rgba(122, 35, 49,0.25); }
.primary:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(122, 35, 49,0.35); }
.outline { background: rgba(255,255,255,0.7); border: 1.5px solid rgba(122, 35, 49,0.3); color: #7a2331; }
.outline:hover { background: #7a2331; color: white; transform: translateY(-4px); }

/* ── SERVICES ── */
.services { padding: 120px 80px; background: #1C1712; position: relative; overflow: hidden; }
.services::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(122, 35, 49,0.5), transparent); }
.services-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow { display: inline-block; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 16px; border: 1px solid rgba(122, 35, 49,0.3); border-radius: 4px; }
.section-eyebrow-dark { display: inline-block; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 16px; border: 1px solid rgba(122, 35, 49,0.4); border-radius: 4px; background: rgba(122, 35, 49,0.08); }
.section-title { font-size: 52px; font-weight: 900; color: white; margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-sub { font-size: 16px; color: rgba(255,255,255,0.45); max-width: 500px; margin: 0 auto; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.coursesLink { color: gray; text-decoration: none; }
.coursesLink:hover { color: white; }

/* ── COURSE CARD ── */
.course-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); opacity: 0; transform: translateY(40px); }
.course-card.visible { opacity: 1; transform: translateY(0); }
.course-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(122, 35, 49,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(122, 35, 49,0.15), inset 0 1px 0 rgba(255,255,255,0.08); background: rgba(122, 35, 49,0.05); }
.course-img-wrap { position: relative; }
.course-img { height: 185px; background-size: cover; background-position: center; position: relative; }
.course-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,15,0.1) 0%, rgba(10,10,15,0.75) 100%); }
.course-icon-badge { position: absolute; bottom: -20px; left: 24px; width: 44px; height: 44px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; box-shadow: 0 8px 20px rgba(122, 35, 49,0.5); z-index: 2; }
.course-body { padding: 32px 24px 24px; }
.course-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); }
.course-body h3 { font-size: 22px; font-weight: 800; color: white; margin: 10px 0 16px; }
.course-list { list-style: none; padding: 0; margin-bottom: 22px; }
.course-list li { font-size: 13.5px; color: white; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 10px; }
.course-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.course-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: white; text-decoration: none; padding: 11px 20px; background: rgba(122, 35, 49,0.2); border: 1px solid rgba(122, 35, 49,0.35); border-radius: 10px; transition: 0.3s; }
.course-link:hover { background: var(--primary); border-color: var(--primary); transform: translateX(4px); }

/* ── ABOUT ── */
.about-section { padding: 120px 70px; background: #fff; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.about-content { max-width: 620px; }
.about-subtitle { color: #7a2331; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.about-content h2 { font-size: 48px; font-weight: 800; line-height: 1.25; color: #111; margin-bottom: 24px; }
.about-text { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 35px; }
.about-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 4px; text-decoration: none; background: linear-gradient(135deg, #7a2331, #B08D3E); color: white; font-size: 15px; font-weight: 600; box-shadow: 0 12px 25px rgba(122, 35, 49,0.25); transition: 0.35s ease; }
.about-btn:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(122, 35, 49,0.35); }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); transition: 0.4s ease; }
.about-image img:hover { transform: scale(1.02); }

/* ── WHY ── */
.why-section { padding: 120px 80px; background: #1C1712; }
.why-container { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 70px; max-width: 1300px; margin: 0 auto; }
.why-subtitle { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.why-left h2 { font-size: 44px; font-weight: 800; line-height: 1.2; color: white; margin-bottom: 22px; }
.why-text { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.why-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.why-btn { padding: 13px 22px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); border-radius: 10px; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: 0.3s; }
.why-btn.active, .why-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.feature-card { padding: 44px 40px; border-radius: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: 0.4s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(122, 35, 49,0.2); border-color: rgba(122, 35, 49,0.3); }
.feature-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 20px; background: linear-gradient(135deg, #7a2331, #B08D3E); color: white; font-size: 30px; margin-bottom: 26px; box-shadow: 0 10px 28px rgba(122, 35, 49,0.35); }
.feature-card h3 { font-size: 26px; font-weight: 800; color: white; margin-bottom: 16px; }
.feature-card p { font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.55); }

/* ── STUDENT OF THE MONTH ── */
.student-section { padding: 80px 20px; background: linear-gradient(180deg, #fff, #f8f9fc); }
.container { max-width: 1400px; margin: auto; }
.student-title { text-align: center; margin-bottom: 50px; }
.student-title h2 { font-size: 48px; font-weight: 800; color: #7A2331; text-transform: uppercase; letter-spacing: 2px; }
.student-title p { margin-top: 10px; color: #64748b; font-size: 17px; }
.student-swiper { padding: 20px 10px 60px; }
.student-card { background: #fff; border-radius: 25px; overflow: hidden; transition: .35s; height: auto; border: 1px solid rgba(127, 29, 29, .08); }
.student-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(127, 29, 29, .15); }
.card-top { height: 90px; background: linear-gradient(135deg, #7A2331, #9C3347); position: relative; }
.student-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 5px solid #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 25px; }
.card-content { padding: 75px 25px 25px; text-align: center; }
.card-content h3 { font-size: 22px; color: #1e293b; margin-bottom: 20px; }
.info { display: flex; flex-direction: column; gap: 12px; }
.info-item { background: #F7F4EC; padding: 12px; border-radius: 12px; }
.info-item span { display: block; color: #7A2331; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.info-item p { color: #475569; font-size: 14px; }
.swiper-button-next, .swiper-button-prev { color: #7A2331; width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: 0 8px 20px rgba(0, 0, 0, .1); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: 700; }
.swiper-pagination-bullet { width: 10px; height: 10px; background: #cbd5e1; opacity: 1; }
.swiper-pagination-bullet-active { background: #7A2331; width: 25px; border-radius: 20px; }
@media (max-width:768px) { .section-title h2 { font-size: 34px; } }

/* ── FOOTER ── */
.footer { position: relative; padding: 10px 10px 10px; background: #1C1712; color: white; overflow: hidden; }
.footer-content { position: relative; top: 30px; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 130px; max-width: 1200px; margin: auto; }
.footer-brand h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.footer-brand p { max-width: 400px; line-height: 1.8; color: rgba(255,255,255,0.7); }
.socials { margin-top: 25px; display: flex; gap: 14px; }
.socials a { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: white; font-size: 18px; transition: 0.35s ease; }
.socials a:hover { background: linear-gradient(135deg, #7a2331, #B08D3E); transform: translateY(-5px); }
.footer-col h3 { font-size: 22px; margin-bottom: 18px; }
.footer-col a { display: block; margin: 10px 0; text-decoration: none; color: rgba(255,255,255,0.7); transition: 0.3s ease; }
.footer-col a:hover { color: white; transform: translateX(6px); }
.footer-col p { margin: 10px 0; line-height: 1.6; color: rgba(255,255,255,0.65); }
.footer-bottom { margin-top: 60px; padding-top: 25px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 42px; } }
@media (max-width: 950px) { .navbar { padding: 15px 25px; } .menu-toggle { display: block; } nav { position: absolute; top: 90px; left: 0; width: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: 0 12px 24px rgba(0,0,0,0.06); flex-direction: column; gap: 25px; padding: 30px 0; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-20px); transition: 0.4s ease; } nav.active { max-height: 500px; opacity: 1; transform: translateY(0); } nav ul { flex-direction: column; align-items: center; } .hero { grid-template-columns: 1fr; padding: 100px 25px 60px; text-align: center; } .left { max-width: 100%; } .right { display: none; } .description { margin: 20px auto 0; } .cta-row { justify-content: center; } .about-container { grid-template-columns: 1fr; text-align: center; } .about-content { max-width: 100%; } .about-btn { justify-content: center; } .why-container { grid-template-columns: 1fr; text-align: center; } .why-buttons { justify-content: center; } .feature-icon { margin: 0 auto 26px; } .footer-content { grid-template-columns: 1fr; text-align: center; } .socials { justify-content: center; } .about-section { padding: 90px 25px; } .why-section { padding: 90px 25px; } }
@media (max-width: 768px) { .services { padding: 80px 20px; } .section-title { font-size: 34px; } .courses-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .brand { font-size: 42px; } .discover { font-size: 30px; } .description { font-size: 14px; line-height: 1.7; } .btn { width: 100%; padding: 14px 20px; font-size: 14px; } .about-content h2 { font-size: 30px; } .about-text { font-size: 14px; line-height: 1.8; } .about-btn { width: 100%; } .why-left h2 { font-size: 32px; } .feature-card { padding: 32px 24px; } .feature-card h3 { font-size: 22px; } .footer { padding: 60px 22px 24px; } .footer-brand h2 { font-size: 32px; } }
@media (max-width:1200px) { .hero { padding: 60px 50px; } .hero-title { font-size: 46px; } .hero-blob-wrap { width: 420px; height: 420px; } }
@media (max-width:950px) { .hero { grid-template-columns: 1fr; text-align: center; gap: 50px; } .hero-left { max-width: 100%; margin: auto; } .hero-desc { margin: auto; } .hero-meta { align-items: center; } .hero-stats { justify-content: center; } .hero-blob-wrap { width: 380px; height: 380px; } .card-1 { left: 0; } .card-2 { right: 0; } }
@media (max-width:600px) { .hero { padding: 80px 20px 40px; } .hero-title { font-size: 34px; line-height: 1.2; } .hero-desc { font-size: 14px; } .hero-blob-wrap { width: 280px; height: 280px; } .floating-card { padding: 10px 12px; } .floating-card strong { font-size: 11px; } .floating-card span { font-size: 10px; } .hero-stats { gap: 15px; flex-wrap: wrap; } .stat-divider { display: none; } }

/* ABOUT PAGE STYLING */
/* ── ABOUT STORY SECTION ── */
.cblaabt-story { display: grid; position: relative; top: 0px; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 120px 90px; background: #1C1712; }
.cblaabt-story-image img { width: 100%; border-radius: 24px; display: block; }
.cblaabt-tag { display: inline-block; padding: 8px 18px; border-radius: 4px; background: #F3EDE1; color: #7A2331; font-weight: 700; margin-bottom: 20px; }
.cblaabt-story-content h1 { font-size: 46px; margin: 15px 0; color: white; line-height: 1.2; }
.cblaabt-story-content p { color: #6B7280; line-height: 1.9; margin-bottom: 15px; }

/* ── WHY CHOOSE CBLA (ABOUT PAGE) ── */
.cblaabt-why { padding: 120px 90px; position: relative; background: #1C1712; }
.cblaabt-head { text-align: center; margin-bottom: 60px; }
.cblaabt-head span { color: #7A2331; font-weight: 700; }
.cblaabt-head h2 { color: #fff; font-size: 48px; margin-top: 15px; line-height: 1.2; }
.cblaabt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.cblaabt-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 40px; border-radius: 20px; text-align: center; transition: .3s; }
.cblaabt-box:hover { transform: translateY(-8px); border-color: #7A2331; }
.cblaabt-box i { font-size: 40px; color: #7A2331; margin-bottom: 15px; display: block; }
.cblaabt-box h4 { color: #fff; font-size: 18px; }

/* ── ACADEMY HIGHLIGHTS ── */
.cblaabt-highlights { padding: 120px 90px; position: relative; background: #fff; }
.cblaabt-highlight-content { max-width: 1000px; margin: auto; text-align: center; }
.cblaabt-highlight-content span { color: #7A2331; font-weight: 700; }
.cblaabt-highlight-content h2 { font-size: 48px; margin: 15px 0 50px; color: #1C1712; line-height: 1.2; }
.cblaabt-highlight-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.cblaabt-highlight-list div { background: #F7F4EC; padding: 25px; border-radius: 15px; font-weight: 600; color: #374151; }

/* ── DIRECTOR MESSAGE ── */
.cblaabt-director { position: relative; padding: 120px 90px; background: url("Images/image2.jpg") center/cover no-repeat; overflow: hidden; }
.cblaabt-director::before { content: ""; position: absolute; inset: 0; background: rgba(17, 24, 39, 0.75); background: linear-gradient(rgba(17,24,39,.85),rgba(17,24,39,.75) ); z-index: 1; }
.cblaabt-director-card { position: relative; z-index: 2; max-width: 900px; margin: auto; text-align: center; padding: 60px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; }
.cblaabt-director-card h2 { color: #fff; margin-bottom: 25px; font-size: 40px; }
.cblaabt-director-card p { color: #d1d5db; font-size: 18px; line-height: 1.9; }
.cblaabt-director-card h4 { color: #7A2331; margin-top: 25px; }

/* ── MISSION & VISION ── */
.imageBackground { width: 100%; }
.cblaabt-missionvision { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; padding: 120px 90px; position: relative; background: #fff; }
.cblaabt-mission-card, .cblaabt-vision-card { padding: 45px; border-radius: 22px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,.08); text-align: center; }
.cblaabt-mission-card i, .cblaabt-vision-card i { font-size: 50px; color: #7A2331; margin-bottom: 20px; }
.cblaabt-mission-card h3, .cblaabt-vision-card h3 { font-size: 28px; margin-bottom: 12px; color: #1C1712; }
.cblaabt-mission-card p, .cblaabt-vision-card p { color: #6B7280; line-height: 1.8; }

/* ABOUT PAGE RESPONSIVE */
@media (max-width:992px) { .cblaabt-story, .cblaabt-missionvision { grid-template-columns: 1fr; gap: 50px; padding: 90px 40px; } .cblaabt-story-content { text-align: center; } .cblaabt-story-content h1 { font-size: 38px; } .cblaabt-why, .cblaabt-highlights, .cblaabt-director { padding: 90px 40px; } .cblaabt-grid { grid-template-columns: repeat(2,1fr); } .cblaabt-head h2, .cblaabt-highlight-content h2 { font-size: 40px; } .cblaabt-director-card { padding: 45px; } }
@media (max-width:768px) { .cblaabt-story, .cblaabt-missionvision, .cblaabt-why, .cblaabt-highlights, .cblaabt-director { padding: 70px 20px; } .cblaabt-story { grid-template-columns: 1fr; gap: 35px; } .cblaabt-story-image { order: -1; } .cblaabt-story-content { text-align: center; } .cblaabt-story-content h1 { font-size: 32px; line-height: 1.3; } .cblaabt-story-content p { font-size: 14px; } .cblaabt-grid { grid-template-columns: 1fr; } .cblaabt-box { padding: 30px; } .cblaabt-head h2, .cblaabt-highlight-content h2 { font-size: 32px; line-height: 1.3; } .cblaabt-highlight-list { grid-template-columns: 1fr; } .cblaabt-director-card { padding: 35px 25px; } .cblaabt-director-card p { font-size: 15px; line-height: 1.8; } .cblaabt-mission-card, .cblaabt-vision-card { padding: 35px 25px; } .cblaabt-mission-card h3, .cblaabt-vision-card h3 { font-size: 24px; } }
@media (max-width:480px) { .cblaabt-tag { font-size: 12px; padding: 7px 15px; } .cblaabt-story-content h1 { font-size: 28px; } .cblaabt-head h2, .cblaabt-highlight-content h2 { font-size: 28px; } .cblaabt-box i { font-size: 34px; } .cblaabt-box h4 { font-size: 16px; } .cblaabt-director-card h2 { font-size: 28px; } .cblaabt-mission-card i, .cblaabt-vision-card i { font-size: 40px; } }

/* ── COURSES PAGE ── */
.active-link { color: white !important; }
.active-link::after { width: 100% !important; }

/* PAGE HERO */
.page-hero { position: relative; background: url("Images/image.jpg") center center / cover no-repeat; padding: 190px 100px 70px; overflow: hidden; border-bottom: 1px solid #EAE3D2; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(28, 23, 18, 0.85); z-index: 1; }
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.section-eyebrow-dark { color: #F5D06F; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0px; }
.page-hero-inner h1 { font-size: 52px; font-weight: 800; color: #fff; margin: 2px 0 8px; line-height: 1.1; }
.page-hero-inner h1 span { color: var(--primary); }
.page-hero-inner p { font-size: 16px; color: #E5E7EB; line-height: 1.8; max-width: 580px; }

/* Responsive */
@media (max-width: 768px) { .page-hero { padding: 140px 25px 60px; } .page-hero-inner h1 { font-size: 38px; } .page-hero-inner p { font-size: 15px; } .page-hero-shape { width: 250px; height: 250px; top: -50px; right: -50px; } }
@media (max-width: 480px) { .page-hero { padding: 120px 20px 50px; } .page-hero-inner h1 { font-size: 30px; } .page-hero-inner p { font-size: 14px; } }

/* COURSES GRID */
.courses-page-section { padding: 80px 100px 100px; background: #F7F4EC; }
.courses-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* COURSE CARD — FLIP ENABLED */
.crs-card { background: transparent; border: none; border-radius: 20px; overflow: visible; opacity: 0; transform: translateY(30px); transition: opacity 0.35s ease, transform 0.35s ease; perspective: 1600px; }
.crs-card.crs-visible { opacity: 1; transform: translateY(0); }
.crs-card-inner { position: relative; width: 100%; min-height: 540px; transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); transform-style: preserve-3d; }
.crs-card:hover .crs-card-inner { transform: rotateY(180deg); }
.crs-card-front, .crs-card-back { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 20px; overflow: hidden; }
.crs-card-front { background: white; border: 1px solid #E5E7EB; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.crs-card:hover .crs-card-front { box-shadow: 0 20px 50px rgba(122, 35, 49,0.1); border-color: rgba(122, 35, 49,0.25); }
.crs-card-back { transform: rotateY(180deg); background-size: cover; background-position: center; background-color: #1C1712; border: 1px solid #E5E7EB; }
.crs-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.crs-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5)); }
.crs-icon-badge { position: relative; margin: -22px 0 0 22px; width: 44px; height: 44px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; box-shadow: 0 6px 18px rgba(122, 35, 49,0.4); z-index: 2; }
.crs-body { padding: 16px 22px 22px; }
.crs-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); }
.crs-body h3 { font-size: 20px; font-weight: 700; color: #1C1712; margin: 8px 0 10px; }
.crs-body p { font-size: 13.5px; line-height: 1.7; color: #6B7280; margin-bottom: 14px; }
.crs-list { list-style: none; padding: 0; margin-bottom: 18px; border-top: 1px solid #EAE3D2; padding-top: 14px; }
.crs-list li { font-size: 13px; color: #374151; padding: 5px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #F7F4EC; }
.crs-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.crs-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.crs-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #6B7280; }
.crs-meta i { color: var(--primary); }
.crs-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: white; text-decoration: none; padding: 9px 18px; background: var(--primary); border-radius: 10px; transition: 0.3s; }
.crs-btn:hover { background: var(--primary-dark); transform: translateX(3px); }

/* CTA BANNER */
.crs-cta { background: var(--primary); padding: 80px 100px; text-align: center; }
.crs-cta-inner { max-width: 700px; margin: 0 auto; }
.crs-cta h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 16px; }
.crs-cta p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 36px; }
.crs-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.crs-cta .btn.primary { background: white; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.crs-cta .btn.primary:hover { background: #EAE3D2; transform: translateY(-3px); }
.crs-cta .btn.outline { border: 2px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.crs-cta .btn.outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }

/* RESPONSIVE - COURSES PAGE */
@media (max-width: 1100px) { .courses-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 950px) { .page-hero { padding: 70px 25px 50px; } .page-hero-inner h1 { font-size: 38px; } .courses-page-section { padding: 60px 22px; } .crs-cta { padding: 60px 22px; } .crs-cta h2 { font-size: 30px; } }
@media (max-width: 640px) { .courses-page-grid { grid-template-columns: 1fr; } .page-hero-inner h1 { font-size: 30px; } .crs-cta-btns { flex-direction: column; } .crs-cta .btn { width: 100%; justify-content: center; } .crs-card-inner { min-height: 500px; } }

/* ══════════════════════════════════════════
   AFFILIATIONS PAGE
   ══════════════════════════════════════════ */
/* ── PAGE HERO ── */
.aff-hero { position: relative; background: url("Images/image3.jpg") center center / cover no-repeat; padding: 190px 100px 70px; overflow: hidden; border-bottom: 1px solid #EAE3D2; }
.aff-hero::before { content: ""; position: absolute; inset: 0; background: rgba(28, 23, 18, 0.85); z-index: 1; }
.aff-hero::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(122, 35, 49,0.5), transparent); }
.aff-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.aff-hero-glow { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(122, 35, 49,0.18) 0%, transparent 70%); z-index: 0; }
.aff-hero-inner h1 { font-size: 54px; font-weight: 900; color: #fff; margin: 12px 0 18px; line-height: 1.1; }
.aff-hero-inner h1 span { color: var(--primary); }
.aff-hero-inner p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 560px; }

/* ── SBTE INTRO SECTION ── */
.sbte-intro { padding: 100px; background: #fff; display: grid; grid-template-columns: 1fr 0.6fr; gap: 80px; align-items: center; }
.sbte-intro-content span { display: inline-block; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 16px; border: 1px solid rgba(122, 35, 49,0.25); border-radius: 4px; background: #F3EDE1; }
.sbte-intro-content h2 { font-size: 44px; font-weight: 800; color: #1C1712; line-height: 1.2; margin-bottom: 24px; }
.sbte-intro-content h2 span { color: var(--primary); }
.sbte-intro-content p { font-size: 15.5px; line-height: 1.9; color: #6B7280; margin-bottom: 16px; }
.sbte-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; padding: 14px 24px; background: linear-gradient(135deg, #7A2331, #B08D3E); border-radius: 14px; color: white; font-weight: 700; font-size: 15px; box-shadow: 0 12px 30px rgba(122, 35, 49,0.3); }
.sbte-logo-wrap { display: flex; justify-content: center; align-items: center; }
.sbte-logo-card { background: #F7F4EC; border: 1px solid #E5E7EB; border-radius: 24px; padding: 50px 40px; text-align: center; width: 100%; }
.sbte-logo-card img { width: 200px; max-width: 100%; }
.sbte-logo-card p { font-size: 13px; color: #9CA3AF; margin-top: 18px; font-weight: 500; }

/* ── COURSE EXPLORER ── */
.aff-courses { padding: 100px; background: white; position: relative; }
.aff-courses::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(122, 35, 49,0.4), transparent); }
.aff-courses-header { text-align: center; margin-bottom: 60px; }
.aff-courses-header h2 { font-size: 48px; font-weight: 900; color: black; margin-top: 14px; line-height: 1.15; }
.aff-courses-header h2 span { color: var(--primary); }
.aff-courses-header p { color: rgba(66, 65, 65, 0.45); font-size: 16px; margin-top: 14px; }

/* Course Tab Pills */
.course-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.course-tab { padding: 10px 20px; border: 1px solid var(--primary); background: var(--primary); border-radius: 4px; color: rgba(255,255,255,0.6); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.course-tab:hover { border-color: rgba(122, 35, 49,0.4); color: rgba(255,255,255,0.9); }
.course-tab.active { background: var(--primary-); border-color: var(--primary); color: var(--primary); box-shadow: 0 6px 20px rgba(122, 35, 49,0.4); }
.course-tab i { font-size: 15px; }

/* ── AFFILIATIONS CTA ── */
.aff-cta { background: var(--primary); padding: 80px 100px; text-align: center; }
.aff-cta h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 16px; }
.aff-cta p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.aff-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.aff-cta .btn.primary { background: white; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.aff-cta .btn.primary:hover { background: #EAE3D2; transform: translateY(-3px); }
.aff-cta .btn.outline { border: 2px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.aff-cta .btn.outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }

/* RESPONSIVE - AFFILIATIONS PAGE */
@media (max-width: 1100px) { .sbte-intro { grid-template-columns: 1fr; gap: 50px; padding: 80px 50px; } .sbte-logo-wrap { display: none; } .aff-hero { padding: 80px 50px 60px; } .aff-courses { padding: 80px 50px; } .aff-hero-inner h1 { font-size: 42px; } .aff-cta { padding: 70px 50px; } }
@media (max-width: 768px) { .aff-hero { padding: 80px 22px 60px; } .aff-hero-inner h1 { font-size: 34px; } .sbte-intro { padding: 70px 22px; } .sbte-intro-content h2 { font-size: 32px; } .aff-courses { padding: 70px 22px; } .aff-courses-header h2 { font-size: 34px; } .course-detail-panel { padding: 28px 20px; } .panel-grid { grid-template-columns: 1fr; gap: 20px; } .panel-header { flex-direction: column; align-items: flex-start; gap: 14px; } .aff-cta { padding: 60px 22px; } .aff-cta h2 { font-size: 28px; } .aff-cta-btns { flex-direction: column; } .aff-cta .btn { width: 100%; justify-content: center; } }
@media (max-width: 500px) { .course-tabs { gap: 8px; } .course-tab { font-size: 12px; padding: 8px 14px; } }

/* ═══════════════════════════════════════════
   FACULTY PAGE
   ═══════════════════════════════════ */
/* Page Hero */
.faculty-hero { position: relative; background: url("Images/image.jpg") center center / cover no-repeat; padding: 140px 100px 70px; overflow: hidden; border-bottom: 1px solid #EAE3D2; }
.faculty-hero::before { content: ""; position: absolute; inset: 0; background: rgba(28, 23, 18, 0.85); z-index: 1; }
.faculty-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.faculty-hero-inner h1 { font-size: 52px; font-weight: 800; color: white; margin: 12px 0 18px; line-height: 1.1; }
.faculty-hero-inner h1 span { color: var(--primary); }
.faculty-hero-inner p { font-size: 16px; color: #6B7280; line-height: 1.8; max-width: 580px; }
.faculty-hero-shape { position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: #F3EDE1; z-index: 0; }

/* Faculty Grid */
.faculty-section { padding: 80px 100px 100px; background: #F7F4EC; }
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Faculty Card */
.faculty-card { background: white; border-radius: 24px; border: 1px solid #E5E7EB; overflow: hidden; transition: all 0.4s ease; position: relative; }
.faculty-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(122, 35, 49,0.16); border-color: rgba(122, 35, 49,0.3); }
.faculty-img-wrap { position: relative; height: 260px; overflow: hidden; }
.faculty-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.5s ease; }
.faculty-card:hover .faculty-img { transform: scale(1.08); }
.faculty-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,39,0.92) 0%, rgba(17,24,39,0.15) 55%, transparent 80%); }
.faculty-name-plate { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; }
.faculty-name-plate h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.faculty-role { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; color: #fff; background: var(--primary); padding: 6px 14px; border-radius: 4px; box-shadow: 0 6px 16px rgba(122, 35, 49,0.45); }
.faculty-info { padding: 22px 24px 24px; }
.faculty-info p { font-size: 13.5px; line-height: 1.75; color: #6B7280; margin-bottom: 18px; }
.faculty-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #EAE3D2; }
.faculty-meta span { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #6B7280; }
.faculty-meta i { color: var(--primary); }
.faculty-social { display: flex; gap: 8px; }
.faculty-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #F3EDE1; border-radius: 10px; color: var(--primary); font-size: 15px; transition: 0.3s; }
.faculty-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* CTA */
.faculty-cta { background: var(--primary); padding: 80px 100px; text-align: center; }
.faculty-cta h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 16px; }
.faculty-cta p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.faculty-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.faculty-cta .btn.primary { background: white; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.faculty-cta .btn.primary:hover { background: #EAE3D2; transform: translateY(-3px); }
.faculty-cta .btn.outline { border: 2px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.faculty-cta .btn.outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }

/* ── CONTACT PAGE STYLES ── */
/* ── INFO STRIP ── */
.contact-strip { background: var(--primary); margin-bottom: 80px; padding: 0 100px; }
.contact-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
.strip-item { display: flex; align-items: center; gap: 18px; padding: 32px 0; border-right: 1px solid rgba(255,255,255,0.15); }
.strip-item:last-child { border-right: none; padding-left: 40px; }
.strip-item:nth-child(2) { padding-left: 40px; }
.strip-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; flex-shrink: 0; }
.strip-text strong { display: block; font-size: 14px; font-weight: 700; color: white; margin-bottom: 3px; }
.strip-text span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ── MAIN SECTION ── */
.contact-main { padding: 190px 100px; background: #1C1712; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; max-width: 1200px; margin: 0 auto; }

/* LEFT — INFO CARDS */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-heading { margin-bottom: 8px; }
.contact-info-heading h2 { font-size: 36px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 10px; }
.contact-info-heading p { font-size: 14.5px; color: #6B7280; line-height: 1.8; }
.info-card { background: white; border-radius: 18px; padding: 26px; border: 1px solid #E5E7EB; display: flex; align-items: flex-start; gap: 18px; transition: 0.3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(122, 35, 49,0.1); border-color: rgba(122, 35, 49,0.2); }
.info-card-icon { width: 52px; height: 52px; border-radius: 14px; background: #F3EDE1; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.info-card-text h4 { font-size: 15px; font-weight: 700; color: #1C1712; margin-bottom: 6px; }
.info-card-text p, .info-card-text a { font-size: 13.5px; color: #6B7280; line-height: 1.7; text-decoration: none; display: block; }
.info-card-text a:hover { color: var(--primary); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: #F7F4EC; border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: center; color: #374151; font-size: 16px; text-decoration: none; transition: 0.3s; }
.social-row a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }

/* RIGHT — FORM */
.contact-form-wrap { background: white; border-radius: 24px; padding: 50px; border: 1px solid #E5E7EB; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.contact-form-wrap h2 { font-size: 28px; font-weight: 800; color: #1C1712; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: #6B7280; margin-bottom: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: #374151; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border: 1.5px solid #E5E7EB; border-radius: 12px; font-size: 14px; font-family: 'Inter', sans-serif; color: #1C1712; background: #F7F4EC; outline: none; transition: 0.25s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(122, 35, 49,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; padding: 16px; background: var(--primary); color: white; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(122, 35, 49,0.35); }
.form-note { text-align: center; font-size: 12.5px; color: #9CA3AF; margin-top: 14px; }

/* ── MAP SECTION ── */
.contact-map-section { padding: 0 100px 100px; background: #F7F4EC; }
.contact-map-section h2 { font-size: 32px; font-weight: 800; color: #1C1712; margin-bottom: 6px; }
.contact-map-section p { font-size: 14.5px; color: #6B7280; margin-bottom: 30px; }
.map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid #E5E7EB; box-shadow: 0 8px 30px rgba(0,0,0,0.07); }
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── CAMPUS CARDS ── */
.campus-section { padding: 50px 100px 100px; background: #F7F4EC; }
.campus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.campus-card { background: white; border-radius: 20px; border: 1px solid #E5E7EB; padding: 36px; display: flex; gap: 20px; align-items: flex-start; transition: 0.3s; }
.campus-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(122, 35, 49,0.1); border-color: rgba(122, 35, 49,0.2); }
.campus-num { width: 48px; height: 48px; border-radius: 12px; background: var(--primary); color: white; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.campus-info h3 { font-size: 18px; font-weight: 700; color: #1C1712; margin-bottom: 8px; }
.campus-info p { font-size: 13.5px; color: #6B7280; line-height: 1.7; }
.campus-section-header { margin-bottom: 32px; }
.campus-section-header h2 { font-size: 32px; font-weight: 800; color: #1C1712; margin-bottom: 6px; }
.campus-section-header p { font-size: 14.5px; color: #6B7280; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .contact-hero { padding: 70px 40px 60px; } .contact-strip { padding: 0 40px; } .contact-main { padding: 70px 40px; } .contact-map-section, .campus-section { padding: 0 40px 70px; } }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-strip-inner { grid-template-columns: 1fr; } .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 22px 0; } .strip-item:nth-child(2), .strip-item:last-child { padding-left: 0; } .campus-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .contact-hero { padding: 60px 22px 50px; } .contact-hero-inner h1 { font-size: 36px; } .contact-strip { padding: 0 22px; } .contact-main { padding: 50px 22px; } .contact-map-section, .campus-section { padding: 0 22px 50px; } .contact-form-wrap { padding: 30px 22px; } .form-row { grid-template-columns: 1fr; } }
.dae-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
.dae-strip-item { display: flex; align-items: center; gap: 18px; padding: 32px 0; border-right: 1px solid rgba(255,255,255,0.15); }
.dae-strip-item:last-child { border-right: none; }
.dae-strip-item:nth-child(n+2) { padding-left: 40px; }
.dae-strip-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; flex-shrink: 0; }
.dae-strip-text strong { display: block; font-size: 18px; font-weight: 800; color: white; margin-bottom: 2px; }
.dae-strip-text span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* Photo bento gallery — "What We Offer" */
.dae-gallery { padding: 110px 100px; background: #fff; }
.dae-gallery-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.dae-gallery-header span { display: inline-block; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 16px; border: 1px solid rgba(122, 35, 49,0.25); border-radius: 4px; background: #F3EDE1; }
.dae-gallery-header h2 { font-size: 44px; font-weight: 800; color: #1C1712; line-height: 1.2; margin-bottom: 14px; }
.dae-gallery-header h2 span { color: var(--primary); }
.dae-gallery-header p { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.dae-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 22px; max-width: 1300px; margin: 0 auto; }
.dae-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.dae-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.dae-photo:hover img { transform: scale(1.08); }
.dae-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,20,0.85) 0%, rgba(13,13,20,0.05) 55%, transparent 75%); }
.dae-photo-caption { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; }
.dae-photo-caption span { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: white; background: var(--primary); padding: 5px 12px; border-radius: 4px; margin-bottom: 8px; }
.dae-photo-caption p { color: white; font-size: 15px; font-weight: 700; line-height: 1.3; }
.dae-photo.dae-tall { grid-row: span 2; }
.dae-photo.dae-wide { grid-column: span 2; }
@media (max-width: 1100px) { .dae-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px 220px; } .dae-photo.dae-tall { grid-row: span 1; } .dae-photo.dae-wide { grid-column: span 2; } }
@media (max-width: 640px) { .dae-strip { padding: 0 22px; } .dae-strip-inner { grid-template-columns: 1fr; } .dae-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 22px 0 !important; padding-left: 0 !important; } .dae-gallery { padding: 70px 22px; } .dae-gallery-header h2 { font-size: 30px; } .dae-bento { grid-template-columns: 1fr; grid-template-rows: none; } .dae-photo, .dae-photo.dae-tall, .dae-photo.dae-wide { grid-column: span 1; height: 240px; } }

/* Campus tour — photo + copy split, reusing about-section proportions */
.dae-tour { padding: 110px 100px; background: #F7F4EC; }
.dae-tour-container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1300px; margin: 0 auto; }
.dae-tour-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.dae-tour-image img { width: 100%; display: block; }
.dae-tour-content span { display: inline-block; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.dae-tour-content h2 { font-size: 40px; font-weight: 800; color: #1C1712; line-height: 1.25; margin-bottom: 20px; }
.dae-tour-content h2 span { color: var(--primary); }
.dae-tour-content p { font-size: 15px; line-height: 1.9; color: var(--text-light); margin-bottom: 20px; }
.dae-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; padding: 14px 24px; background: linear-gradient(135deg, #7A2331, #B08D3E); border-radius: 14px; color: white; font-weight: 700; font-size: 14.5px; box-shadow: 0 12px 30px rgba(122, 35, 49,0.3); }
@media (max-width: 992px) { .dae-tour { padding: 80px 25px; } .dae-tour-container { grid-template-columns: 1fr; text-align: center; gap: 40px; } .dae-tour-content h2 { font-size: 32px; } }