/*==============================================
    VitalHope Outreach - Custom Stylesheet
    Clean, Modern, Fully Responsive Design
===============================================*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #FF5528;
    --secondary: #FFA415;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #FF5528 0%, #FFA415 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
    --radius: 15px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

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

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

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

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 25px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary-custom:hover::after {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 25px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid var(--gray);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--dark);
}

.btn-outline-custom:hover::after {
    background: var(--primary);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 25px;
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-white::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-white:hover::after {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    margin-bottom: 50px;
}

.section-title .tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
}

.section-title.text-center p {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
    background: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom .navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-custom .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
}

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

.navbar-custom .btn-primary-custom {
    padding: 10px 25px;
    font-size: 14px;
}

/* Mobile Nav Toggler (hamburger icon) */
.mobile-nav__toggler {
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav__toggler:hover {
    color: var(--dark);
}

/* Hide Bootstrap's default toggler */
.navbar-custom .navbar-toggler {
    display: none;
}

@media (max-width: 991px) {
    .navbar-custom {
        padding: 6px 0;
    }

    .navbar-custom .navbar-brand img {
        height: 36px;
    }

    .navbar-custom .navbar-nav {
        padding: 15px 0;
    }

    .navbar-custom .nav-link {
        padding: 8px 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    padding-top: 40px;
}

.hero-content .tagline {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
}

.hero-content .btn-group-hero {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

@media (max-width: 991px) {
    .hero-section,
    .hero-slide {
        min-height: 70vh;
    }

    .hero-overlay {
        background: rgba(255,255,255,0.9);
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content .btn-group-hero {
        gap: 10px;
        padding-bottom: 30px;
        justify-content: center;
    }

    /* Smaller buttons on mobile */
    .hero-content .btn-primary-custom,
    .hero-content .btn-outline-custom {
        padding: 4px 4px 4px 18px;
        font-size: 11px;
        gap: 8px;
    }

    .hero-content .btn-primary-custom::after,
    .hero-content .btn-outline-custom::after {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

/* ============================================
   ARTWORK CARDS
   ============================================ */
.artwork-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artwork-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.artwork-card-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.artwork-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.artwork-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artwork-card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.artwork-card-title a:hover {
    color: var(--primary);
}

.artwork-card-text {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    flex: 1;
}

.artwork-card-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.artwork-card-meta span {
    font-size: 13px;
    color: var(--gray);
}

.artwork-card-meta strong {
    color: var(--dark);
    font-weight: 600;
}

.artwork-card-price {
    color: var(--primary) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.artwork-card-donations {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: var(--gray);
}

.artwork-card-donations i {
    margin-right: 5px;
}

.artwork-card-btn-wrap {
    padding: 20px 25px;
    text-align: center;
}

.artwork-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.artwork-card-btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    transition: var(--transition);
}

.artwork-card-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.artwork-card-btn:hover::after {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-img-box {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge h3 {
    font-size: 36px;
    color: var(--white);
    margin: 0;
}

.about-badge span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-img-box {
        margin-bottom: 60px;
    }

    .about-img-secondary {
        right: 10px;
    }

    .about-badge {
        left: 20px;
    }
}

@media (max-width: 576px) {
    .about-img img {
        height: 300px;
    }

    .about-img-secondary {
        width: 150px;
        height: 150px;
        bottom: 0;
        right: 10px;
    }

    .about-badge {
        padding: 15px 20px;
        left: 10px;
    }

    .about-badge h3 {
        font-size: 28px;
    }
}

/* ============================================
   FEATURES / VALUES
   ============================================ */
.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 30px;
}

.cta-section .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* CTA section buttons need white text on dark background */
.cta-section .btn-primary-custom {
    color: var(--white);
    border-color: var(--primary);
}

.cta-section .btn-primary-custom:hover {
    color: var(--white);
}

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

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section .btn-group {
        gap: 10px;
    }

    /* Smaller CTA buttons on mobile */
    .cta-section .btn-primary-custom,
    .cta-section .btn-white {
        padding: 4px 4px 4px 16px;
        font-size: 10px;
        gap: 8px;
    }

    .cta-section .btn-primary-custom::after,
    .cta-section .btn-white::after {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 85, 40, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 17px;
    background: var(--white);
    color: var(--dark);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 16px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer h5 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer p {
    color: rgba(255,255,255,0.7);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* ============================================
   GALLERY FILTERS
   ============================================ */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-custom .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.pagination-custom .page-link:hover,
.pagination-custom .page-item.active .page-link {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

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

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .artwork-card-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 25px;
    }
}

/* ============================================
   MOBILE CENTER ALIGNMENT
   ============================================ */
@media (max-width: 768px) {
    /* Center all section content on mobile */
    .section-title {
        text-align: center;
    }

    .section-title p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center about section text */
    .about-img-box + .col-lg-6,
    .order-lg-1 {
        text-align: center;
    }

    /* Center buttons in sections */
    .section-padding .btn-primary-custom,
    .section-padding .btn-outline-custom {
        display: inline-flex;
    }

    /* Center the welcome/about text sections */
    .col-lg-6 > .section-title,
    .col-lg-6 > p,
    .col-lg-6 > .btn-primary-custom {
        text-align: center;
    }

    .col-lg-6 {
        text-align: center;
    }

    /* Center tab buttons */
    .nav-pills {
        justify-content: center;
    }

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

    /* Center feature cards content */
    .feature-card {
        text-align: center;
    }

    /* Center step cards */
    .step-card {
        text-align: center;
    }

    /* Center contact info */
    .contact-info-card {
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   PRELOADER (Optional)
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   MOBILE NAVIGATION SIDEBAR
   ============================================ */
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0s 0.5s;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0s 0s;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    max-width: 100%;
    height: 100%;
    background-color: var(--dark);
    position: relative;
    z-index: 10;
    padding: 30px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav__close:hover {
    color: var(--primary);
}

.mobile-nav__logo {
    margin-bottom: 30px;
}

.mobile-nav__logo img {
    max-width: 150px;
    height: auto;
}

.mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__list li:last-child {
    border-bottom: none;
}

.mobile-nav__list li a {
    display: block;
    padding: 15px 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav__list li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-nav__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav__contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mobile-nav__contact li i {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.mobile-nav__contact li a {
    color: var(--white);
    transition: var(--transition);
}

.mobile-nav__contact li a:hover {
    color: var(--primary);
}

.mobile-nav__social {
    display: flex;
    gap: 15px;
}

.mobile-nav__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-nav__social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Body lock when mobile nav is open */
body.mobile-nav-open {
    overflow: hidden;
}
