/* Global Styles & Variables */

/* --- GLOBAL BOX-SIZING (Prevents Mobile Overflow) --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* --- NAVBAR STYLES --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6%;
    /* Solid dark background for better performance */
    background: rgba(15, 23, 42, 0.95);
    position: fixed;
    /* Keeps it at the top when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    /* Ensures it stays above all other content */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
    /* Forces the navbar and dropdown above EVERYTHING */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    /* Uses your pinkish-red theme color */
}


:root {
    --primary: #ff2a5f;
    /* Pinkish-red from your inspiration images */
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
}

body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    /* Prevents horizontal scrollbar during animations */
}

/* Standardized Section Padding */
section {
    padding: 100px 10%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #94a3b8;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* Button Styling (Inspired by your screenshots) */
.btn {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s,
        background-color 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #e01e4c;
}

/* --- SECTION 3: PAST EVENTS MULTI-GALLERY --- */
.past-events {
    align-items: center;
}

.gallery-panel {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
    /* Space between different events */
}

.gallery-header {
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.gallery-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
}

.gallery-header p {
    margin: 0;
    color: #94a3b8;
}

/* New Landscape Swiper Settings */
.gallerySwiper {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
}

.gallerySwiper .swiper-slide {
    width: 300px;
    /* Landscape width */
    height: 200px;
    /* Landscape height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    /* Remove the dummy background gradients so images show properly */
    background: #1e293b;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures photos fill the landscape box perfectly without stretching */
    transition: transform 0.3s ease;
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover for a premium feel */
}

/* Dummy placeholder colors */
.slide-1 {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.slide-2 {
    background: linear-gradient(135deg, #4b1248, #f0c27b);
}

.slide-3 {
    background: linear-gradient(135deg, #0f2027, #203a43);
}

/* --- SECTION 4: MEMBERS --- */
.members {
    background: #1e293b;
    text-align: center;
}

/* New Swiper Container for Members */
.membersSwiper {
    width: 100%;
    padding: 20px 0 50px 0;
    /* Extra padding at the bottom for scroll dots */
}

/* Lock the width of each card so they don't stretch */
.membersSwiper .swiper-slide {
    width: 200px;
    /* Wider cards for a more premium look */
    height: auto;
    transform: translateZ(0);
    will-change: transform;
}

.member-profile {
    background: #1e293b;
    padding: 30px 15px;  
    border-radius: 20px;
    height: 100%;
    /* Ensures all cards match height if text wraps */
    box-sizing: border-box;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.member-profile:hover {
    transform: translateY(-8px);
    border-color: rgba(165, 81, 99, 0.4);
}

.avatar {
    width: 130px;
    height: 173px; /* 3:4 ratio */
    background: transparent;
    border-radius: 12px;
    margin: 0 auto 10px auto;
    object-fit: cover;
    object-position: top center;
    border: none;
    padding: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.member-profile h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

/* Style the dots at the bottom */
.swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
    padding: 120px 10% 20px 10%;
    /* 120px pushes it safely below the sticky navbar */
    font-size: 0.95rem;
    color: #94a3b8;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 10px;
    color: #475569;
}

/* Hide hamburger icon on large screens */
.hamburger {
    display: none;
}

/* --- TABLET RESPONSIVENESS (Screens between 769px and 1024px) --- */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 12px 3%;
    }
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* --- RESPONSIVENESS FIXES (Triggers when screen is smaller than 768px) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    .logo {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    /* Show the Hamburger */
    .hamburger {
        display: block;
    }

    /* Turn the links into a hidden dropdown menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        /* Less transparent so text is easy to read */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        gap: 8px;
    }
    
    .nav-links a svg {
        margin-right: 0;
        margin-bottom: 0;
    }

    /* Fix the Breadcrumbs & Section Padding */
    .breadcrumbs {
        padding-top: 100px;
        padding-left: 5%;
        padding-right: 5%;
    }

    section {
        padding: 80px 5%;
    }

    .gallery-panel {
        padding: 25px;
    }
}

/* --- NEW POST GRID LAYOUT --- */
.post-grid {
    display: grid;
    /* This creates a responsive grid: 2 columns on desktop, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.post-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    aspect-ratio: 16/9;
    /* Keeps all images uniformly sized */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.post-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.post-card .excerpt {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes the meta text to the bottom if excerpts are different lengths */
    margin-bottom: 15px;
}

.post-card .meta {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}


/* --- DETAILED PROFILE CARDS --- */

/* 1. The List Container */
.detailed-team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
    width: 100%;
}

/* 2. The Card — no padding, photo bleeds to the edge */
.profile-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden; /* Makes photo bleed into card corners */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Desktop: photo column on the left, content on the right */
@media (min-width: 768px) {
    .profile-card {
        flex-direction: row;
        align-items: stretch;
    }
}

/* 3. The Left Sidebar — photo stretches to full card height */
.profile-sidebar {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.15);
}

/* Mobile sidebar: horizontal strip layout */
@media (max-width: 767px) {
    .profile-sidebar {
        flex-direction: row;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(0, 0, 0, 0.2);
        align-items: stretch;
        width: 100%;
    }
}

/* Photo fills the full sidebar height on desktop, fixed strip on mobile */
.profile-avatar {
    width: 100%;
    flex: 1; /* Grows to fill sidebar height */
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

@media (max-width: 767px) {
    .profile-avatar {
        width: 110px;
        height: 150px;
        flex: none;
        object-fit: cover;
        object-position: top center;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Info strip below photo on desktop, beside photo on mobile */
.profile-sidebar-info {
    padding: 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .profile-sidebar-info {
        flex: 1;
        text-align: left;
        align-items: flex-start;
        justify-content: center;
        padding: 16px;
    }
}

/* 4. The Role Badge */
.role-badge {
    display: inline-block;
    background: rgba(225, 29, 72, 0.1); 
    color: var(--primary, #e11d48);
    border: 1px solid rgba(225, 29, 72, 0.3); 
    padding: 5px 14px;
    border-radius: 30px; 
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.05); 
}

.profile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.profile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

.profile-socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* 5. The Right Content (Text & Hobbies) */
.profile-content {
    flex: 1; /* Takes up all the remaining horizontal space */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-content p {
    font-size: 1.05rem; /* Slightly larger text for readability */
}

/* Hobby Tags */
.hobby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hobby-pill {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- GALLERY NESTED HEADERS --- */
.gallery-year-group {
    margin-bottom: 60px;
}

.year-divider {
    font-size: 2.5rem;
    color: #f8fafc;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.gallery-month-section {
    margin-bottom: 50px;
}

.month-breadcrumb {
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.crumb-dim {
    color: #64748b;
    font-weight: 500;
}

.crumb-arrow {
    color: #334155;
    font-size: 0.9rem;
}

.crumb-highlight {
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- HOMEPAGE HERO REWRITE --- */
.home-hero {
    padding: 120px 20px 80px 20px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;    /* Forces everything (logo, button) to the dead center! */
    text-align: center;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 1)), url("/images/hero-bg.png") no-repeat center center;
    background-size: cover;
}

.hero-main-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-top: 25px;
    margin-bottom: 0px;
    filter: drop-shadow(0 0 25px rgba(225, 29, 72, 0.25));
    transition: transform 0.3s ease;
}

.hero-main-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-main-logo {
        width: 160px;
        height: 160px;
    }
}
.hero-info-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 0 auto 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- HOMEPAGE SPLIT: EVENTS & CALENDAR --- */
.home-split-section {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
}

@media (min-width: 900px) {
    .home-split-section {
        grid-template-columns: 2fr 1.2fr;
        gap: 60px;
    }
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* --- INTERACTIVE MINI CALENDAR --- */
.calendar-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    height: max-content; /* Prevents stretching to match adjacent column height */
    display: flex;
    flex-direction: column;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cal-nav {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.cal-nav:hover { color: var(--primary); }

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-day {
    padding: 10px 0;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
    position: relative;
}

.cal-day.empty { visibility: hidden; }

/* The glowing dot for days with events */
.cal-day.has-event {
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.3);
    transition: all 0.2s ease;
}

.cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.cal-day.has-event:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cal-day.has-event:hover::after { display: none; }

/* --- EVENT POP-OUT MODAL --- */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(5px);
    z-index: 1000; align-items: center; justify-content: center;
}

.modal-content {
    background: #1e293b; border: 1px solid #334155; border-radius: 16px;
    padding: 40px; max-width: 500px; width: 90%; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); text-align: left;
}

.close-modal {
    position: absolute; top: 20px; right: 25px; color: #94a3b8;
    font-size: 1.8rem; cursor: pointer; transition: color 0.2s;
}
.close-modal:hover { color: white; }

/* --- HOMEPAGE EVENT CARDS --- */
.homepage-event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.homepage-event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(45deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- EXTRA MOBILE RESPONSIVENESS (Added for compactness) --- */
@media (max-width: 768px) {
    /* 1. Meet the Team Carousel (Homepage) */
    .membersSwiper .swiper-slide {
        width: 150px; /* More compact width */
    }
    .member-profile {
        padding: 20px 10px; /* Less padding */
    }
    .avatar {
        width: 110px;
        height: 147px; /* 3:4 ratio — 110 * (4/3) = 147px */
        border-radius: 12px; /* Keep the card corners */
        border-width: 0;
    }
    .member-profile h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .member-profile p {
        font-size: 0.8rem !important; /* Make subtitle slightly smaller */
    }

    /* 2. About Us Profile Cards (mobile tweaks) */
    .profile-content {
        padding: 20px !important;
    }
    .profile-content h4 {
        margin-bottom: 5px !important;
        font-size: 1rem !important;
    }
    .profile-content p {
        font-size: 0.95rem;
        margin-bottom: 15px !important;
    }
    .role-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }


    /* 3. Footer Tweaks */
    .site-footer {
        padding: 40px 5% 20px 5%; /* Tighter padding */
    }
    .footer-content {
        gap: 40px; /* Less gap between sections */
        flex-direction: column;
        align-items: flex-start; /* Align everything to the left for clean mobile UI */
        text-align: left;
    }
    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .brand-contact-section {
        align-items: flex-start;
    }
    .footer-brand {
        justify-content: flex-start;
    }
    .contact-info {
        align-items: flex-start;
        text-align: left;
    }
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .contact-item svg {
        margin-bottom: 0;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-socials {
        justify-content: flex-start;
    }
}

/* --- MARKDOWN TABLES --- */
table {
    width: 100%;
    max-width: 600px; /* Keeps the table from looking stretched on wide screens */
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden; /* Keeps the rounded corners crisp */
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

td {
    color: #cbd5e1;
}

/* Remove the border from the very bottom row */
tr:last-child td {
    border-bottom: none;
}

/* Subtle highlight when hovering over a row */
tr:hover td {
    background: rgba(225, 29, 72, 0.05); /* Very faint primary color glow */
}

/* --- MARKDOWN REGISTRATION BUTTON --- */
.markdown-register-btn {
    display: inline-block;
    background: var(--primary, #e11d48); 
    color: white !important; 
    padding: 14px 35px;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.markdown-register-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.6);
    background: #be123c; 
}
/* --- ENHANCED NAVBAR ICONS --- */
.nav-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-right: 6px;
    margin-bottom: -3px; /* Aligns icon vertically with text */
    transition: transform 0.3s ease;
}

.nav-links a:hover svg {
    transform: translateY(-2px);
}

/* --- ENHANCED FOOTER STYLES --- */
.site-footer {
    background: #0b1120;
    padding: 80px 10% 40px 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    color: #94a3b8;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: white;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* Middle Column: Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    margin: 0 0 5px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Right Column: Links & Socials */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover svg {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* Footer Bottom Strip */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom p {
    margin: 0;
}
