/* Variables & Themes */
:root {
    --color-bg: #050505;
    --color-bg-light: #111111;
    --color-text: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --color-accent: #d4af37;
    /* Premium Gold */
    --color-accent-hover: #f1c40f;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Satisfy', cursive;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Preloader */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: var(--color-bg) !important;
    z-index: 9999999 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden !important;
}

.preloader-logo {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    display: block !important;
    margin: 0 !important;
    animation: pulse-center 2s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)) !important;
    pointer-events: none !important;
    user-select: none !important;
}

@keyframes pulse-center {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Disable smooth scroll on mobile to prevent jank/stuttering */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body.loading {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-border {
    position: relative;
}

.glass-border::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--glass-border);
    z-index: -1;
}

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

/* Typography */
.section-title {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary {
    background: transparent;
    color: var(--color-accent);
    padding: 0.4rem 2rem;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 400;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-accent);
    border-radius: 2px;
    font-weight: 500;
    display: inline-block;
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.2rem 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

body.hero-loaded .navbar {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    bottom: auto;
    padding: 0.8rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-top: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    /* Initial centered state */
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn {
    display: none; /* Hidden on desktop */
}

.navbar.sticky .nav-container {
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
    /* CRITICAL: Prevent text wrapping which causes height jank */

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    width: 0;
    margin-right: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.sticky .logo {
    opacity: 1;
    visibility: visible;
    width: 250px;
    /* Adjusted for natural text width */
    margin-right: 2rem;
}

.logo img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    list-style: none;
    transition: all 0.6s ease;
}

.nav-links li {
    position: relative;
    counter-increment: nav-counter;
}

.nav-links li:not(:last-child)::before {
    content: "0" counter(nav-counter);
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 0.7rem;
    font-family: var(--font-body);
    color: var(--color-accent);
    opacity: 0.9;
    letter-spacing: 1px;
}

.nav-links a:not(.btn-primary) {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-accent);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    /* Always hidden on desktop */
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/images/berets-team-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(5, 5, 5, 0.8) 85%,
            var(--color-bg) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 2s ease 0.5s;
}

body.hero-loaded .hero::before {
    opacity: 1;
}

.hero-content {
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease 1.2s, transform 1.5s ease 1.2s;
    /* Appear after overlay starts fading */
}

body.hero-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-title {
    display: none;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-top: 4rem;
    text-decoration: none;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--color-accent);
}

.arrow-down {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.arrow-down::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-text);
    animation: scroll 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* About Cinematic Style */
.about {
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
    /* Give more breathing room for transition */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, var(--color-bg), transparent);
    z-index: 10;
    pointer-events: none;
}

.about-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('public/images/berets-team-4.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    transform: translateY(0);
    will-change: transform;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.about-image-side {
    position: relative;
    z-index: 2;
}

.img-frame-jazzy {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Softer corners */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.img-frame-jazzy img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: brightness(0.85) contrast(1.05);
    transition: filter 0.5s ease;
}

.img-frame-jazzy:hover {
    transform: translateY(-10px) scale(1.02);
}

.img-frame-jazzy:hover img {
    filter: brightness(1) contrast(1.1);
}

.floating-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem 2rem;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--color-accent);
    z-index: 3;
}

.about-content-side {
    position: relative;
}

.decorative-text {
    font-family: var(--font-accent);
    color: var(--color-accent);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.about-body p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-quote {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 2px solid var(--color-accent);
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.about-quote cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-style: normal;
}

.stats-minimal {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
}

.stat-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* Services Jazzy Style */
.services-clean-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-clean-item {
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-clean-item:nth-child(even) {
    align-items: flex-end;
    text-align: right;
}

.service-clean-item:nth-child(even) .service-tags-small {
    justify-content: flex-end;
}

.service-head {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.service-num {
    font-family: var(--font-accent);
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 0.8;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-clean-item:nth-child(even) .service-num {
    left: auto;
    right: -40px;
}

.service-clean-item:hover .service-num {
    opacity: 0.4;
    transform: translateY(-10px) rotate(-5deg);
}

.service-head h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0;
}

.service-body {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.service-body p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-tags-small span {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.service-tags-small span::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.service-clean-item:hover .service-tags-small span::before {
    width: 100%;
}

/* Gallery Section */
.gallery {
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    will-change: transform, opacity;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .service-clean-item {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .service-clean-item:nth-child(even) .service-num {
        left: -20px;
        right: auto;
    }

    .service-clean-item:nth-child(even) .service-tags-small {
        justify-content: flex-start;
    }

    .service-num {
        font-size: 4rem;
        top: -25px;
        left: -20px;
    }

    .service-head h3 {
        font-size: 1.6rem;
    }
}

.services-extra {
    margin-top: 6rem;
    padding: 3rem 0;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.extra-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.extra-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.2;
}

.extra-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: normal;
    white-space: nowrap;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.extra-single-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.extra-single-row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.extra-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 160px;
    cursor: default;
}

.extra-pill:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.pill-icon {
    color: var(--color-accent);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.extra-pill:hover .pill-icon {
    opacity: 1;
    transform: scale(1.1);
}

.pill-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-pill:hover .pill-label {
    color: #fff;
}

@media (max-width: 768px) {
    .extra-single-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .extra-pill {
        width: calc(50% - 0.5rem);
        min-width: unset;
        flex: unset;
        padding: 1.2rem 0.5rem;
    }

    .footer-phone {
        font-size: 2.2rem;
        gap: 0.8rem;
        white-space: nowrap;
    }

    .footer-nav-centered {
        display: none;
        /* Hide footer nav on mobile */
    }
}

@media (max-width: 480px) {
    .extra-pill {
        width: calc(50% - 0.5rem);
        padding: 1rem 0.3rem;
    }

    .pill-label {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .pill-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-phone {
        font-size: 1.6rem;
    }
}

/* Projects - Editorial Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 4rem;
    }
}

.project-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Cinematic aspect ratio */
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(80%) brightness(0.7);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1) saturate(1.1);
}

/* Editorial Info Below Image */
.project-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-info h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Elegant Golden Divider */
.project-info h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-top: 0.8rem;
    transition: width 0.6s ease;
}

.project-item:hover .project-info h4::after {
    width: 80px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
    margin-top: 0.8rem;
}

/* Footer */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 0;
}

.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.logo-centered img {
    height: 240px;
    /* Doubled size */
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    transition: var(--transition);
}

.logo-centered img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
}

.footer-links-horizontal {
    display: flex;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links-horizontal a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-links-horizontal a:hover {
    color: var(--color-accent);
}

.social-links-centered {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.social-links-centered a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.social-links-centered a:hover {
    color: var(--color-accent);
    transform: translateY(-5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.footer-phone-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phone-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
}

.footer-phone {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--color-accent) !important;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    font-weight: normal;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.footer-phone:hover {
    transform: scale(1.03);
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

.footer-email {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 2px;
}

.footer-email:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.footer-contact-info .sep {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (min-width: 1400px) {
    .hero-logo {
        margin-top: 20rem;
    }
}

@media (max-width: 1366px) {
    .hero-logo {
        max-width: 200px;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .scroll-down {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image-side {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-logo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        /* Reduced padding for mobile stability */
    }

    .navbar {
        min-height: 70px;
        /* Consistent height for mobile */
        padding: 0.8rem 0;
        background: transparent; /* Remove initial gradient block */
        border-top: none;
    }

    .navbar.sticky {
        padding: 0.8rem 0;
    }

    .logo span {
        white-space: nowrap;
    }

    .hero {
        align-items: flex-end;
        /* Anchor content to the bottom */
    }

    .navbar.sticky .logo {
        width: 210px; /* Increased to fit "THE BERETS" fully */
        margin-right: 1rem;
    }

    .hero-bg {
        background-image: url('public/images/berets-team-4.jpg');
        background-attachment: scroll;
        background-position: center top;
        height: 100%;
        width: 100%;
        transform: translate3d(0,0,0); /* Force GPU */
    }

    .hero-content {
        transform: none;
        /* Reset vertical shift since we are aligned to end */
        padding: 5rem 2rem 8rem;
        /* Extra bottom padding for the new navbar position */
        width: 100%;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1.2rem;
    }

    /* Force Full Width Stability */
    .hero, 
    section, 
    footer, 
    .navbar,
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Reset potential visibility issues on mobile */
    [data-aos] {
        pointer-events: none; /* Prevent AOS elements from blocking touch during animation */
    }

    body.loaded [data-aos] {
        pointer-events: auto;
    }

    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .hero-slogan {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        bottom: auto !important;
        min-height: auto;
        padding: 1rem 0;
        background: rgba(10, 10, 10, 0.6) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        
        /* Initial state for mobile: Hidden at top for cinematic effect */
        opacity: 0 !important;
        transform: translateY(-100%) !important;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Show navbar on scroll on mobile */
    .navbar.scrolled {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto;
        background: rgba(10, 10, 10, 0.8) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .logo {
        margin-bottom: 0;
        position: relative;
        z-index: 10001;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto !important;
        overflow: visible !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo img {
        height: 35px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 10001; /* Above the overlay */
    }

    .mobile-menu-btn span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--color-accent);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Active Hamburger */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #fff;
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #fff;
    }

    .nav-links {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(20px);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        gap: 2.5rem !important;
        opacity: 0 !important;
        pointer-events: none;
        transition: opacity 0.4s ease !important;
        z-index: 10000;
        display: flex !important;
    }

    .nav-links.active {
        opacity: 1 !important;
        pointer-events: auto;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

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

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links li::before {
        display: none;
    }

    .nav-links a:not(.btn-primary) {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        letter-spacing: 2px;
        padding: 0;
    }

    .nav-links .btn-primary {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
    }
}

/* Jazzy Audio Player */
.about-player {
    margin-top: 5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    backdrop-filter: var(--glass-blur);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
}

.player-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: center;
}

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

.player-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
    /* Prevents flex items from overflowing */
}

.player-info {
    margin-bottom: 0.5rem;
}

.now-playing-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold-color);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.track-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Timeline Row */
.player-timeline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.progress-area {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    /* Slightly more visible background */
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    width: 100%;
    overflow: visible;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-color);
    border-radius: 3px;
    position: relative;
    transition: width 0.1s linear;
}

.progress-fill::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--gold-color);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-area:hover .progress-fill::after {
    opacity: 1;
}

/* Controls Row */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.5rem;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.player-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.player-btn:hover {
    color: var(--gold-color);
    transform: scale(1.1);
}

.player-btn.play {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gold-color);
}

.player-btn.play:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Sticky State (Ultra-Stable Right-Anchored UI) */
.about-player.sticky {
    position: fixed;
    bottom: 2rem;
    right: 5%;
    left: auto;
    width: 120px;
    /* Initial Mini State */
    height: 120px;
    background: rgba(10, 10, 10, 0.98);
    border-radius: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.6s ease;
}

.about-player.sticky:hover {
    width: 70%;
    max-width: 1200px;
    height: 200px;
    /* Further increased height for maximum breathing room */
    border-radius: 100px;
    padding: 1rem 0;
    /* Add vertical padding as requested */
}

.about-player.sticky .player-layout {
    display: flex;
    flex-direction: row-reverse;
    /* Vinyl stays on the right */
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    gap: 2rem;
}

.about-player.sticky .player-left {
    width: 120px;
    /* Mini circle size */
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
}

.about-player.sticky .vinyl-container {
    width: 100% !important;
    height: 100% !important;
}

.about-player.sticky:hover .player-left {
    width: 160px;
    /* Expand slightly for better spacing in full mode */
    height: 160px;
}

.about-player.sticky .player-right {
    opacity: 0;
    visibility: hidden;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    /* Balanced spacing */
    padding: 0 3rem;
    /* Applied top/bottom padding */
    transition: opacity 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.about-player.sticky:hover .player-right {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.about-player.sticky .player-meta {
    margin-bottom: 0.2rem;
}

.about-player.sticky .track-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Enhanced Progress Bar - Systematic Visibility Fix */
.about-player.sticky .progress-area {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex: 1;
    /* Take all available middle space */
    min-width: 200px;
    /* margin: 0 2rem; */
    /* Add horizontal breathing room */
    overflow: visible;
}

.about-player.sticky .progress-fill {
    height: 5px;
    width: 30%;
    /* Test width */
    /* background: var(--gold-color); */
    border-radius: 3px;
    position: relative;
}

.about-player.sticky .time-info {
    display: none;
}

.about-player.sticky .progress-fill::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    /* Keep visible for testing */
    box-shadow: 0 0 10px var(--gold-color);
}

.about-player.sticky .vinyl-container::after {
    padding: 6px 15px;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.about-player.sticky .player-btn.play {
    width: 50px;
    /* Slightly smaller for sticky state */
    height: 50px;
}

.about-player.sticky .player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: 1rem;
}

.about-player.sticky .player-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.about-player.sticky .video-toggle,
.about-player.sticky .playlist-toggle {
    height: 44px !important;
    padding: 0 1.5rem !important;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-player.sticky .video-toggle:hover,
.about-player.sticky .playlist-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/* Mobile Sticky Player Optimization */
@media (max-width: 768px) {
    .about-player.sticky {
        bottom: 1rem;
        right: 1rem;
        width: 70px;
        height: 70px;
        border-radius: 35px;
    }

    .about-player.sticky:hover {
        width: calc(100% - 2rem);
        right: 1rem;
        height: 120px;
        border-radius: 20px;
        padding: 0.5rem 0;
    }

    .about-player.sticky .player-layout {
        gap: 1rem;
    }

    .about-player.sticky .player-left {
        width: 70px;
        height: 70px;
    }

    .about-player.sticky:hover .player-left {
        width: 100px;
        height: 100px;
    }

    .about-player.sticky .vinyl-record {
        width: 70px !important;
        height: 70px !important;
    }

    .about-player.sticky:hover .vinyl-record {
        width: 100px !important;
        height: 100px !important;
    }

    .about-player.sticky .player-right {
        padding: 0 1rem;
        gap: 0.4rem;
    }

    .about-player.sticky .track-title {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .about-player.sticky .player-controls {
        gap: 0.5rem;
    }

    .about-player.sticky .player-btn.play {
        width: 40px;
        height: 40px;
    }

    .about-player.sticky .player-btn i {
        font-size: 0.8rem;
    }

    .about-player.sticky .progress-area {
        height: 3px;
    }

    .about-player.sticky .time-info {
        font-size: 0.7rem;
    }

    .about-player.sticky .player-actions {
        gap: 0.5rem;
    }

    .about-player.sticky .video-toggle,
    .about-player.sticky .playlist-toggle {
        height: 36px !important;
        padding: 0 0.8rem !important;
        font-size: 0.7rem;
    }
}

/* Video Mode Card */
.about-player.sticky.video-mode {
    width: 400px;
    max-width: 90vw;
    height: auto;
    min-height: 550px;
    right: 2rem;
    left: auto;
    transform: none;
    padding: 1.5rem;
    padding-bottom: 3rem;
    border-radius: 30px;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: flex-start;
}

.about-player.sticky.video-mode .player-layout {
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
}

.about-player.sticky.video-mode .video-container {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-player.sticky.video-mode .video-container iframe {
    width: 100% !important;
    height: 100% !important;
}

.about-player.sticky.video-mode .close-video {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-player.sticky.video-mode .player-left {
    display: none;
}

.about-player.sticky.video-mode .player-right {
    opacity: 1;
    visibility: visible;
    padding: 0 1rem;
    width: 100%;
    text-align: center;
}

.about-player.sticky.video-mode .track-title {
    white-space: normal;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-player.sticky.video-mode .player-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.about-player.sticky.video-mode .progress-area {
    width: 100%;
    margin: 1rem 0;
}

.about-player.sticky.video-mode .volume {
    display: none;
}

.about-player.sticky.video-mode .btn-label {
    display: none;
}

.about-player.sticky .vinyl-record {
    width: 120px !important;
    height: 120px !important;
}

/* Vinyl Record Styles */
.vinyl-container {
    position: relative;
    width: 260px;
    height: 260px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-container:hover {
    transform: scale(1.02);
}

.vinyl-record {
    width: 100%;
    height: 100%;
    background: #080808;
    border-radius: 50%;
    position: relative;
    background-image:
        repeating-radial-gradient(circle at center,
            #111 0px,
            #111 1px,
            #1a1a1a 2px,
            #111 3px),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.9),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotate 10s linear infinite;
    animation-play-state: paused;
}

.about-player.playing .vinyl-record {
    animation-play-state: running;
}

.vinyl-label {
    width: 32%;
    height: 32%;
    background: var(--color-accent);
    border-radius: 50%;
    background-image: url('public/images/logo.png');
    background-size: cover;
    background-position: center;
    border: 4px solid #000;
}

.about-player.sticky .vinyl-record {
    width: 120px;
    height: 120px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.player-info {
    margin-bottom: 0;
}

.track-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    font-weight: 500;
    line-height: 1.4;
}

.player-info::before {
    content: 'Now Playing';
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 10px;
    opacity: 0.7;
}

.player-btn:hover {
    color: var(--color-accent);
    opacity: 1;
    transform: scale(1.15);
}

.player-btn.play {
    color: var(--color-accent);
    transform: scale(1.5);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 14px;
}

.player-btn.play:hover {
    transform: scale(1.6);
    background: rgba(212, 175, 55, 0.15);
}

.progress-area {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    width: 0%;
    height: 5px;
    background: var(--color-accent);
    border-radius: 3px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -7px;
    top: -7px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-accent);
}

.player-time {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-family: monospace;
    min-width: 60px;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.video-container {
    display: none;
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-height: 200px;
}

.about-player.video-mode .video-container {
    display: block;
}

#yt-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.close-video {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-video:hover {
    background: #ff0000;
    transform: scale(1.1);
}

.video-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px;
    opacity: 1 !important;
    cursor: pointer;
}

.video-toggle.active {
    background: #ff0000 !important;
    color: #fff !important;
    border-color: #ff0000 !important;
}

/* Video Mode Logic */
.about-player.video-mode .player-left {
    display: none;
}

.about-player.video-mode .player-layout {
    grid-template-columns: 1fr;
}

.about-player.video-mode.sticky .player-layout {
    display: flex;
    flex-direction: column;
}

.about-player.video-mode.sticky .video-container {
    margin-bottom: 1rem;
}

.about-player.video-mode.sticky #yt-player {
    height: 150px;
}

.vinyl-container {
    cursor: pointer;
    transition: var(--transition);
}

.vinyl-container:hover .vinyl-record {
    filter: brightness(1.2);
}

.vinyl-container::after {
    content: 'PLAY';
    /* Default state */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    /* Gold background for high-end feel */
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-player.playing .vinyl-container::after {
    content: 'PAUSE';
}

.vinyl-container:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.vinyl-container:hover::after {
    opacity: 1;
}

.playlist-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px;
    opacity: 1 !important;
}

.playlist-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--color-accent) !important;
}

.playlist-toggle.active {
    background: var(--color-accent) !important;
    color: #000 !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-player.sticky .btn-label {
    display: none;
    /* Hide text on sticky to save space */
}

.about-player.sticky .playlist-toggle {
    padding: 8px !important;
}

.playlist-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
}

.playlist-container.active {
    display: block;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.track-count {
    color: var(--color-accent);
}

.playlist-list {
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}

.playlist-list::-webkit-scrollbar {
    width: 4px;
}

.playlist-list::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--color-accent);
}

.playlist-item .item-title {
    font-size: 1rem;
    color: var(--color-text);
}

@media (max-width: 992px) {
    .player-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .vinyl-record {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .player-controls {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-player {
        padding: 2.5rem 1.5rem;
    }

    .track-title {
        font-size: 1.3rem;
    }
}

/* Expert Quote Section */
.expert-quote {
    background: linear-gradient(180deg, var(--color-bg), var(--color-bg-light));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cinematic-quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-text);
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.4;
    position: relative;
}

.quote-author {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* FAQ Section */
.bg-dark-soft {
    background: #0a0a0a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cinematic-quote {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}