/*
Theme Name: Kingdom Aid Theme
Theme URI: https://kingdomaid.org
Author: Antigravity
Description: Clean, modern light theme redesign for Kingdom Aid International.
Version: 1.0.0
Text Domain: kingdomaid
*/

/* CSS Reset and Variables - Light Redesigned Theme */
:root {
    --bg-light: #f8fafc;
    /* Slate-50 backdrop */
    --bg-light-alt: #ffffff;
    /* White section background */
    --bg-card: #ffffff;

    --primary: #b28739;
    /* Brand Gold/Bronze */
    --primary-hover: #966f2a;
    --accent: #b28739;
    --accent-hover: #966f2a;

    --text-main: #0f172a;
    /* Slate-900 heading color */
    --text-muted: #475569;
    /* Slate-600 body text color */
    --border-color: rgba(15, 23, 42, 0.08);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.05);

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.align-start {
    align-items: start;
}

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

.hidden {
    display: none !important;
}

/* Sticky Glass Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.accent-text {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(178, 133, 57, 0.3);
}

.btn-secondary {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.nav-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(178, 133, 57, 0.3);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Split Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: var(--bg-light-alt);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    background-color: rgba(178, 133, 57, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Hero Offset Image Showcase */
.hero-image-showcase {
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.frame-backdrop {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 12px;
    z-index: 1;
}

/* Mission Highlights */
.mission-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.mission-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(178, 133, 57, 0.2);
}

.mission-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Impact Gallery */
.gallery-section {
    background-color: var(--bg-light-alt);
    padding: 100px 0;
}

/* Gallery Slider Widget */
.gallery-slider-widget {
    margin-top: 4rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-main-display {
    position: relative;
    width: 100%;
    max-width: 370px;
    aspect-ratio: 2 / 3;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.gallery-main-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.2s ease;
}

.gallery-main-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem 1.5rem 2rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
}

/* Thumbnail slider */
.gallery-thumbnails-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 555px; /* Matches 370px width * 3/2 aspect ratio */
    width: 140px;
    padding: 3.5rem 0;
    gap: 1rem;
}

.gallery-thumbnails-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-thumbnails-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.thumb-item {
    flex: 0 0 80px;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--primary);
    transform: scale(1.05);
}

.thumb-item:hover {
    opacity: 0.85;
}

.thumb-nav-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-light-alt);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
}

.thumb-nav-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.thumb-nav-btn.prev-btn {
    top: 0;
}

.thumb-nav-btn.next-btn {
    bottom: 0;
}

@media (max-width: 768px) {
    .gallery-slider-widget {
        flex-direction: column;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .gallery-main-display {
        height: auto;
    }
    
    .gallery-thumbnails-wrapper {
        flex-direction: row;
        height: auto;
        width: 100%;
        max-width: 370px;
        padding: 0 2.5rem;
    }
    
    .gallery-thumbnails-slider {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        height: auto;
    }
    
    .thumb-item {
        flex: 0 0 120px;
        height: 80px;
    }
    
    .thumb-nav-btn {
        width: auto;
        height: auto;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        box-shadow: none;
        color: var(--text-dark);
        padding: 0;
        z-index: 2;
    }
    
    .thumb-nav-btn:hover {
        background: transparent;
        color: var(--primary);
        border-color: transparent;
    }
    
    .thumb-nav-btn i {
        font-size: 1.75rem;
        transition: var(--transition);
    }
    
    .thumb-nav-btn.prev-btn {
        top: 50%;
        left: 0.25rem;
    }
    
    .thumb-nav-btn.prev-btn i {
        transform: rotate(-90deg);
    }
    
    .thumb-nav-btn.next-btn {
        top: 50%;
        right: 0.25rem;
        left: auto;
        bottom: auto;
    }
    
    .thumb-nav-btn.next-btn i {
        transform: rotate(-90deg);
    }
}

.gallery-item-wrapper:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item-wrapper:hover .gallery-info {
    opacity: 1;
}

/* Combined Actions & Donation Section */
.actions-donation-section {
    background-color: var(--bg-light);
    padding: 120px 0;
}

.help-info-panel .panel-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.help-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.method-icon {
    background-color: rgba(178, 133, 57, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.method-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.btn-link {
    background: none;
    border: none;
    cursor: pointer;
}

/* Donation Widget Panel */
.donation-container-panel {
    display: flex;
    justify-content: flex-end;
}

.donate-widget {
    background-color: var(--bg-light-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}

.widget-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.widget-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.donate-opt-btn {
    background-color: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    padding: 0.8rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.donate-opt-btn:hover {
    background-color: rgba(15, 23, 42, 0.06);
}

.donate-opt-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.custom-amount-wrapper {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease-out;
}

.custom-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

#customAmountInput {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

#customAmountInput:focus {
    border-color: var(--primary);
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
}

.zeffy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.zeffy-logo {
    width: 67px;
    height: 20px;
    display: inline-block;
    color: var(--text-main);
}

/* Toast alert */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Footer Section */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.main-footer {
    background-color: var(--text-main);
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-logo {
    height: 110px;
    margin-bottom: 0.5rem;
}

.main-footer .logo-text {
    color: #ffffff !important;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

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

.tax-info {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tax-desc {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    margin-top: 60px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Animations & Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline.fade-in-up {
    animation-delay: 0.2s;
}

.hero-title.fade-in-up {
    animation-delay: 0.4s;
}

.hero-description.fade-in-up {
    animation-delay: 0.6s;
}

.hero-ctas.fade-in-up {
    animation-delay: 0.8s;
}

.hero-image-showcase.fade-in-up {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {


    .grid-2 {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-showcase {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-img {
        height: 350px;
    }

    .donation-container-panel {
        justify-content: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-light-alt);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {


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

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Lightbox modal styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    color: #cbd5e1;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f8fafc;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: #ffffff;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: calc(50% - 70px);
    }

    .lightbox-next {
        right: calc(50% - 70px);
    }
}

/* Footer Email Link */
.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
    margin-top: 0.75rem;
}

.footer-email-link i {
    font-size: 1rem;
    transition: var(--transition);
}

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