/* ===================================================================
   1. IMPORTS & SETUP (ORIGINAL)
   =================================================================== */
@import url("achievement.css");
@import url("excul.css");
@import url("facility.css");
@import url("sejarah.css");
@import url("visi-misi.css");
@import url("teacher.css");
@import url("contact.css");
@import url("news-single.css");
@import url("news.css");
@import url("profil.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    /* --- Original Variables --- */
    --primary-color: #017b3a;
    --primary-color-rgb: 1, 123, 58;
    --accent-color: #fdb913;
    --dark-text: #333;
    --light-text: #f0f0f0;
    --body-text: #555;
    --body-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --header-height: 4.5rem;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* --- Modern Content Variables (Added for Hero/Footer) --- */
    --primary-dark: #043a1d;
    --primary-light: #e6f2eb;
    --accent-hover: #e0a108;
    --text-muted: #9ca3af;
    --bg-footer: #0a1f14;
    --radius-full: 9999px;
    --radius-lg: 24px;
}

/* ===================================================================
   2. GLOBAL RESETS
   =================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background-color: var(--body-bg);
    color: var(--body-text);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* ===================================================================
   3. HEADER & NAVIGATION (RESTORED TO ORIGINAL 100%)
   =================================================================== */
.header-container {
    display: flex;
    align-items: center;
    padding: 0 7%;
    width: 100%;
    height: var(--header-height);
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.pe-icon {
    padding-right: 8px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    margin-right: 15px;
}

.school-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text);
    padding: 5px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-toggle,
.nav-close {
    display: none;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--accent-color);
}

.nav-link.active:hover {
    color: var(--primary-color);
}

.nav-link.active:hover::after {
    background-color: var(--accent-color);
}

/* --- MODIFIED LOGIN BUTTON (Gradient) --- */
.nav-button {
    /* Gradient: Hijau Primary ke Hijau Gelap */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none !important;
}

.nav-button::after {
    display: none !important;
}

.nav-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-button:hover .highlight {
    color: #fff;
}

.profile-image {
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown .dropdown-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text);
    padding: 5px;
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown .dropdown-link.active {
    color: var(--primary-color);
}

.dropdown .dropdown-link::after {
    bottom: -3px;
}

.dropdown:hover .dropdown-link {
    color: var(--primary-color);
}

.dropdown .dropdown-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.dropdown:hover .dropdown-link::after {
    width: 100%;
}

.dropdown .dropdown-link.active::after {
    width: 100%;
}

.nav-menu .dropdown.d-flex .dropdown-link::after {
    display: none;
}

.nav-menu .dropdown.d-flex:hover .dropdown-link {
    color: var(--primary-color);
}

.nav-menu .dropdown.d-flex .dropdown-link.active {
    color: var(--dark-text);
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: auto;
    left: 0;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    width: 180px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-menu li:last-child:not(.nav-close):not(:nth-child(10)) .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text);
}

.dropdown-menu li a:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    color: var(--primary-color);
}

.dropdown-menu li a.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
}

.dropdown-item-logout {
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-item-dashboard,
.dropdown-item-logout {
    text-align: left;
    padding: 10px 15px !important;
    margin: 0;
    width: 100%;
    border-radius: 0;
    font-weight: 500 !important;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-item-dashboard:hover {
    color: var(--primary-color) !important;
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
}

.dropdown-item-logout:hover {
    color: #fff !important;
    background-color: #dc3545 !important;
}

.dropdown-item-dashboard::after,
.dropdown-item-logout::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 10px;
    background-color: var(--accent-color);
}

.dropdown-item-dashboard:hover::after,
.dropdown-item-logout:hover::after {
    width: 0;
}

.dropdown-item-dashboard {
    color: var(--dark-text) !important;
}

.dropdown-item-dashboard.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
}

.dropdown-item-dashboard.active::after {
    width: 0;
    background-color: transparent;
}

.dropdown-item-logout {
    color: var(--dark-text) !important;
}

.dropdown-item-dashboard:hover,
.dropdown-item-logout:hover {
    box-shadow: none;
}

@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }

    .nav-menu .dropdown.d-flex:hover .dropdown-link::after {
        content: none;
    }
}

/* ===================================================================
   4. RESPONSIVE DESIGN (Original Mobile Styles)
   =================================================================== */
@media screen and (max-width: 1099px) {

    .section-container,
    .header-container {
        padding: 0 1.5rem;
    }

    .school-name {
        font-size: 18px;
    }

    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(65%, 250px);
        height: 100%;
        background-color: var(--card-bg);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        padding: 4rem 1rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    .dropdown.d-flex .dropdown-link img {
        height: 30px;
        width: 30px;
        margin-right: 8px;
    }

    .dropdown.d-flex .dropdown-link {
        display: flex !important;
        align-items: center;
        width: 100%;
    }

    .nav-link {
        padding: 8px 10px;
        width: 100%;
        font-size: 15px;
        font-weight: 500;
        color: var(--dark-text);
        border-radius: var(--border-radius);
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--card-bg);
        color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .nav-button:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        color: #fff !important;
        transform: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .dropdown {
        position: static;
        width: 100%;
        overflow: hidden;
    }

    .dropdown .dropdown-link {
        padding: 8px 10px;
        font-size: 15px;
    }

    .dropdown .dropdown-link.active {
        background-color: var(--card-bg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        background-color: transparent;
        border-radius: 0;
        padding: 3px 0 8px 15px;
        max-height: 500px;
        transition: none;
    }

    .dropdown-menu li a {
        padding: 8px 10px;
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: var(--body-text);
        border-radius: var(--border-radius);
        transition: all 0.2s ease;
        background-color: transparent;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a.active {
        background-color: #e3e6e8;
        color: var(--primary-color);
    }

    .dropdown.submenu-active .dropdown-menu {
        max-height: 500px;
        padding: 3px 0 8px 15px;
        transition: none;
    }

    .dropdown.submenu-active .arrow {
        transform: rotate(180deg);
    }

    .dropdown-item-dashboard,
    .dropdown-item-logout {
        padding: 8px 10px !important;
        font-size: 15px !important;
        border-radius: var(--border-radius);
    }

    .nav-button {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 20px !important;
    }

    .welcome-section .section-container {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-image {
        flex: 1;
        min-width: 300px;
    }

    .welcome-text {
        flex: 1.5;
        min-width: 300px;
    }

    .dropdown-item-dashboard::after,
    .dropdown-item-logout::after {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1099px) {

    .section-container,
    .header-container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2rem);
    }

    .welcome-section .section-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .welcome-image {
        flex: 0 0 35%;
        min-width: 250px;
    }

    .welcome-image img {
        width: 100%;
        object-fit: cover;
    }

    .welcome-text {
        flex: 1 1 60%;
        min-width: 300px;
    }
}

/* ===================================================================
   5. MODERN CONTENT STYLES (Hero, Cards, Footer)
   =================================================================== */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    padding-bottom: 8rem;
    background-image: url("/img/hero_bg.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(1, 123, 58, 0.745) 40%, rgba(253, 187, 19, 0.514) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f3f4f6;
    -webkit-border-radius: var(--radius-full);
    -moz-border-radius: var(--radius-full);
    -ms-border-radius: var(--radius-full);
    -o-border-radius: var(--radius-full);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-inline: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    /* Gradient: Kuning (Accent) ke Kuning Gelap/Oranye */
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    /* Reverse gradient saat hover */
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Sections */
.content-section {
    padding: 90px 0;
    position: relative;
}

/* FIX SCROLL OFFSET: Memastikan anchor link scroll tidak tertutup header */
#welcome {
    /* Tinggi header + sedikit extra space */
    scroll-margin-top: calc(var(--header-height));
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

/* Welcome */
.welcome-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-img-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background-color: var(--primary-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
}

.blob-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.welcome-text {
    text-align: left;
}

.greeting-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.welcome-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--body-text);
}

.headmaster-name {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

/* Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-light);
    z-index: -1;
    transition: height 0.4s ease;
}

.program-card:hover::after {
    height: 100%;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.program-card:hover .program-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: rotateY(180deg);
}

.program-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

/* Video */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* News */

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* --- Perubahan untuk single item news --- */
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
}

.read-more:hover {
    gap: 10px;
}

.news-button {
    padding: 16px 40px;
    color: #000 !important;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: 0.3s;
    text-decoration: none;
}

.news-button:hover {
    color: #3a8707 !important;
}

/* Footer */
/* ========================================
   MODERN FOOTER STYLE
   ======================================== */

.site-footer {
    background-color: var(--primary-color); 
    color: #e2e8f0;
    padding: 5rem 0 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #017b3a), var(--accent-color, #fdb913));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* --- Kolom Footer --- */
.footer-column h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

/* Garis bawah judul kolom */
.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color, #fdb913);
    border-radius: 2px;
}

.footer-column p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* List Link & Kontak */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color, #fdb913);
    transform: translateX(5px);
}

.footer-column.contact i {
    color: var(--accent-color, #fdb913);
    margin-right: 12px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-column.social {
    margin-left: 2rem;
}

.social-icons {
    gap: 15px;
    margin-top: 0.5rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    background-color: var(--accent-color, #fdb913);
    color: var(--bg-footer, #0a1f14);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 185, 19, 0.4);
    border-color: transparent;
}

/* --- Footer Bottom --- */
.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px; 
    font-size: 0.9rem;
    color: #cecece;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 768px) {
    .site-footer {
        padding-top: 4rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1.9rem;
        gap: 1rem;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-column.social {
        margin: 0;
    }
}

/* Mobile Adjustments for Modern Content */
@media screen and (max-width: 1099px) {
    .welcome-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-img-container {
        order: -1;
    }

    .blob-img {
        width: 100%;
        height: auto;
        max-height: 250px;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .glass-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .program-card {
        padding: 2rem 1.5rem;
        font-size: 0.8rem;
    }
}