/* Variables */
:root {
    --black: #111111;
    --dark-grey: #1a1a1a;
    --off-white: #f7f7f7;
    --sand: #d5ac7a;
    --font-main: 'Outfit', sans-serif;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-dark: rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

:focus-visible {
    outline: 2px solid var(--sand);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout Container */
.container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--sand);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.divider {
    width: 20px;
    height: 2px;
    background-color: var(--sand);
    margin: 30px 0;
}

.divider.center {
    margin: 30px auto;
}

.divider.vertical {
    width: 2px;
    height: 20px;
    background-color: var(--sand);
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--sand);
    color: var(--black);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e6b981;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--sand);
    color: var(--sand);
}

.btn-dark {
    background-color: var(--black);
    color: #fff;
}

.btn-dark:hover {
    background-color: #222;
}

.btn-outline-sand {
    background-color: transparent;
    border: 1px solid var(--sand);
    color: var(--sand);
}

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

.btn.small {
    padding: 12px 30px;
    font-size: 10px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 35px; /* Adjust this based on your actual image */
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.nav a {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 400;
}

.nav a:hover {
    color: var(--sand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.lang-selector a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.lang-selector a:hover,
.lang-selector a.active {
    color: var(--sand);
}

.lang-selector .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
}

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

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

.hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-content {
    max-width: 650px;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 80px;
    /* Offset to visually center */
}

.hero-content h1 {
    font-size: 40px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.1;
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-bottom {
    position: absolute;
    bottom: 50px;
    left: 40px;
    /* Aligns with container padding */
    right: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.hero-bottom span {
    display: flex;
    align-items: center;
}

.dot {
    color: var(--sand);
    font-size: 24px;
    margin-right: 15px;
    line-height: 0;
}

/* About Section */
.about {
    background-color: var(--off-white);
    color: var(--black);
}

.about-inner {
    display: flex;
    min-height: 80vh;
}

.about-text {
    flex: 1;
    padding: 120px 60px 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

.about-text p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
    max-width: 480px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 30px;
    align-self: flex-start;
}

.about-image {
    flex: 1;
    padding: 80px 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Project Section */
.project {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.project-content {
    max-width: 500px;
}

.project-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

.project-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.8;
}

.project-content .btn {
    margin-top: 20px;
}

/* Services Section */
.services {
    background-color: var(--off-white);
    color: var(--black);
    padding: 120px 0;
    text-align: center;
}

.services-header {
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
}

.services-grid {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card {
    flex: 1;
    padding: 50px 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:last-child {
    border-right: none;
}

.service-card .icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 30px;
}

.service-card h3 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.service-card p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
}

/* Partners Section */
.partners {
    background-color: var(--dark-grey);
    padding: 120px 0;
}

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

.partners-header h2 {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.partners-content {
    display: flex;
    justify-content: space-between;
}

.partner-card {
    flex: 1;
    display: flex;
    gap: 40px;
}

.partner-card:first-child {
    padding-right: 60px;
}

.partner-card.border-left {
    padding-left: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.partner-text {
    flex: 1;
}

.partner-text h3 {
    color: var(--sand);
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.partner-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

/* Footer Gallery */
.footer-gallery {
    display: flex;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.footer-gallery img {
    width: 20%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.footer-gallery img:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.gallery-overlay .btn {
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
}

.gallery-overlay .btn:hover {
    border-color: var(--sand);
    color: #fff;
}

/* Footer Content */
.footer {
    background-color: var(--black);
}

.footer-content {
    display: flex;
    padding: 100px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    flex: 1;
}

.brand-col {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--sand);
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-col a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    color: var(--text-light);
}

.social-icons svg {
    width: 16px;
    height: 16px;
}

.social-icons a:hover {
    color: var(--sand);
}

.newsletter-col {
    flex: 1.5;
}

.newsletter-form {
    display: flex;
    margin-top: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    flex: 1;
    font-family: var(--font-main);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--sand);
    border: none;
    color: var(--black);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e6b981;
}

.newsletter-form button svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links a {
    margin-left: 30px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
    color: #fff;
}

.footer-cta {
    color: var(--sand) !important;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 33.333%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .service-card:nth-child(3n) {
        border-right: none;
    }

    .service-card:nth-child(n+4) {
        border-bottom: none;
    }
}

@media (max-width: 1024px) {
    .partners-content {
        flex-direction: column;
        gap: 60px;
    }

    .partner-card:first-child {
        padding-right: 0;
    }

    .partner-card.border-left {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 60px;
    }

    .hero-bottom {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-col {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 20px 0;
    }

    .nav {
        display: none;
    }

    .about-inner {
        flex-direction: column;
        padding-bottom: 80px;
    }

    .about-image {
        padding: 0;
        height: 400px;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-child(n+3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .service-card:nth-child(n+5) {
        border-bottom: none;
    }

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

    .footer-gallery img {
        width: 33.333%;
    }

    .footer-gallery img:nth-child(n+4) {
        display: none;
    }

    .hero-bottom {
        bottom: 112px;
        font-size: 10px;
        letter-spacing: 2px;
        padding-top: 18px;
    }

    .hero-content {
        padding-bottom: 135px;
    }

    .footer-col {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-buttons .btn { min-width: 190px; text-align: center; }
    .hero-bottom { left: 20px; right: 20px; display: grid; grid-template-columns: 1fr 1fr; }
    .csb-concept, .manifesto-section, .values-section, .faq-section { padding: 90px 0; }
    .csb-concept-left { flex-basis: auto; }
    .csb-masonry { gap: 10px; }
    .csb-cta { padding: 130px 0; }
    .stats-section { background-attachment: scroll; padding: 100px 0; }
    .footer-gallery { height: 190px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Stagger Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Inner Pages */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--black);
    padding-top: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.3);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Luxury Contact Page */
.luxury-contact {
    background-color: var(--black);
    color: #fff;
    padding: 60px 0 120px;
    min-height: 80vh;
}

.contact-grid {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
}

.contact-info-col h2 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 50px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h4 {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sand);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-detail p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-col {
    flex: 1;
    background-color: var(--dark-grey);
    padding: 80px 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 0;
    font-family: var(--font-main);
    font-size: 14px;
    margin-bottom: 40px;
    transition: border-color 0.3s ease;
}

.luxury-input:focus {
    outline: none;
    border-bottom-color: var(--sand);
}

.form-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.6;
}

.luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}

textarea.luxury-input {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 1024px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-col h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .contact-form-col {
        padding: 40px 25px;
    }
}

/* Impressive About Page Redesign */
.manifesto-section {
    padding: 150px 0;
    text-align: center;
    background-color: var(--black);
}

.manifesto-text {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.manifesto-text span {
    color: var(--sand);
    font-style: italic;
}

.values-section {
    padding: 120px 0;
    background-color: var(--off-white);
    color: var(--black);
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    padding: 60px 40px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.8;
}

.stats-section {
    position: relative;
    padding: 150px 0;
    background-image: url('../images/dj-illustration.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 100px;
    align-items: center;
}

.stats-header {
    flex: 0 0 40%;
}

.stats-header h2 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 20px;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.stat-item {
    border-left: 2px solid var(--sand);
    padding-left: 25px;
    text-align: left;
}

.stat-item h3 {
    font-size: 72px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
}

/* Luxury FAQ Redesign */
.faq-section {
    padding: 150px 0;
    background-color: #fff;
    color: var(--black);
}

.faq-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 0 0 35%;
    position: sticky;
    top: 150px;
}

.faq-left h2 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
}

.faq-left p {
    color: var(--text-dark);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}

.faq-right {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    cursor: pointer;
    font-size: 22px;
    font-weight: 300;
    color: var(--black);
    transition: color 0.3s ease;
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
}

.faq-question:hover {
    color: var(--sand);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--sand);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
}

.faq-icon::after {
    width: 100%;
    height: 2px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--sand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer-inner {
    padding-bottom: 35px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 1024px) {

    .faq-container,
    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        position: static;
    }

    .manifesto-text {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
        gap: 60px;
        align-items: flex-start;
    }
}

/* Croatia Spring Break Specifics */
.csb-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--black);
    overflow: hidden;
}

.csb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/festival-illustration.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
    z-index: 1;
    transform: scale(1.05);
    animation: slowPan 25s infinite alternate linear;
}

@keyframes slowPan {
    from {
        transform: scale(1.05) translateY(0);
    }

    to {
        transform: scale(1.1) translateY(-2%);
    }
}

.csb-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: 100px;
}

.csb-hero-content h1 {
    font-size: 8vw;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 80px;
}

.marquee-text {
    display: inline-block;
    font-size: 80px;
    font-weight: 300;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    letter-spacing: 5px;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-text span {
    color: var(--sand);
    -webkit-text-stroke: 0;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.csb-concept {
    padding: 150px 0;
    background-color: var(--off-white);
    color: var(--black);
}

.csb-concept-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.csb-concept-left {
    flex: 0 0 55%;
}

.csb-concept-left h2 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
}

.csb-concept-right {
    flex: 1;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 60px;
}

.csb-concept-right p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.8;
}

.csb-gallery {
    padding: 50px 0 150px;
    background-color: var(--black);
}

.csb-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    gap: 20px;
}

.csb-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.csb-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.csb-img-wrapper:hover img {
    transform: scale(1.05);
}

.csb-img-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 6;
}

.csb-img-2 {
    grid-column: 7 / 13;
    grid-row: 1 / 4;
}

.csb-img-3 {
    grid-column: 7 / 13;
    grid-row: 4 / 9;
}

.csb-img-4 {
    grid-column: 1 / 7;
    grid-row: 6 / 9;
}

.csb-img-5 {
    grid-column: 1 / 5;
    grid-row: 9 / 14;
}

.csb-img-6 {
    grid-column: 5 / 9;
    grid-row: 9 / 14;
}

.csb-img-7 {
    grid-column: 9 / 13;
    grid-row: 9 / 14;
}

.csb-cta {
    position: relative;
    padding: 200px 0;
    text-align: center;
    color: #fff;
    background-color: var(--black);
}

.csb-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    filter: brightness(0.25);
    z-index: 1;
}

.csb-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.csb-cta-content h2 {
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    margin: 30px 0 50px;
    letter-spacing: -1px;
}

@media (max-width: 1024px) {
    .csb-hero-content h1 {
        font-size: 48px;
    }

    .marquee-text {
        font-size: 40px;
    }

    .csb-concept h2 {
        font-size: 32px;
    }

    .csb-cta h2 {
        font-size: 40px;
    }

    .csb-masonry {
        grid-auto-rows: 80px;
        gap: 15px;
    }

    .csb-img-1 { grid-column: 1 / -1 !important; grid-row: span 4 !important; height: auto; }
    .csb-img-2 { grid-column: 1 / 7 !important; grid-row: span 3 !important; height: auto; }
    .csb-img-3 { grid-column: 7 / 13 !important; grid-row: span 4 !important; height: auto; }
    .csb-img-4 { grid-column: 1 / 7 !important; grid-row: span 4 !important; height: auto; }
    .csb-img-5 { grid-column: 7 / 13 !important; grid-row: span 3 !important; height: auto; }
    .csb-img-6 { grid-column: 1 / -1 !important; grid-row: span 4 !important; height: auto; }
    .csb-img-7 { grid-column: 1 / -1 !important; grid-row: span 4 !important; height: auto; }

    .csb-concept-grid {
        flex-direction: column;
        gap: 50px;
    }

    .csb-concept-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 40px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-3px) scale(1.05);
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
    padding: 0;
    border: 0;
    background: transparent;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

.mobile-sticky-cta {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .desktop-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Fullscreen Overlay Navigation */
    .nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.menu-open .header {
        background-color: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none;
    }

    body.menu-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--sand);
    }

    body.menu-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--sand);
    }

    .nav a {
        font-size: 32px;
        letter-spacing: 2px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    body.menu-open .nav a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for nav links */
    body.menu-open .nav a:nth-child(1) { transition-delay: 0.1s; }
    body.menu-open .nav a:nth-child(2) { transition-delay: 0.2s; }
    body.menu-open .nav a:nth-child(3) { transition-delay: 0.3s; }
    body.menu-open .nav a:nth-child(4) { transition-delay: 0.4s; }
    body.menu-open .nav a:nth-child(5) { transition-delay: 0.5s; }
    body.menu-open .nav a:nth-child(6) { transition-delay: 0.6s; }

    .header-actions {
        gap: 20px;
        z-index: 200;
    }

    /* Sticky VIP CTA */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        background: linear-gradient(to top, rgba(17,17,17,0.95) 60%, transparent);
        z-index: 80;
        pointer-events: none;
    }

    body {
        padding-bottom: 82px;
    }

    .hero,
    .csb-hero {
        min-height: 680px;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        display: block;
        text-align: center;
        padding: 20px;
        font-size: 14px;
        letter-spacing: 3px;
        pointer-events: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Adjust WhatsApp button on mobile to not overlap sticky CTA */
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up, .fade-in, .scale-up { opacity: 1; transform: none; }
}

/* Ultra-small devices (max-width: 400px) handling 323px width */
@media (max-width: 400px) {
    .container {
        padding: 0 15px !important;
    }
    
    .logo-img {
        height: 24px !important;
    }

    .hero-content h1, 
    .csb-hero-content h1, 
    .page-hero h1 {
        font-size: 32px !important;
    }

    .about-text h2, 
    .csb-cta h2, 
    .contact-info-col h2, 
    .csb-concept h2,
    .services-header h2 {
        font-size: 28px !important;
    }

    .marquee-text {
        font-size: 28px !important;
    }

    .service-card {
        flex: 0 0 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .service-card:last-child {
        border-bottom: none !important;
    }

    .contact-form-col {
        padding: 30px 15px !important;
    }

    .header-actions {
        gap: 15px !important;
    }

    .lang-selector {
        font-size: 9px !important;
        gap: 5px !important;
    }

    .mobile-menu-btn {
        width: 25px !important;
        height: 16px !important;
    }

    .nav a {
        font-size: 24px !important;
    }

    .manifesto-text {
        font-size: 24px !important;
    }

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

    .values-section h2 {
        font-size: 32px !important;
    }

    .stats-header h2, .faq-left h2 {
        font-size: 36px !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .stat-item h3 {
        font-size: 50px !important;
    }

    .faq-question {
        font-size: 18px !important;
        padding: 20px 0 !important;
    }
}

/* Portable illustrated edition */
.hero,.project{isolation:isolate}.hero-bg,.project-bg{z-index:0}.hero-overlay,.project-overlay{z-index:1}.hero-container,.project>.container{position:relative;z-index:2}
.art-credit{padding:16px 24px;text-align:center;font-size:12px;color:#b8b8b8;background:#111}.fade-up,.fade-in,.scale-up{opacity:1;transform:none}.about-text p,.project-content p,.service-card p,.partner-card p,.value-card p{font-size:16px}.about-image img{height:auto;aspect-ratio:4/3;object-fit:cover}

.csb-masonry{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:auto}.csb-img-wrapper{border-radius:0}.csb-img-1{grid-column:1/-1!important;grid-row:auto!important;aspect-ratio:16/9}.csb-img-2,.csb-img-3{grid-column:auto!important;grid-row:auto!important;aspect-ratio:4/3}.footer-gallery img:nth-of-type(n+4){display:none}.footer-gallery img{width:33.3333%}.csb-hero-bg{animation:none;filter:brightness(.7);transform:none}.hero-overlay{background:linear-gradient(90deg,rgba(0,0,0,.68),rgba(0,0,0,.05))}@media(max-width:600px){.csb-masonry{grid-template-columns:1fr}.csb-img-2,.csb-img-3{grid-column:1/-1!important}.hero{height:auto;min-height:850px}.hero-content{padding:150px 0 200px}.hero-content h1{font-size:clamp(32px,8vw,48px)}}
