/********** Dristi Foundation Nepal - Master Stylesheet **********/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #23326B;
    --primary-dark: #1a254f;
    --primary-light: #2f4190;
    --primary-xlight: #eef2ff;
    --accent: #6B5869;
    --accent-light: #f3eff2;
    --accent-mid: #9c86a0;
    --gold: #C9A84C;
    --gold-light: #fdf6e3;
    --white: #ffffff;
    --light-bg: #F8F7FC;
    --light-bg2: #EFF1FA;
    --dark: #0d1b3e;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(35, 50, 107, 0.1);
    --shadow-sm: 0 4px 24px rgba(35, 50, 107, 0.07);
    --shadow-md: 0 8px 40px rgba(35, 50, 107, 0.13);
    --shadow-lg: 0 20px 60px rgba(35, 50, 107, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.25;
    color: var(--primary);
}

p { color: var(--text-muted); }

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

img { max-width: 100%; }

/* ========== Utility ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-xlight);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-label.accent {
    background: var(--accent-light);
    color: var(--accent);
}
.section-label.gold {
    background: var(--gold-light);
    color: #a07830;
}
.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.divider-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ========== Spinner ========== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    display: none;
    right: 28px;
    bottom: 28px;
    z-index: 99;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: white;
}

/* ========== Buttons ========== */
.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border-radius: 50px;
    padding: 11px 28px;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(35,50,107,0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35,50,107,0.32);
}
.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    background: #b8953e;
    border-color: #b8953e;
    color: #fff;
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(107,88,105,0.25);
}
.btn-accent:hover {
    background: #5c4a5a;
    border-color: #5c4a5a;
    color: #fff;
    transform: translateY(-2px);
}
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-square { width: 40px; height: 40px; border-radius: 10px; }
.btn-sm-square { width: 32px; height: 32px; border-radius: 8px; }
.btn-lg-square { width: 52px; height: 52px; border-radius: 14px; }

/* ========== Top Bar ========== */
.top-bar {
    height: 44px;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}
.top-bar a { color: rgba(255,255,255,0.6); }
.top-bar a:hover { color: var(--gold); }

/* ========== Navbar ========== */
.navbar {
    background: var(--primary) !important;
    box-shadow: 0 2px 24px rgba(35,50,107,0.18);
    padding: 0 2rem;
}
.navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}
.navbar-brand .brand-primary { color: var(--gold); }
.navbar-brand .brand-secondary { color: rgba(255,255,255,0.95); }

.navbar .navbar-nav .nav-link {
    margin-right: 6px;
    padding: 28px 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    position: relative;
}
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 2px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    background: white;
    min-width: 200px;
}
.navbar .dropdown-item {
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.navbar .dropdown-item:hover {
    background: var(--primary-xlight);
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar { padding: 12px 16px; }
    .navbar .navbar-nav {
        background: var(--primary-dark);
        border-radius: var(--radius);
        padding: 12px 8px;
        margin-top: 12px;
    }
    .navbar .navbar-nav .nav-link {
        padding: 10px 16px;
    }
    .navbar .navbar-nav .nav-link::after { display: none; }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .4s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

/* ========== Hero Carousel ========== */
.hero-carousel .carousel-item {
    height: 680px;
    position: relative;
}
.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13,27,62,0.82) 0%, rgba(35,50,107,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 0 0 8%;
}
.carousel-caption .caption-inner {
    max-width: 650px;
}
.carousel-caption .badge-label {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.carousel-caption h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.carousel-caption p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    max-width: 500px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    padding: 22px;
    background-size: 45%;
    border: 1px solid rgba(255,255,255,0.2);
}
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.3s;
}
.carousel-indicators .active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .hero-carousel .carousel-item { height: 520px; }
    .carousel-caption { padding: 0 6% 0 6%; text-align: center; justify-content: center; }
    .carousel-caption p { margin: 0 auto 32px; }
}

/* ========== Stats Bar ========== */
.stats-bar {
    background: var(--primary);
    padding: 0;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}
.stat-item {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ========== About Section ========== */
.about-section { background: var(--white); }
.about-img-wrapper {
    position: relative;
    min-height: 460px;
}
.about-img-main {
    position: absolute;
    width: calc(100% - 80px);
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-img-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}
.about-img-label {
    position: absolute;
    bottom: 32px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
}
.about-img-label span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}
.about-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.about-quote p { color: var(--text); font-style: italic; margin: 0; }
.about-quote cite { font-size: 13px; color: var(--primary); font-weight: 600; font-style: normal; }

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-xlight);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin: 4px;
}
.feature-pill i { color: var(--gold); }

/* ========== Causes / Missions ========== */
.causes-section { background: var(--light-bg); }
.cause-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.cause-card .cause-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.cause-card .cause-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.cause-card:hover .cause-img img { transform: scale(1.08); }
.cause-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35,50,107,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.cause-card:hover .cause-overlay { opacity: 1; }
.cause-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}
.cause-body { padding: 28px; }
.cause-body h5 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.cause-progress-wrap { background: var(--light-bg); border-radius: var(--radius); padding: 16px; margin-top: 20px; }
.cause-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
}
.cause-progress-label span:last-child { color: var(--primary); }
.progress {
    height: 8px;
    border-radius: 50px;
    background: var(--light-bg2);
    overflow: visible;
}
.progress-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 50px;
    position: relative;
    transition: width 1.5s ease;
}
.progress-bar::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(107,88,105,0.4);
}

/* ========== Services ========== */
.services-section { background: var(--white); }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--primary-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}
.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

/* ========== Donate Section ========== */
.donate-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.donate-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.donate-section::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
    pointer-events: none;
}
.donate-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.donate-form-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14.5px;
    color: var(--text);
    background: var(--light-bg);
    transition: var(--transition);
}
.donate-form-card .form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(35,50,107,0.08);
    outline: none;
}
.donate-amount-group { display: flex; gap: 8px; flex-wrap: wrap; }
.amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 8px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--light-bg);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.amount-btn:hover,
.amount-btn.active,
input[type="radio"]:checked + .amount-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(35,50,107,0.3);
}

/* ========== Team Section ========== */
.team-section { background: var(--light-bg); }
.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.team-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(35,50,107,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    font-size: 14px;
    transition: var(--transition);
}
.team-social-overlay a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
}
.team-body {
    padding: 24px 20px;
    text-align: center;
}
.team-body h5 { font-size: 1.15rem; margin-bottom: 4px; }
.team-body .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========== Testimonials ========== */
.testimonial-section { background: var(--white); }
.testimonial-carousel::before,
.testimonial-carousel::after {
    position: absolute;
    content: '';
    top: 0; height: 100%; width: 0;
    z-index: 1;
}
@media (min-width: 768px) {
    .testimonial-carousel::before {
        left: 0;
        background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
        width: 160px;
    }
    .testimonial-carousel::after {
        right: 0;
        background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
        width: 160px;
    }
}
.testimonial-item { padding: 16px 12px; }
.testimonial-text {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transform: scale(0.88);
    transition: all 0.5s;
    position: relative;
}
.owl-item.center .testimonial-text {
    transform: scale(1);
    background: var(--primary);
    box-shadow: var(--shadow-lg);
}
.testimonial-text p { color: var(--gray); font-style: italic; margin-bottom: 0; }
.owl-item.center .testimonial-text p,
.owl-item.center .testimonial-text h5,
.owl-item.center .testimonial-text .role { color: rgba(255,255,255,0.9) !important; }
.testimonial-text h5 { font-size: 1rem; margin-top: 20px; margin-bottom: 2px; }
.testimonial-text .role { font-size: 12px; color: var(--accent); font-weight: 600; }
.owl-item.center .testimonial-text .role { color: var(--gold) !important; }
.quote-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--primary-xlight);
    font-family: 'DM Serif Display', serif;
    margin-bottom: 12px;
}
.owl-item.center .quote-icon { color: rgba(255,255,255,0.15); }
.testimonial-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    margin: 0 auto 20px;
    display: block;
}
.owl-item.center .testimonial-img { border-color: var(--gold); }

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 340px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 2;
}
.testimonial-carousel:hover .owl-nav { width: 300px; opacity: 1; }
.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    color: white;
    font-size: 40px;
    transition: .3s;
}
.testimonial-carousel .owl-nav { width: 300px; opacity: 1; }
.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    color: white;
 
}


.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover { color: var(--accent); }

/* ========== Impact / CTA Banner ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-banner h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.cta-banner p { color: rgba(255,255,255,0.8); }

/* ========== Page Header (inner pages) ========== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(rgba(13,27,62,.88), rgba(35,50,107,.82)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header h1 { color: white; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--gold); }

/* ========== Footer ========== */
.footer {
    background: #07112a;
    color: rgba(255,255,255,0.65);
}
.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
}
.footer-brand .brand-primary { color: var(--gold); }
.footer-brand .brand-secondary { color: rgba(255,255,255,0.95); }
.footer h5 {
    color: rgba(255,255,255,0.9);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer p { color: rgba(255,255,255,0.55); font-size: 14.5px; }
.footer .btn-link {
    display: block;
    padding: 5px 0;
    color: rgba(255,255,255,0.55);
    font-size: 14.5px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
}
.footer .btn-link::before {
    content: '→';
    margin-right: 10px;
    font-size: 12px;
    opacity: 0.5;
    transition: var(--transition);
}
.footer .btn-link:hover {
    color: var(--gold);
    padding-left: 6px;
}
.footer .btn-link:hover::before { opacity: 1; color: var(--gold); }
.footer .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}
.footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    font-size: 13.5px;
}
.footer .copyright a { color: var(--gold); }
.footer .newsletter-form {
    position: relative;
}
.footer .newsletter-form input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: white;
    padding: 12px 120px 12px 20px;
    width: 100%;
    font-size: 14px;
}
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer .newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer .newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 0 22px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.footer .newsletter-form button:hover { background: #b8953e; }

/* ========== Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.animated { animation-duration: 0.8s; animation-fill-mode: both; }
.fadeIn { animation-name: fadeIn; }
.fadeInUp { animation-name: fadeInUp; }
.slideInDown { animation-name: slideInDown; }

/* WOW defaults */
.wow { visibility: hidden; }