/* Reset & Root */
:root {
    --black: #000000;
    --charcoal: #111111;
    --gold: #F0AA25;
    --white: #ffffff;
    --grey: #888888;
    --font-heading: 'Proxima Nova', sans-serif;
    --font-body: 'Proxima Nova', sans-serif;
    --pad-x: 5vw;
    --pad-y: 120px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    /* Decreased base body font size */
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.pad-section {
    padding: var(--pad-y) var(--pad-x);
}

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

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

.mt-high {
    margin-top: 80px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bold as requested */
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Decreased MAX from 3.5rem to 3rem, MIN to 2rem */
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-body {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    /* Decreased body text */
    color: var(--grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gold-text {
    color: var(--gold);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--gold);
    letter-spacing: 15px;
    text-transform: uppercase;
    opacity: 0;
    /* Will be animated via GSAP */
    position: relative;
    padding-left: 15px;
    /* Offset for letter spacing visual centering */
}

/* Base Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px var(--pad-x);
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px var(--pad-x);
    border-bottom: 1px solid rgba(240, 170, 37, 0.2);
}

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

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}

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

.btn-gold {
    border: 1px solid var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-toggle {
    display: none;
}

/* Showreel Section / Scroll Indicator */



.showreel-scroll-indicator {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}

.showreel-scroll-text {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    background: linear-gradient(90deg, transparent, rgba(240, 170, 37, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmerText 3s infinite linear;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.5;
}

.showreel-scroll-line {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.showreel-scroll-line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: showreelScrollDrop 2s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes shimmerText {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes showreelScrollDrop {
    0% {
        top: -100%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Hero Section - Premium Setup */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    /* Enhancing video quality via CSS filters for a premium color-graded look */
    filter: contrast(1.15) saturate(1.25) brightness(1.05) drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

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

.hero.left-align {
    justify-content: flex-start;
    text-align: left;
}

.hero.left-align .hero-content {
    align-items: flex-start;
    text-align: left;
    margin-left: 5%;
    padding-top: 55vh;
    padding-bottom: 5vh;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--pad-x);
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-headline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(20px);
}

.main-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    /* Slightly decreased main headline */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.hero-desc {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Decreased hero description size */
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.hero.left-align .hero-desc {
    margin: 0 0 40px 0;
}

.hero-impact {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 1.5px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    text-decoration: none;
}

.hero-impact:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-hint {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-family: var(--font-body);
    transition: color 0.4s ease;
}

.hero-impact:hover .btn-hint {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDrop 2.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDrop {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* Who We Are - Premium Setup */
.who-we-are {
    position: relative;
    background-color: var(--black);
    padding-top: 150px;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(240, 170, 37, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.who-we-are .container {
    position: relative;
    z-index: 1;
}

.who-we-are .section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.who-we-are .section-body {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.who-we-are .section-body br+br {
    content: "";
    display: block;
    margin-top: 30px;
}

/* Mobile Text Wrapper with Transparent Border */
.mobile-text-wrapper {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .mobile-text-wrapper {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 40px 20px;
        backdrop-filter: blur(5px);
        margin: 0 auto;
        width: 90%;
        max-width: 450px;
        text-align: center;
    }
}

.vert-line-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 120px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(240, 170, 37, 0) 0%, rgba(240, 170, 37, 0.1) 100%);
}

.vert-line {
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--gold), rgba(240, 170, 37, 0.2));
    box-shadow: 0 0 10px rgba(240, 170, 37, 0.5);
}

/* How We Work Timeline */
.how-we-work {
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(240, 170, 37, 0.1);
    border-bottom: 1px solid rgba(240, 170, 37, 0.1);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    padding: 0 40px;
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-item.right .timeline-content {
    text-align: left;
}

.timeline-spacer {
    width: 45%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Grid - Premium Setup */
.about-grid {
    background-color: var(--black);
    position: relative;
}

.about-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240, 170, 37, 0.03) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.about-grid .container {
    position: relative;
    z-index: 1;
}

.modular-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media screen and (min-width: 900px) {
    .modular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Bento Grid Spans */
    .module-card:nth-child(3),
    .module-card:nth-child(4) {
        grid-column: span 2;
    }
}

.module-card {
    padding: 50px;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.module-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 170, 37, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 170, 37, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(240, 170, 37, 0.2);
}

.module-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.module-card:hover .card-line {
    width: 100%;
}

.module-num {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.module-num::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.module-card:hover .module-num::after {
    width: 100%;
}

.card-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 1px;
}

.card-body {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.module-card ul.card-body {
    padding-left: 20px;
    padding-top: 5px;
}

.module-card ul.card-body li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.module-card ul.card-body li::marker {
    color: var(--gold);
}

/* Team List within Card */
.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #111;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member:hover .team-img {
    filter: grayscale(0%);
}

.team-member:hover {
    background: rgba(240, 170, 37, 0.03);
    border-color: rgba(240, 170, 37, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
}

.team-member p.team-role {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 500;
}

.team-member p.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Our Promise Special Styling */
.module-card:nth-child(4) {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(80, 60, 10, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-color: rgba(240, 170, 37, 0.2);
}

.module-card:nth-child(4) .module-num {
    margin-bottom: 15px;
}

.module-card:nth-child(4) .module-num::after {
    left: 50%;
    transform: translateX(-50%);
}

.module-card:nth-child(4) .card-title {
    font-size: 2.8rem;
    color: var(--gold);
}

.module-card:nth-child(4) .card-body {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    font-weight: 300;
}

/* Services */
.services {
    background-color: var(--charcoal);
}

/* Expertise Grid - Premium Text Layout */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (min-width: 1100px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    padding: 40px 35px;
    background-color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Context for overlays */
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
    z-index: -2;
}

.expertise-card:hover .card-bg {
    transform: scale(1.08);
    /* Slow luxurious zoom */
    opacity: 0.95;
    /* Gently brighten image on hover */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(5, 5, 5, 0.85) 100%);
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease;
}

.expertise-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.5) 0%, rgba(5, 5, 5, 0.75) 100%);
}

.expertise-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 170, 37, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 170, 37, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(240, 170, 37, 0.1);
}

.expertise-card:hover .expertise-glow {
    opacity: 1;
    transform: scale(1.2);
}

.expertise-card .card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.expertise-card:hover .card-line {
    width: 100%;
}

.expertise-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise-content h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.expertise-card:hover .expertise-content h3 {
    color: var(--gold);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expertise-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.expertise-list li::before {
    content: '■';
    color: var(--gold);
    font-size: 0.5rem;
    position: absolute;
    left: 0;
    top: 7px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expertise-card:hover .expertise-list li {
    color: rgba(255, 255, 255, 0.9);
}

.expertise-card:hover .expertise-list li::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Photography Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 8px;
}

.port-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.port-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.port-item:hover .port-bg {
    transform: scale(1.05);
}

/* Modifiers for Masonry structure */
.port-tall {
    grid-row: span 2;
}

.port-wide {
    grid-column: span 2;
}

.port-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Videography Portfolio */
/* Videography Portfolio Swiper Styles */
.video-swiper {
    width: 100%;
    padding: 0 0 60px 0;
    overflow: hidden;
    /* Prevent horizontal scrollbars */
}

.swiper-slide {
    width: 60vw;
    max-width: 700px;
    height: 50vh;
    min-height: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
    filter: brightness(0.4);
    opacity: 0.5;
    transform: scale(0.85);
    /* Slightly smaller when not active */
}

/* Active Slide Styling */
.swiper-slide-active {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1);
    /* Full size when active */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    /* Ensure it stays on top of neighbors */
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Text Overlay */
.video-overlay-item {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
    /* Fade in slightly after active slide transition */
}

.swiper-slide-active .video-overlay-item {
    opacity: 1;
}

.video-overlay-subtitle {
    display: inline-block;
    color: var(--primary);
    /* Using primary color (red) */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.video-overlay-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
    pointer-events: none;
    /* Let clicks pass through if we add logic later, or make it clickable */
}

.swiper-slide-active .play-button-overlay {
    opacity: 1;
}

.play-circle {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-circle::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 25px solid var(--primary);
    /* Deep red triangle */
    border-bottom: 15px solid transparent;
    margin-left: 8px;
    /* Offset to visually center the triangle */
}

.swiper-slide-active:hover .play-circle {
    transform: scale(1.1);
    cursor: pointer;
}

/* Custom Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom Pagination Dots */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 10px;
    height: 10px;
}

@media screen and (max-width: 768px) {
    .swiper-slide {
        width: 85vw;
        height: 40vh;
        min-height: 250px;
    }

    .video-overlay-item {
        top: 20px;
        left: 20px;
    }

    .play-circle {
        width: 60px;
        height: 60px;
    }

    .play-circle::after {
        border-top: 10px solid transparent;
        border-left: 18px solid var(--primary);
        border-bottom: 10px solid transparent;
        margin-left: 6px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* Hide arrows on small mobile, rely on swipe */
    }
}

/* Contact & Footer */
.contact-footer {
    background-color: var(--black);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 80px;
}

.contact-info {
    flex: 1;
}

.contact-brand {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-hubs {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.8;
}

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    margin-top: 35px;
    max-width: 500px;
}

.contact-region {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gold-separator-small {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 25px;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 25px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-phones p {
    color: var(--grey);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-socials {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.contact-socials a {
    color: var(--gold);
    transition: color 0.3s, transform 0.3s;
}

.contact-socials a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    flex: 1;
    min-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
}

.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
    padding: 10px;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-submit {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-minimal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    color: var(--grey);
    font-size: 0.8rem;
    text-align: center;
}


/* Responsive */
@media screen and (max-width: 900px) {
    .modular-grid {
        grid-template-columns: 1fr;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
    }

    /* Fixed alignment and padding for Hero Section on mobile */
    .hero.left-align .hero-content {
        align-items: flex-start;
        text-align: left;
        margin-left: 0;
        padding-top: 25vh;
        /* Pushes nicely but flexibly */
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
    }

    .hero-video {
        display: none;
    }

    .hero-mobile-bg {
        display: block;
    }

    .main-headline {
        font-size: clamp(2.1rem, 7vw, 3rem);
        /* Smaller on mobile to prevent clipping */
        letter-spacing: 1px;
    }

    .sub-headline {
        letter-spacing: 5px;
        /* Tighter letter spacing to prevent overflow */
    }

    .hero.left-align .hero-desc {
        margin: 0 0 30px 0;
        text-align: left;
    }

    /* Compact scroll text for mobile to prevent overflow and lower it */
    .showreel-scroll-indicator {
        bottom: -25px;
        /* Moved further down away from buttons */
    }

    .showreel-scroll-text {
        letter-spacing: 2px;
        font-size: 0.65rem;
    }

    .showreel-scroll-line {
        height: 60px;
        /* Make the line slightly shorter on mobile to fit */
    }

    /* Better spacing inside padded sections */
    .pad-section {
        padding: 60px 0;
    }

    /* Override any specific large paddings */
    .who-we-are {
        padding-top: 80px;
    }

    /* Apply mobile-text style formatting to cards (transparent border, side spacing) */
    .module-card,
    .expertise-card,
    .review-card {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        box-shadow: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
        max-width: 450px !important;
    }

    .module-card {
        padding: 40px 20px !important;
    }

    .expertise-card {
        padding: 30px 20px !important;
    }

    .review-card {
        padding: 0 20px 40px !important;
    }

    .contact-container {
        flex-direction: column;
        gap: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-form-wrapper {
        min-width: 100%;
        padding: 40px 20px;
    }

    .footer-minimal {
        text-align: center;
        flex-direction: column-reverse;
        gap: 15px;
    }

    .navbar,
    .navbar.scrolled {
        padding: 20px 15px 20px 0;
    }

    .brand-logo {
        margin-left: -20px;
    }

    .brand-logo img {
        transform: scale(2.6) !important;
    }

    .menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--gold);
        left: 0;
        transition: all 0.3s ease;
    }

    .menu-toggle .bar:nth-child(1) {
        top: 0;
    }

    .menu-toggle .bar:nth-child(2) {
        bottom: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        display: flex;
        /* Override display: none from earlier */
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .timeline-line {
        left: 25px;
        transform: none;
    }

    .timeline-dot {
        left: 25px;
        transform: translateX(-50%);
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        position: relative;
        margin-bottom: 40px;
    }

    .timeline-spacer {
        display: none;
    }

    .timeline-content,
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        width: 100%;
        padding: 0 0 0 65px;
        text-align: left;
    }
}

/* Client Reviews Grid */
.reviews {
    background-color: var(--black);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.review-card {
    background-color: var(--charcoal);
    border: 1px solid rgba(240, 170, 37, 0.15);
    /* Subtle gold border to fit theme */
    border-radius: 8px;
    padding: 0 30px 40px;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-top: 60px;
    /* Space for the overlapping image */
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.review-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: -60px auto 20px;
    border: 4px solid var(--black);
    background-color: var(--black);
    position: relative;
    z-index: 2;
}

.review-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    letter-spacing: 1px;
}

.review-role {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.read-more {
    color: var(--gold);
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.3s;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    opacity: 1;
}

.more-text {
    display: none;
}

.dots {
    display: inline;
}

/* Visibility classes for JS animations */
.fade-up,
.fade-in,
.slide-up,
.slide-right {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Overrides specific to newly added sections */
@media screen and (max-width: 900px) {
    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-top: 100px;
        padding: 0 5vw 20px 5vw;
        /* Padding for scrollbar and alignment */
        margin-left: -5vw;
        margin-right: -5vw;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Adds artificial spacing at the start and end of the slider */
    .reviews-grid::before,
    .reviews-grid::after {
        content: '';
        flex: 0 0 5vw;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-top: 60px;
    }
}