@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --gold: #C5A059;
    --gold-light: #DFBF83;
    --gold-dark: #A67C37;
    --dark-bg: #020617;
    --dark-surface: #0F172A;
    --dark-elevated: #1E293B;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --glass: rgba(2, 6, 23, 0.7);
    --glass-border: rgba(197, 160, 89, 0.2);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.premium-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav placeholders - Content handled by header.php inline */
header {
    z-index: 5000;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* Space for the 100px Header */
    overflow: hidden;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -1%);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transform-origin: center;
}

/* Sync with Swiper: Only animate active slide */
.swiper-slide-active .hero-bg {
    animation: kenBurns 10s ease-out forwards;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.75) 50%, rgba(2, 6, 23, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.hero-content span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 800;
    font-size: 14px;
    display: block;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: clamp(32px, 10vw, 100px);
    line-height: 0.95;
    margin-bottom: 40px;
    color: var(--text-light);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    z-index: 20;
}

.section-tag {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

.section-title {
    font-size: clamp(30px, 8vw, 64px);
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-light);
}

/* Page Headers (Subpages) */
.page-header {
    padding: 240px 0 100px;
    /* Increased top padding to account for fixed header */
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    z-index: 5;
    overflow: visible !important;
}

.page-header h1 {
    font-size: clamp(48px, 10vw, 84px);
    color: var(--gold);
    margin-bottom: 30px;
}



/* NAVBAR & NAVIGATION */
.nav-links {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
    }
}

/* SWIPER CUSTOM STYLES */
.service-slider {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(15, 23, 42, 0.8);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold);
    color: #000 !important;
}

/* Card Grid Refactor for Slider */
.card-grid {
    display: flex;
    /* Swiper uses flex for wrapper */
    gap: 0;
}


.premium-card {
    background: transparent;
    padding: 60px 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    /* SQUARE CARDS */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.premium-card h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
}

.premium-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.overlay-text {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.05);
    z-index: 0;
    line-height: 1;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

/* Footer Bottom Height Reduction */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* MOBILE RESPONSIVE */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 6000;
}

@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%;
        height: 100vh;
        background: #020617;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 5500;
    }

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

    .hamburger {
        display: block;
        color: var(--gold);
        font-size: 30px;
    }

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

    .premium-card {
        aspect-ratio: auto;
        /* Return to auto on mobile for readability */
        padding: 60px 40px;
    }

    .hero {
        padding-top: 150px;
        text-align: center;
    }

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

/* Footer */
footer {
    background: #01040D;
    padding: 120px 0 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-brand .logo img {
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.footer-links h4 {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 40px;
    text-transform: uppercase;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

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

/* SECTION BACKGROUND ANIMATION (VIDEO EFFECT) */
.section-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    animation: kenBurns 40s infinite alternate linear;
    transform-origin: center;
}

.section-bg-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95));
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

/* Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-links h4 {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 32px !important;
        margin-bottom: 50px !important;
    }
}