/* =============================================
   YASPENTERUFI — Landing Page Stylesheet
   ============================================= */

/* ===== Variables & Theme ===== */
:root {
    --primary-blue: #0A4A7A;
    --secondary-blue: #1472B7;
    --light-blue: #E8F4FD;
    --accent-orange: #FF5722;
    --accent-orange-dark: #E64A19;
    --accent-yellow: #FFB800;
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-dark: #052A46;
    --bg-darker: #031A2C;
    --text-dark: #1A1A2E;
    --text-body: #4A4A68;
    --text-muted: #7A7A8E;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(10, 74, 122, 0.12);
    --shadow-xl: 0 24px 48px rgba(10, 74, 122, 0.18);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.relative-z { position: relative; z-index: 2; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    outline: none;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 87, 34, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-giant { padding: 20px 44px; font-size: 1.2rem; }
.btn-nav {
    background: var(--secondary-blue);
    color: white;
    padding: 10px 22px;
    font-size: 0.9rem;
}
.btn-nav:hover { background: var(--primary-blue); transform: translateY(-2px); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}
.btn-pulse { animation: pulse 2.2s infinite; }

/* ===== Section Header ===== */
.section-badge {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-head { margin-bottom: 50px; }

/* ===== Animations ===== */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.visible { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===========================================
   SECTION 1: NAVBAR
   =========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.navbar.scrolled .logo-title { color: var(--primary-blue); }
.navbar.scrolled .logo-sub { color: var(--text-muted); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-link { color: var(--text-dark); }

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -2px; left: 0;
    background: var(--accent-orange);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger-line { background: var(--text-dark); }

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   SECTION 2: HERO
   =========================================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 42, 70, 0.92) 0%,
        rgba(10, 74, 122, 0.75) 50%,
        rgba(10, 74, 122, 0.5) 100%
    );
}



.hero-text-wrapper {
    max-width: 720px;
    color: white;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.badge-light {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.12;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Stats Bar */
.hero-stats {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.15);
    z-index: 2;
    flex-shrink: 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 24px 0;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 0 40px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ===========================================
   SECTION 3: TENTANG
   =========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.85;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.benefit-item { display: flex; gap: 18px; }

.icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--light-blue);
    color: var(--secondary-blue);
    display: flex;
    align-items: center; justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition);
}
.benefit-item:hover .icon-box {
    background: var(--secondary-blue);
    color: white;
    transform: scale(1.08);
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.benefit-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-image-wrapper { position: relative; }

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.04) brightness(1.02) saturate(1.05);
}

.image-decoration {
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 3px solid var(--accent-yellow);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.experience-card {
    position: absolute;
    bottom: -24px; left: -24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(0,0,0,0.05);
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}
.exp-text {
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    font-size: 0.95rem;
}

/* ===========================================
   GALLERY - Strip Layout
   =========================================== */
.gallery-strip-wrapper {
    overflow: hidden;
}

.gallery-strip {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 14px;
}

.gallery-strip .strip-photo {
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
}

.gallery-strip .strip-photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    transition: transform 0.4s ease;
    /* CSS image enhancement for low-res photos */
    image-rendering: auto;
    filter: contrast(1.04) brightness(1.02);
}

.gallery-strip .strip-photo:hover img {
    transform: scale(1.08);
}

.gallery-strip .strip-photo span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===========================================
   FOUNDER'S MESSAGE
   =========================================== */
.founder-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-col { text-align: center; }

.founder-avatar-wrapper {
    width: 200px; height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    box-shadow: var(--shadow-md);
}

.founder-avatar {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.founder-name { font-size: 1.4rem; margin-bottom: 4px; }
.founder-title {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.founder-quote-col {
    position: relative;
    padding: 40px 44px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-yellow);
}

.quote-icon-bg {
    position: absolute;
    top: 16px; left: 44px;
    font-size: 48px;
    color: var(--accent-yellow);
    opacity: 0.3;
}

.founder-blockquote {
    position: relative; z-index: 2;
}

.founder-blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 12px;
}
.founder-blockquote p:last-child { margin-bottom: 0; }

/* ===========================================
   SMP IT SECTION
   =========================================== */
.smp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.smp-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.smp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.smp-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.smp-info-item i {
    font-size: 28px;
    color: var(--secondary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.smp-info-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.smp-info-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.smp-highlights {
    margin-bottom: 28px;
}

.smp-highlights h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-body);
}

.checklist li i {
    color: var(--secondary-blue);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.smp-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.smp-photo-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.smp-photo-item img {
    width: 100%; height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    filter: contrast(1.04) brightness(1.02) saturate(1.05);
}
.smp-photo-item:hover img { transform: scale(1.06); }

/* ===========================================
   SMKS JURUSAN CARDS
   =========================================== */
.majors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.major-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.major-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.major-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.major-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.5s ease;
    /* Enhance photo quality via CSS */
    filter: contrast(1.03) brightness(1.02) saturate(1.05);
}
.major-card:hover .major-image-wrapper img { transform: scale(1.06); }

.major-label {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.major-body { padding: 28px; }

.major-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
}

.major-body h3 i { color: var(--secondary-blue); }

.major-body > p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 20px;
}

.major-fee {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.major-fee span {
    font-size: 0.88rem;
    color: var(--text-body);
}
.major-fee strong { color: var(--text-dark); }

.major-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-blue);
    color: var(--secondary-blue);
    padding: 6px 13px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
}

/* SMK Activity Strip */
.smk-activity {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.smk-activity-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.smk-activity-title i { color: var(--accent-orange); }

.smk-activity-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.strip-photo {
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
}

.strip-photo img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    transition: transform 0.4s ease;
}
.strip-photo:hover img { transform: scale(1.08); }

.strip-photo span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===========================================
   PPDB SECTION
   =========================================== */
.ppdb-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D5A94 50%, var(--secondary-blue) 100%);
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

.ppdb-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/akreditasi sekolah.jpeg') center/cover no-repeat;
    opacity: 0.06;
    mix-blend-mode: overlay;
}

.ppdb-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 16px;
}

.ppdb-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 36px;
    opacity: 0.9;
    line-height: 1.8;
}

.ppdb-info-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ppdb-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.ppdb-info-item i {
    font-size: 36px;
    color: var(--accent-yellow);
}

.ppdb-info-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.ppdb-info-item span {
    font-size: 0.88rem;
    opacity: 0.85;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 950px;
    margin: 0 auto 50px;
}

.req-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    transition: var(--transition);
}
.req-item:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-4px);
}

.req-item i {
    font-size: 32px;
    color: var(--accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.req-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.req-item span {
    font-size: 0.82rem;
    opacity: 0.8;
}

.ppdb-cta-area { margin-top: 10px; }

.ppdb-note {
    margin-top: 16px;
    font-size: 0.88rem;
    opacity: 0.7;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 70px; height: auto;
    margin-bottom: 18px;
    object-fit: contain;
}

.footer-brand-name {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.footer-address {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.work-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
}
.footer-links a:hover { color: var(--accent-orange); transform: translateX(4px); }
.footer-links a i { font-size: 14px; }

.social-col p {
    color: #94A3B8;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: #94A3B8;
    transition: var(--transition);
    font-size: 0.9rem;
}
.social-btn:hover { background: var(--accent-orange); color: white; }
.social-btn i { font-size: 20px; }

.footer-bottom {
    background: var(--bg-darker);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.85rem;
}

.footer-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.85rem;
}
.footer-download-btn:hover { color: var(--accent-orange); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 2.8rem; }
    .about-container { grid-template-columns: 1fr; gap: 50px; }
    .about-image-wrapper { max-width: 500px; margin: 0 auto; }
    .experience-card { bottom: 16px; left: 16px; }
    .founder-container { grid-template-columns: 1fr; text-align: center; }
    .founder-quote-col { border-left: none; border-top: 4px solid var(--accent-yellow); }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
    .smp-content { grid-template-columns: 1fr; }
    .smk-activity-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 70px 0; }

    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: 0.4s ease;
    }
    .nav-links.active { opacity: 1; pointer-events: all; }
    .nav-links .nav-link { color: var(--text-dark); font-size: 1.1rem; }

    .mobile-menu-btn { display: flex; }

    .hero-title { font-size: 2.2rem; }
    .hero-text-wrapper { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .stats-container { flex-wrap: wrap; gap: 16px; }
    .stat-item { padding: 8px 20px; }
    .stat-divider { display: none; }

    .gallery-strip { grid-template-columns: repeat(3, 1fr); }

    .smp-info-grid { grid-template-columns: 1fr; }

    .majors-grid { grid-template-columns: 1fr; gap: 24px; }

    .smk-activity-strip { grid-template-columns: repeat(3, 1fr); }

    .requirements-grid { grid-template-columns: 1fr 1fr; }

    .ppdb-title { font-size: 2.2rem; }

    .footer-container { grid-template-columns: 1fr; gap: 40px; }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-large { width: 100%; justify-content: center; }
    .requirements-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr 1fr; }
    .smk-activity-strip { grid-template-columns: 1fr 1fr; }
    .smp-photos-grid { grid-template-columns: 1fr; }
    .smp-photo-item img { height: 180px; }
    .logo-sub { display: none; }
}
