/*------------------------------------------------------------------
    CHIMSOM CHUKA - OFFICIAL PORTFOLIO DESIGN SYSTEM
    Aesthetic: Modern Luxury Light Theme, Transparent Nav, Gold Accents
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-main: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --glass-nav: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-border-gold: rgba(197, 155, 39, 0.35);

    --gold-primary: #C59B27;
    --gold-light: #D4AF37;
    --gold-hover: #A37F1E;
    --gold-glow: rgba(197, 155, 39, 0.12);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C59B27 50%, #997415 100%);

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-gold: #B8860B;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-gold: 0 10px 25px -5px rgba(197, 155, 39, 0.3);
}

/* Base Reset & Smooth Scroll */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-surface);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-surface);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: var(--gold-hover);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-lg {
    padding: 8rem 0;
}

/* Header & Navigation - Fully Transparent Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

@keyframes logo-grow {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.brand-logo img {
    height: 55px; /* Increased from 40px */
    width: auto;
    object-fit: contain;
    transform-origin: center left;
    animation: logo-grow 3s infinite ease-in-out;
}

.logo-main {
    display: block;
}

.logo-secondary {
    display: none;
}

.navbar.scrolled .brand-logo .logo-main {
    display: none;
}

.navbar.scrolled .brand-logo .logo-secondary {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.4rem 0;
}

/* On transparent hero nav bar, default link text is light */
.hero-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.hero-nav .nav-link:hover,
.hero-nav .nav-link.active {
    color: #FFFFFF;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hero-nav .mobile-toggle {
    color: #FFFFFF;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-primary);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid var(--glass-border);
    padding: 6rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(197, 155, 39, 0.45);
    color: #FFFFFF;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border-color: var(--glass-border-gold);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.btn-outline:hover {
    background: var(--gold-glow);
    border-color: var(--gold-primary);
    color: var(--gold-hover);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.4) contrast(1.05);
    transform: scale(1.05);
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.058) 0%, rgba(15, 23, 42, 0.303) 100%),
                linear-gradient(to bottom, rgba(15, 23, 42, 0.071) 0%, #FFFFFF 100%);
    z-index: -1;
}

.hero-content {
    max-width: 820px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--glass-border-gold);
    color: #FDF6E2;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* Light Glass Cards */
.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card-glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-glass:hover::before {
    opacity: 1;
}

/* Section Titles */
.section-header {
    margin-bottom: 3.5rem;
}

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

.subtitle-tag {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--text-primary);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Featured In Pills/Grid */
.featured-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.featured-pill {
    padding: 0.75rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
}

.featured-pill:hover {
    border-color: var(--gold-primary);
    background: var(--gold-glow);
    color: var(--gold-hover);
    transform: translateY(-2px);
}

/* Project Cards */
.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.project-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-tag {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

/* Service Cards */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    border: 1px solid var(--glass-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.card-glass:hover .service-icon {
    background: var(--gold-gradient);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
}

.service-list {
    list-style: none;
    margin-top: 1.25rem;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Testimonial Carousel */
.testimonial-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 28px;
    border-radius: var(--radius-full);
    background: var(--gold-primary);
}

/* Gallery Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* Pagination Controls */
.pagination-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn,
.page-num {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
}

.pagination-btn:hover,
.page-num:hover,
.page-num.active {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #FFFFFF;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

/* Gallery Items */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 1.15rem;
    color: #FFFFFF;
}

/* HTML Lightbox <dialog> */
.lightbox-modal {
    border: none;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    color: var(--text-primary);
    max-width: 900px;
    width: 90vw;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
    overflow: hidden;
    margin: auto;
}

.lightbox-modal::backdrop {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #0F172A;
    display: block;
}

.lightbox-caption {
    padding: 1.5rem;
    background: #FFFFFF;
    border-top: 1px solid var(--glass-border);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.accordion-header {
    padding: 1.4rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.accordion-icon {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.75rem;
}

.accordion-item.active .accordion-body {
    padding: 0 1.75rem 1.5rem 1.75rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-md);
    background: #F8FAFC;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(197, 155, 39, 0.2);
}

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

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1px solid var(--gold-primary);
    color: var(--text-primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
}

/* Social Channel Cards */
.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.social-card:hover {
    border-color: var(--glass-border-gold);
    transform: translateX(8px);
    background: var(--bg-card-hover);
}

.social-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Social Cards Branded Backgrounds */
.social-card.instagram-card {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}
.social-card.instagram-card:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-card.tiktok-card {
    background: #000000;
    border: none;
}
.social-card.tiktok-card:hover {
    background: #111111;
}
.social-card.x-card {
    background: #000000;
    border: none;
}
.social-card.x-card:hover {
    background: #14171A;
}
.social-card.linkedin-card {
    background: #0077B5;
    border: none;
}
.social-card.linkedin-card:hover {
    background: #006097;
}

/* Override text colors for branded cards */
.social-card.instagram-card h3,
.social-card.tiktok-card h3,
.social-card.x-card h3,
.social-card.linkedin-card h3 {
    color: #ffffff !important;
}

.social-card.instagram-card span,
.social-card.tiktok-card span,
.social-card.x-card span,
.social-card.linkedin-card span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.social-card.instagram-card p,
.social-card.tiktok-card p,
.social-card.x-card p,
.social-card.linkedin-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.social-card.instagram-card .social-icon,
.social-card.tiktok-card .social-icon,
.social-card.x-card .social-icon,
.social-card.linkedin-card .social-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Footer */
.footer {
    background: #F8FAFC;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    max-width: 380px;
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Top Gold Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--gold-gradient);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(var(--scroll-percent, 0));
    transition: transform 0.05s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

/* Native CSS Scroll-Driven Progress Bar Animation (supported browsers) */
@supports (animation-timeline: scroll()) {
    @keyframes grow-scroll-progress {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }
    .scroll-progress-bar {
        animation: grow-scroll-progress auto linear;
        animation-timeline: scroll(root);
    }
}

/* Smart Hide/Show Navbar on Scroll */
.navbar {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* Multi-Directional Scroll Animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal, .reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-zoom {
    transform: scale(0.92) translateY(20px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger Delays for Grid Reveal Elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Native CSS Scroll-Driven View Timelines for Enter/Exit reveal fallback optimization */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes scroll-entry-fade-up {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-driven-entry {
            animation: scroll-entry-fade-up auto cubic-bezier(0.16, 1, 0.3, 1) both;
            animation-timeline: view();
            animation-range: entry 10% cover 30%;
        }
    }
}

/* Interactive Card & Media Scroll Parallax Zoom Effects */
.card-glass,
.gallery-item,
.film-card,
.service-card,
.media-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.card-glass img,
.gallery-item img,
.film-card img,
.service-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass:hover img,
.gallery-item:hover img,
.film-card:hover img,
.service-card:hover img {
    transform: scale(1.06);
}

/* Horizontal Scrollable Containers Touch/Mouse Scroll Enhancements */
.featured-grid,
.filter-btn-group {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.featured-pill {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.featured-pill:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gold-primary);
}

/* Floating Scroll-to-Top Button with Circular SVG Progress Ring */
#scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#scroll-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 30px rgba(197, 155, 39, 0.3);
}

#scroll-to-top svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#scroll-to-top circle.progress-bg {
    fill: none;
    stroke: rgba(15, 23, 42, 0.08);
    stroke-width: 3;
}

#scroll-to-top circle.progress-ring {
    fill: none;
    stroke: var(--gold-primary);
    stroke-width: 3.5;
    stroke-dasharray: 144;
    stroke-dashoffset: 144;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

#scroll-to-top i {
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
}

#scroll-to-top:hover i {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Custom Smooth Mouse Circle Follower */
.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: transform, width, height, opacity;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.6);
}

.cursor-circle {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(197, 155, 39, 0.6);
    background: rgba(197, 155, 39, 0.04);
}

.cursor-dot.visible,
.cursor-circle.visible {
    opacity: 1;
}

/* Hover State on Interactive Elements (Buttons, Links, Cards) */
.cursor-circle.cursor-hover {
    width: 58px;
    height: 58px;
    border-color: var(--gold-primary);
    background: rgba(197, 155, 39, 0.12);
    box-shadow: 0 0 20px rgba(197, 155, 39, 0.25);
}

.cursor-dot.cursor-hover {
    width: 4px;
    height: 4px;
    background: var(--gold-light);
}

/* Hide custom cursor on coarse touch screens */
@media (pointer: coarse) {
    .cursor-dot,
    .cursor-circle {
        display: none !important;
    }
}



/* Responsive Media Queries */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .nav-links.desktop-nav { display: none; }
    .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .hero { min-height: 85vh; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.project-modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--glass-border);
}

.project-modal.active .project-modal-content {
    transform: translateY(0);
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.project-modal-close:hover {
    color: var(--gold-primary);
}

.project-modal-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    background: #000;
    display: block;
}

.project-modal-info {
    padding: 2rem;
}

.project-modal-info .project-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.project-modal-info .project-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-modal-info .project-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Make Project Cards look clickable */
.project-card {
    cursor: pointer;
}

/* ATM Card UI */
.donations-modal-content {
    background: #111;
    max-width: 500px;
    color: #fff;
}
.donations-modal-content .project-title {
    color: #fff;
}
.atm-card-container {
    padding: 3rem 2rem 1rem;
    display: flex;
    justify-content: center;
}
.atm-card {
    width: 100%;
    max-width: 380px;
    height: 230px;
    background: linear-gradient(135deg, #1f1f1f, #333, #111);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}
.atm-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    pointer-events: none;
}
.atm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}
.atm-bank {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.atm-top i {
    font-size: 1.5rem;
    transform: rotate(90deg);
    color: #ccc;
}
.atm-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #e5c158, #c59b27);
    border-radius: 6px;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
}
.atm-number {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.8);
    margin: 1rem 0;
}
.atm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.atm-name {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0,0,0,0.8);
}
.atm-valid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.valid-text {
    font-size: 0.4rem;
    line-height: 1;
    font-family: var(--font-body);
}
.valid-date {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Hero Elements (Toast & Typewriter) */
.hero-toast-btn {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-typewriter-container {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.typewriter-text {
    border-right: 2px solid var(--gold-primary);
    padding-right: 5px;
    white-space: nowrap;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--gold-primary); }
}

@media (max-width: 768px) {
    .hero-toast-btn {
        bottom: 1rem;
        left: 1rem;
    }
    .hero-typewriter-container {
        bottom: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }
}