/* =========================================================
   1. GLOBAL VARIABLES & BASE RESET
   ========================================================= */
:root {
    --gold-primary: #d4af37;
    --gold-light: #e6ca65;
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: #aaaaaa;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
}

/* =========================================================
   2. HEADER & NAVIGATION
   ========================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-top: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.menu-toggle:hover {
    border-color: var(--gold-primary);
}

/* =========================================================
   3. HERO SLIDER SECTION
   ========================================================= */
.swiper.hero-slider {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: 140px;
    padding-right: 20px;
}

.hero-subtitle {
    color: var(--gold-primary);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-title span {
    color: var(--gold-primary);
    display: block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* Sidebar Counter (Left) */
.slider-counter {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

.counter-line {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.counter-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.33%;
    background: var(--gold-primary);
    transition: top 0.4s ease;
}

/* Bottom Left Socials */
.social-links {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
    display: flex;
    gap: 25px;
}

.social-links a {
    color: var(--text-white);
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold-primary);
}

/* Bottom Center Bounce Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-white);
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-8px) translateX(-50%);
    }

    60% {
        transform: translateY(-4px) translateX(-50%);
    }
}

/* Bottom Right Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mouse-icon {
    width: 18px;
    height: 30px;
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    position: relative;
}

.mouse-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* Right Swiper Pagination Bullets */
.swiper-pagination-bullets {
    right: 60px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.3;
    width: 6px;
    height: 6px;
    margin: 0 !important;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold-primary) !important;
    transform: scale(1.4);
}

/* =========================================================
   4. SECTION 1.5: VISUAL BRAND HIGHLIGHT
   ========================================================= */
.about-visual-section {
    padding: 100px 60px;
    background-color: #080808;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-headline {
    max-width: 1100px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.big-statement {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

.big-statement span {
    color: var(--gold-primary);
    font-style: italic;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 80px auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 45px 35px;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pillar-card.highlight {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.15);
}

.pillar-icon {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.pillar-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
}

.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   7 EXCLUSIVE BRAND PARTNERS STRIP (DESKTOP & MOBILE FIXED)
   ========================================================= */

.partners-strip {
    max-width: 1300px;
    margin: 0 auto;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    overflow: hidden;
}

.partners-label span {
    font-size: 11px;
    letter-spacing: 3.5px;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
}

.partners-track {
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    width: 100%;
}

/* Hide mobile duplicates on Desktop */
.partner-box.mobile-dup {
    display: none;
}

.partner-box {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.partner-box img {
    max-height: 38px;
    max-width: 85%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.75;
    transition: all 0.4s ease;
}

.partner-box:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8), 0 0 12px rgba(212, 175, 55, 0.2);
}

.partner-box:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* =========================================================
   MOBILE RESPONSIVE (SMOOTH HORIZONTAL SLIDER)
   ========================================================= */

@media (max-width: 768px) {
    .partners-strip {
        padding: 25px 15px;
    }

    .partners-label {
        text-align: center;
    }

    .partners-label span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Convert Grid into Flex Continuous Marquee Track */
    .partners-grid {
        display: flex;
        width: max-content;
        gap: 12px;
        animation: scrollMarquee 18s linear infinite;
    }

    /* Show duplicate logos on mobile to create smooth loop */
    .partner-box.mobile-dup {
        display: flex;
    }

    .partner-box {
        width: 130px;
        height: 52px;
        flex-shrink: 0;
        padding: 8px 10px;
    }

    .partner-box img {
        max-height: 28px;
        max-width: 80%;
    }
}

/* Keyframes for Continuous Scrolling */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   5. SECTION 2: SHOWCASE & STUFF
   ========================================================= */
.showcase-section {
    padding: 120px 60px;
    background-color: #0d0d0d;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 100px auto;
}

.showcase-card {
    position: relative;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
    cursor: pointer;
}

.showcase-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.showcase-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 10%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
    transition: opacity 0.4s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 30px;
    z-index: 2;
    width: 100%;
}

.card-num {
    font-size: 14px;
    color: var(--gold-primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 400;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.card-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.showcase-card:hover .card-link {
    gap: 18px;
    color: #ffffff;
}

.stats-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--gold-primary);
    font-weight: 400;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
}

/* =========================================================
   6. SECTION 3: MOTION & VIDEO SHOWCASE
   ========================================================= */
.video-motion-section {
    position: relative;
    padding: 120px 60px;
    background-color: #070707;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.video-container {
    max-width: 1300px;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.video-poster {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.5) 100%);
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: #0a0a0a;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    padding-left: 5px;
    z-index: 2;
}

.play-button-wrapper:hover .play-btn {
    transform: scale(1.15);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.ripple-ring {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    animation: pulse-ripple 2.5s infinite ease-out;
    z-index: 1;
}

.ripple-ring:nth-child(2) {
    animation-delay: 1.25s;
}

@keyframes pulse-ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.video-caption {
    position: relative;
    z-index: 4;
}

.video-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.video-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
}

.video-sub {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 500px;
}

.motion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.motion-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.motion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: var(--gold-primary);
    transition: height 0.4s ease;
}

.motion-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
}

.motion-card:hover::before {
    height: 100%;
}

.motion-icon {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.motion-card:hover .motion-icon {
    transform: scale(1.15) rotate(5deg);
}

.motion-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.motion-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Modal Popup */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
    z-index: 2;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--gold-primary);
}

/* =========================================================
   7. SECTION 4: PORTFOLIO SHOWCASE
   ========================================================= */
.portfolio-section {
    padding: 120px 60px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1300px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-tabs {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto 60px auto;
}

.portfolio-item {
    position: relative;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
}

.portfolio-item.hide {
    display: none;
}

.item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.portfolio-item:hover .item-img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    transition: opacity 0.3s ease;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 25px;
    z-index: 2;
}

.item-category {
    color: var(--gold-primary);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.item-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #ffffff;
}

.item-location {
    font-size: 12px;
    color: var(--text-muted);
}

.item-location i {
    color: var(--gold-primary);
    margin-right: 4px;
}

.item-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 3;
}

.portfolio-item:hover .item-btn {
    opacity: 1;
    transform: translateY(0);
}

.item-btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
}

.portfolio-footer-cta {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
}

.portfolio-footer-cta p {
    color: #dddddd;
    font-size: 14px;
}

.cta-link-gold {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.cta-link-gold:hover {
    gap: 16px;
    color: #ffffff;
}

/* =========================================================
   8. FOOTER SECTION
   ========================================================= */
.site-footer {
    background-color: #050505;
    padding: 100px 60px 40px 60px;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto 60px auto;
    gap: 30px;
}

.cta-text .cta-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 6px 6px 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 480px;
    transition: border-color 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--gold-primary);
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--gold-primary);
    border: none;
    color: #0a0a0a;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
}

.newsletter-form button:hover {
    background: #ffffff;
}

.footer-divider {
    max-width: 1300px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 60px auto;
}

.brand-col .brand-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 20px 0 25px 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.col-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.contact-info {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--gold-primary);
    width: 16px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.back-to-top {
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #ffffff;
}

/* =========================================================
   9. COMPLETE RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================= */

/* --- LAPTOPS & DESKTOPS (Max Width: 1200px) --- */
@media (max-width: 1200px) {
    header {
        padding: 25px 40px;
    }

    .hero-content {
        margin-left: 90px;
    }

    .slider-counter,
    .social-links {
        left: 40px;
    }

    .scroll-indicator,
    .swiper-pagination-bullets {
        right: 40px !important;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- TABLETS & IPADS (Max Width: 992px) --- */
@media (max-width: 992px) {
    header {
        padding: 20px 30px;
    }

    .hero-content {
        margin-left: 60px;
        max-width: 520px;
    }

    .hero-title {
        font-size: 52px;
    }

    .about-visual-section,
    .showcase-section,
    .video-motion-section,
    .portfolio-section,
    .site-footer {
        padding: 80px 30px;
    }

    .big-statement {
        font-size: 36px;
    }

    .pillars-grid,
    .showcase-grid,
    .motion-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        height: 400px;
    }

    .video-wrapper {
        height: 400px;
    }

    .stats-strip {
        flex-direction: column;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    .footer-cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* --- MOBILE DEVICES (Max Width: 768px) --- */
@media (max-width: 768px) {
    header {
        padding: 20px 20px;
    }

    .nav-links {
        display: none;
        /* Hide top links; accessed via menu toggle button */
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        text-align: left;
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* Hide floating absolute indicators on mobile screens to prevent overlapping */
    .slider-counter,
    .social-links,
    .scroll-indicator {
        display: none !important;
    }

    .scroll-down-arrow {
        bottom: 20px;
    }

    .swiper-pagination-bullets {
        right: 15px !important;
    }

    .about-visual-section,
    .showcase-section,
    .video-motion-section,
    .portfolio-section,
    .site-footer {
        padding: 60px 20px;
    }

    .big-statement {
        font-size: 28px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding: 4px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 350px;
    }

    .portfolio-footer-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .video-wrapper {
        height: 320px;
    }

    .video-poster {
        padding: 25px;
    }

    .video-title {
        font-size: 24px;
    }

    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 18px;
    }

    .ripple-ring {
        width: 65px;
        height: 65px;
    }

    .modal-content {
        width: 95%;
    }
}

/* --- SMALL MOBILE SCREENS (Max Width: 480px) --- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .stat-num {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 10px;
        background: transparent;
        border: none;
        gap: 10px;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 14px;
        border-radius: 4px;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}