:root {
    --color-gold: #D4AF37;
    --color-gold-light: #E7C658;
    --color-black: #0A0A0A;
    --color-black-light: #141414;
    --color-text-light: #EAEAEA;
    --color-text-medium: #A0A0A0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-black);
    color: var(--color-text-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin: 0 0 25px 0;
}

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

.preloader-logo {
    width: 500px;
    height: auto;
    opacity: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.promo-text {
    margin: 0;
    font-size: 0.95em;
    font-weight: 500;
}

.promo-text .discount-highlight {
    color: var(--color-gold);
    font-weight: 700;
    margin: 0 4px;
}

.promo-text .promo-link {
    color: var(--color-text-light);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 8px;
    transition: color 0.3s ease;
}

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


.navbar {
    background-color: var(--color-black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1003;
}

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

.navbar .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 800;
    font-size: 2em;
    letter-spacing: 2px;
    color: var(--color-text-light);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column .logo {
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-light);
    margin-bottom: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .footer-column .logo span {
        font-size: 0.8em;
        line-break: auto;
        gap: 2px;
    }
}

.logo-icon {
    height: 45px;
    width: auto;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--color-gold);
    color: white;
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    border-radius: 0px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    height: 1.5rem;
}

.btn-secondary:hover {
    background-color: transparent;
    color: black !important;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    position: relative;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links li a:hover {
    color: var(--color-gold);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* --- HERO STYLES --- */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    color: #fff;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenburns 15s ease-out alternate-reverse infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 90%;
    max-width: 850px;
    text-align: center;
}

.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7em;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 10px 0 20px 0;
}

.hero-subheadline {
    font-size: 1.25em;
    line-height: 1.6;
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 30px;
}

.swiper-pagination {
    z-index: 4;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-gold);
}

.hero-content>* {
    opacity: 0;
}

/* --- RESPONSIVE STYLES FOR HERO --- */

@media (max-width: 992px) {
    .hero-headline {
        font-size: 5em;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3.2em;
        letter-spacing: 1px;
        word-break: break-word;
    }

    .hero-subheadline {
        font-size: 1.1em;
        word-break: break-word;
    }
}



/* --- General Headline Styles --- */
.sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--color-text-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-headline,
.services-headline,
.why-us-headline,
.portfolio-header .about-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5em;
    line-height: 1.1;
    color: var(--color-text-light);
    text-transform: uppercase;
}

/* --- About Us Section --- */
.about-section {
    padding: 150px 0;
    background-color: var(--color-black);
    overflow: hidden;
}

.about-layout-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 30px;
}

.about-image-column {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-column {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
    background-color: var(--color-black-light);
    padding: 60px;
    border-radius: 8px;
    z-index: 2;
}



/* --- Services Section --- */
.services-section {
    padding: 120px 0;
    background-color: var(--color-black);
}

.services-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

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

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
}

.service-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px;
    color: var(--color-text-light);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    z-index: 2;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    line-height: 1;
    color: var(--color-text-light);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.service-description {
    font-size: 1em;
    line-height: 1.5;
    color: var(--color-text-medium);
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

.service-arrow {
    font-size: 2.5em;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    color: var(--color-gold);
}

.service-card:hover .service-title,
.service-card:hover .service-description {
    color: var(--color-gold);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* --- Achievements Section --- */
.achievements-section {
    background-color: var(--color-black-light);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.achievement-item {
    padding: 40px 20px;
    border-radius: 8px;
    background: transparent;
}

.achievement-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 6em;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.achievement-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.achievement-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.7;
    color: var(--color-text-medium);
    max-width: 350px;
    margin: 0 auto;
}

/* --- Why Us Section --- */
.why-us-section {
    padding: 67px 0;
    background-color: var(--color-black);
}

/* --- Marquee Section --- */
.marquee-section {
    width: 100%;
    padding: 40px 0;
    background-color: #0d0b09;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: marquee 10s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4em;
    color: var(--color-gold);
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 40px;
    letter-spacing: 2px;
}

.marquee-divider {
    font-size: 2.5em;
    color: var(--color-gold);
    opacity: 0.5;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Portfolio Section --- */
.portfolio-section {
    padding: 120px 0;
    background-color: #0d0b09;
    text-align: center;
}

.portfolio-filters {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--color-text-medium);
    color: var(--color-text-medium);
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}


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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    background-color: var(--color-black-light);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image-wrapper {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

/* --- DESKTOP STYLES (Overlay) --- */
.portfolio-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-text {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.portfolio-text p {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9em;
    margin: 0;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--color-black-light);
}

.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 60px 80px;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    margin: 0 auto 20px auto;
}

.testimonial-quote {
    font-size: 1.2em;
    font-style: italic;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8em;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background-color: var(--color-gold);
    color: #000;
}

.testimonial-nav.prev {
    left: 20px;
}

.testimonial-nav.next {
    right: 20px;
}

/* --- Footer Section --- */
.site-footer {
    background-color: #0d0b09;
    color: var(--color-text-medium);
    font-family: 'Montserrat', sans-serif;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    color: var(--color-text-light);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-text p {
    font-size: 1em;
    line-height: 1.7;
    margin: 0;
}

.subscribe-form form {
    display: flex;
}

.subscribe-form input {
    flex-grow: 1;
    background-color: var(--color-black-light);
    border: 1px solid #333;
    padding: 18px 20px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-light);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.subscribe-form input::placeholder {
    color: var(--color-text-medium);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.subscribe-form button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--color-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--color-gold);
    color: var(--color-black);
    transition: all 0.4s ease;
}

.subscribe-form button:hover {
    background-color: transparent;
    color: var(--color-gold);
}

/* --- Footer Section --- */
.main-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    /* New three-column layout */
    gap: 50px;
    padding: 80px;
    align-items: start;
}

.footer-column .logo {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-column .contact-info {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--color-text-light);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    color: #fff;
    background-color: #222;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-column.links h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links li {
    margin-bottom: 15px;
}

.footer-column.links a {
    color: var(--color-text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column.links a:hover {
    color: var(--color-gold);
}

.sub-footer {
    padding: 30px 80px;
    background-color: #000;
    font-size: 0.9em;
}

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

.sub-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.sub-footer .legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.sub-footer .legal-links a:hover {
    color: var(--color-gold);
}

/* New styles for the location column in the footer */
.footer-column.location h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.map-container-footer {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 180px;
}

.map-container-footer iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-column .address-text {
    font-size: 1em;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin: 0 0 25px 0;
    padding: 0;
}

.footer-column.location .btn-secondary {
    padding: 12px 28px;
    font-size: 0.9em;
}

/* Responsive adjustments for the new 3-column footer */
@media (max-width: 992px) {
    .main-footer {
        grid-template-columns: 1fr;
        /* Stack on tablets and mobile */
        text-align: center;
    }

    .footer-column {
        margin-bottom: 40px;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .social-icons {
        justify-content: center;
    }
}


/* --- Utility Classes --- */
.text-gold {
    color: var(--color-gold);
}


/* --- Button System --- */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--color-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
}

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


/* --- Micro-interactions & Final Polish --- */
.achievement-item {
    transition: transform 0.4s ease, background 0.5s ease, box-shadow 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.15);
}

.btn-primary:active,
.btn-secondary:active,
.subscribe-form button:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: #000;
    transform: translateY(-4px);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .container-wide {
        padding: 0 20px;
    }

    .main-footer,
    .subscribe-section {
        padding: 60px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1003;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        max-width: 300px;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

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

    .hamburger.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-headline {
        font-size: 5em;
    }

    .about-headline,
    .why-us-headline,
    .services-headline {
        font-size: 3.5em;
    }

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

    .about-image-column,
    .about-text-column {
        grid-column: 1 / -1;
    }

    .about-text-column {
        margin-top: -80px;
        position: relative;
    }

    .why-us-interactive-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image-panel {
        height: 400px;
    }

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

    .achievements-grid {
        gap: 20px;
    }

    .subscribe-section,
    .main-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .hero-content {
        padding: 0 5%;
    }

    .hero-headline {
        font-size: 3.2em;
        letter-spacing: 1px;
        word-break: break-word;

    }

    .hero-subheadline {
        font-size: 1.1em;
        word-break: break-word;
    }

    .about-headline,
    .why-us-headline,
    .services-headline {
        font-size: 2.8em;
    }

    .about-text-column {
        padding: 40px;
    }

    .stats-integrated {
        flex-direction: column;
        gap: 30px;
    }

    .accordion-header h3 {
        font-size: 1.5em;
    }

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

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .portfolio-text {
        position: static;
        /* Change from absolute to static */
        opacity: 1;
        transform: none;
        background: none;
        padding: 20px;
    }

    .portfolio-text h3 {
        color: var(--color-text-light);
        /* Change text color for visibility */
        font-size: 1.2em;
    }

    .portfolio-text p {
        color: var(--color-text-medium);
        font-size: 0.8em;
    }

    .marquee-item {
        font-size: 3em;
    }

    .testimonial-wrapper {
        padding: 50px 20px;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-container {
        height: 280px;
    }

    .subscribe-section,
    .main-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subscribe-form form {
        flex-direction: column;
        gap: 10px;
    }

    .footer-column.about,
    .footer-column.about p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .sub-footer .container-wide {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .legal-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .sub-footer .legal-links a {
        margin-left: 0;
    }
}



/* --- VLOG/BLOG PAGE STYLES --- */

.page-header {
    text-align: center;
    padding: 100px 0;
    background-color: var(--color-black-light);
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5em;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-medium);
}

.post-grid-section {
    padding: 100px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    display: block;
    text-decoration: none;
    color: var(--color-text-light);
    background-color: var(--color-black-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.media-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.media-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.post-card-content {
    padding: 30px;
}

.post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    line-height: 1.2;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--color-text-medium);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-cta {
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.post-card:hover .post-cta {
    color: var(--color-gold);
}


.page-header {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--color-black-light) 0%, var(--color-black) 100%);
}

.sub-heading {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--color-text-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5em;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-medium);
}

.post-grid-section {
    padding-bottom: 100px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    display: block;
    text-decoration: none;
    color: var(--color-text-light);
    background-color: var(--color-black-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.post-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.media-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.media-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.post-card-content {
    padding: 30px;
}

.post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    line-height: 1.2;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--color-text-medium);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-cta {
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.post-card:hover .post-cta {
    color: var(--color-gold);
}

.single-post-section {
    padding: 80px 0;
}

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

.back-link {
    display: inline-block;
    color: var(--color-text-medium);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

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

.post-header {
    text-align: center;
    margin-bottom: 50px;
}

.post-meta {
    font-size: 0.9em;
    color: var(--color-text-medium);
}

/* GALLERY TRIGGER THUMBNAIL */
.post-hero-media-trigger {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 60px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-hero-media-trigger img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.post-hero-media-trigger:hover img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.post-hero-media-trigger:hover .play-button-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.play-button-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.play-button-icon span {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-hero-media-trigger:hover .play-button-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.post-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8em;
    color: var(--color-gold);
    margin: 50px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.vlog-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.event-details-box {
    background-color: var(--color-black-light);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-details-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8em;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.event-details-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-details-box li {
    color: var(--color-text-medium);
    margin-bottom: 10px;
    font-size: 0.95em;
}

.highlight-list {
    list-style-type: '★';
    padding-left: 25px;
}

.highlight-list li {
    padding-left: 15px;
    margin-bottom: 15px;
    color: var(--color-text-medium);
}

.highlight-list li::marker {
    color: var(--color-gold);
}

/* --- FANCYBOX GALLERY CUSTOMIZATION --- */
.fancybox__button {
    color: var(--color-gold);
}

.fancybox__button:hover {
    color: #fff;
    background: var(--color-gold);
}

.fancybox__caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    padding: 40px 20px 20px 20px;
}



@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1003;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        max-width: 300px;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

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

    .hamburger.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 3.2em;
    }

    .page-description {
        font-size: 1.1em;
    }

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

    .vlog-intro-grid {
        grid-template-columns: 1fr;
    }

    .event-details-box {
        margin-top: 20px;
    }

}

.featured-post-section {
    padding: 100px 0;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 60px;
    text-decoration: none;
    background-color: var(--color-black-light);
    border-radius: 8px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 40px;
}

.featured-post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    line-height: 1.2;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.featured-post-card:hover .featured-post-title {
    color: var(--color-gold);
}

.featured-post-excerpt {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 30px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    border: 0;
    margin: 0 auto;
}

.articles-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    background-color: var(--color-black);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-height: 200px;
}

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

.article-category {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-medium);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }

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



/* --- BLOG POST TEMPLATE STYLES --- */

.blog-featured-image {
    margin: 0 auto 60px auto;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

.blog-featured-image img {
    width: 100%;
    display: block;
}

.blog-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8em;
    color: var(--color-gold);
    margin: 50px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {

    .single-post-section {
        padding: 60px 0;
    }

    .post-header {
        margin-bottom: 40px;
    }

    .post-hero-media-trigger,
    .blog-featured-image {
        margin-bottom: 40px;
    }

    .post-content h2,
    .blog-content h2 {
        font-size: 2.2em;
        margin-top: 40px;
    }
}

@keyframes kenburns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

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

/* --- WhatsApp Floating Action Button --- */
.whatsapp-fab {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}


/* --- Location Modal Styles --- */
.location-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.location-modal-content {
    background-color: var(--color-black-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 650px;
    position: relative;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.location-modal-overlay.active .location-modal-content {
    transform: scale(1);
}

.location-modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
}

.address-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 30px;
}

.location-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-text-medium);
    font-size: 2.5em;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.location-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}


@media (max-width: 768px) {
    .whatsapp-fab {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-fab svg {
        width: 28px;
        height: 28px;
    }

    .location-modal-content {
        padding: 25px;
    }

    .location-modal-content h3 {
        font-size: 2em;
    }

    .address-text {
        font-size: 1em;
    }
}

/* --- Featured Reels Section (REPLACEMENT BLOCK) --- */
.reels-section {
    padding: 120px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.reels-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.reels-header p {
    font-size: 1.2em;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.reels-slider-wrapper {
    position: relative;
    padding: 0 40px;
    /* Creates space on the sides for the arrows */
}

.reels-swiper {
    padding: 0 !important;
    /* Resets any previous padding */
}

.reel-card {
    display: block;
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.reel-card:hover {
    transform: scale(1.03);
}

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

.reel-card:hover img {
    transform: scale(1.1);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    justify-content: flex-end;
    padding: 25px;
    align-items: center;
    flex-direction: column;
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.3s ease;
    opacity: 0;
}

.reel-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.play-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

.reel-overlay h4 {
    margin: 0;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    text-align: left;
    width: 100%;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.reel-card:hover .reel-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

.reels-section {
    padding: 80px 0;
    background-color: var(--color-black);
    position: relative;
}

.reels-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.reels-header p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
}

.reel-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background-color: var(--color-black-light);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reel-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

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

.reel-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reel-card:hover .reel-card-overlay {
    opacity: 1;
}

.reel-card-overlay .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reel-card:hover .play-icon {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

.reel-card-overlay h4 {
    margin: 0;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Loading state for reels */
.reel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
    z-index: 2;
    opacity: 0;
}

.reel-card.loading::before {
    opacity: 1;
}

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

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

/* Mobile optimizations */
@media (max-width: 768px) {
    .reels-section {
        padding: 60px 0;
    }

    .reels-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .reel-card-overlay {
        opacity: 1;
        /* Always show on mobile for better UX */
        padding: 20px;
    }

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

    .play-icon svg {
        width: 24px;
        height: 24px;
    }

    .reel-card-overlay h4 {
        font-size: 1.1em;
    }

    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .reel-card:hover {
            transform: none;
        }

        .reel-card:hover .reel-card-image img {
            transform: none;
        }
    }
}

/* Fancybox customization for reels */
.fancybox-reel .fancybox__content {
    background: transparent;
    padding: 0;
    max-width: 420px;
    /* Phone-like width */
}

.fancybox-reel .fancybox__content .fancybox__slide .f-iframe {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    border: 0;
}

.fancybox__backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.fancybox__toolbar .f-button {
    background: rgba(20, 20, 20, 0.7);
    color: var(--color-gold);
}

/* Touch-friendly close button */
.fancybox__button--close {
    width: 44px;
    height: 44px;
    top: 20px;
    right: 20px;
}

/* Add a subtle scale animation when opening reels */
.fancybox__container {
    animation: fancybox-zoom-in 0.3s ease;
}

@keyframes fancybox-zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    /* --- REELS SECTION MOBILE STYLES (ENHANCED) --- */
    .reels-section {
        padding: 60px 0;
    }

    .reels-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .reel-card {
        position: relative;
        display: block;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 9/16;
        background-color: var(--color-black-light);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateZ(0);
    }

    .reel-card-image {
        position: absolute;
        inset: 0;
    }

    .reel-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- Centered Play Icon --- */
    .reel-card .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: rgba(20, 20, 20, 0.5);
        /* Dark, glassy background */
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        opacity: 1;
        /* Always visible */
        z-index: 2;
        pointer-events: none;
        /* Let clicks go through to the main card */
    }

    .reel-card .play-icon svg {
        width: 28px;
        height: 28px;
        fill: #fff;
        margin-left: 3px;
        /* Optically center the play triangle */
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    }

    /* --- Redesigned Title Bar --- */
    .reel-card .reel-card-overlay {
        opacity: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        /* This gradient provides a clean background for the title */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent 100%);
        padding: 30px 15px 15px 15px;
        transform: none;
        pointer-events: none;
    }

    .reel-card .reel-card-overlay h4 {
        margin: 0;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.1em;
        font-weight: 600;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        line-height: 1.3;
        /* Handles longer titles gracefully */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Allow up to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transform: none;
        opacity: 1;
        width: 100%;
    }
}