/* Base Styles */
html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
    margin: 0;
    padding: 0;
    padding-top: 90px;
    top: 0;
    left: 0;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

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

.video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0;
    letter-spacing: -2px;
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.hero-btn.primary {
    background: white;
    color: black;
    border: 2px solid white;
}

.hero-btn.primary:hover {
    background: #e6e6e6;
    border-color: #e6e6e6;
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* Page Specific Hero Backgrounds */
.home-hero {
    background-image: url('home_hero_banner_1770119514100.png');
}

.about-hero {
    background-image: url('images/banner/bannerabout-us.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.locations-hero {
    background-image: url('images/banner/1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero {
    background-image: url('images/banner/bannercontact2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header & Navigation */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 15px 0;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}


nav {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    pointer-events: auto;
    z-index: 10001;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    pointer-events: auto;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 11000;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    display: block;
}

/* เมื่อเมนูเปิด (Active) เปลี่ยนเป็นกล่อง X */
.mobile-menu-toggle.active {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


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

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    display: inline-block;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

/* Invisible bridge to prevent closing on gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-top: 5px;
    /* Small distance */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-content a {
    color: #fff !important;
    padding: 12px 24px;
    display: block;
    font-size: 12px;
    transition: all 0.3s;
    text-transform: none;
    /* Keep dropdown items normal case */
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1 !important;
    padding-left: 28px;
    /* Subtle movement */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.lang-flags {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.lang-flags a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.6;
    text-decoration: none;
}

.lang-flags a.active {
    opacity: 1;
}

.lang-flags a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lang-flags img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-container {
    display: flex;
    align-items: center;
}

.cta-button {
    background: white;
    color: black;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}

/* About Us Intro Section */
.about-intro-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 80px 20px 60px;
    text-align: center;
}

.about-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.about-intro-inner::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 auto 30px;
    opacity: 0.5;
}

.about-intro-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-intro-lead {
    font-size: 16px;
    color: #e5e5e5;
    line-height: 1.7;
    margin: 0 auto 20px;
}

.about-intro-text {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.8;
    margin: 0 auto 14px;
}

.about-intro-subtitle {
    font-size: 32px;
    font-weight: 800;
    margin: 60px 0 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.about-intro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.about-intro-list li {
    font-size: 14px;
    color: #d4d4d4;
    line-height: 1.8;
}

.about-intro-list li::before {
    content: '•';
    margin-right: 8px;
    color: #ffffff;
}

.about-intro-highlight {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.about-intro-text a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.about-intro-text a:hover {
    opacity: 0.85;
}

.about-intro-image {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.about-intro-image img {
    width: 100%;
    max-width: 640px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* About Locations Maps */
.about-intro-maps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.about-map-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.about-map-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #ffffff;
}

.about-map-frame {
    position: relative;
    width: 100%;
    padding-bottom: 62%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.about-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-map-link {
    font-size: 13px;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.about-map-link:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 40px 20px 20px;
        /* Reduced */
        margin-bottom: 40px;
        /* Reduced */
    }

    .about-intro-title {
        font-size: 32px;
        /* Fixed at 32px as per user request */
        margin-bottom: 20px;
        /* Reduced */
    }

    .about-intro-subtitle {
        font-size: 28px;
        margin-top: 30px;
        /* Reduced */
    }

    .about-intro-lead,
    .about-intro-text {
        font-size: 13px;
    }

    .about-intro-maps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Showcase Slider */
/* Showcase Slider */
.showcase-section {
    padding: 80px 0;
    max-width: 100% !important;
    /* Override global section max-width */
    width: 100%;
    background: #0a0a0a;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

.section-header {
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: #ccc;
    font-size: 16px;
    font-weight: 300;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.section-header::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 auto 30px;
    opacity: 0.5;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container::before,
.slider-container::after {
    display: none;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: calc(320px * 18 + 20px * 18);
    /* Card width + gap * number of items (3 sets of 6 = 18) */
    animation: scroll 60s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide-item {
    width: 320px;
    height: 320px;
    /* Fixed height for consistency */
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-item:hover {
    transform: translateY(-10px);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.slide-item:hover img {
    transform: scale(1.1);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 6 - 20px * 6));
        /* Scroll one set of 6 items */
    }
}

/* Footer */
footer {
    background: #141414;
    color: #fff;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

/* Brand Info Column */
.brand-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    color: white;
}

.brand-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin: 0;
    letter-spacing: 0.5px;
}

.brand-desc {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 300px;
}

/* Menu Column */
.menu-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

.footer-header {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

/* Contact Column */
.contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.footer-social-circles {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s, opacity 0.3s;
}

.social-circle:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-circle.fb {
    background: #1877F2;
}

.social-circle.line {
    background: #00B900;
}

.social-circle.phone {
    background: #007AFF;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-column {
        padding-left: 0;
    }

    .footer-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-nav-links a {
        display: block;
        font-size: 15px;
        font-weight: 600;
    }
}

/* Cookie Bar */
.cookie-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn.reject {
    color: #888;
}

.cookie-btn:hover {
    background: white;
    color: black;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    z-index: 2000;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}

.fab {
    background: transparent;
}

.fab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.fab.whatsapp,
.fab.instagram,
.fab.tiktok {
    overflow: hidden;
}

.fab.close {
    background: #333;
    font-size: 18px;
}

.fab.close img {
    display: none;
}

/* Hide buttons when closed */
.fab-container.closed .fab:not(.close) {
    opacity: 0;
    transform: scale(0) translateY(20px);
    pointer-events: none;
    margin: 0;
    height: 0;
    overflow: hidden;
    gap: 0;
}

.fab-container.closed .fab.close {
    transform: rotate(45deg);
}

.fab-container.closed {
    gap: 0;
}

.fab-container.closed .fab:not(.close) img {
    display: none;
}

/* Our Styles Gallery */
.styles-gallery {
    padding: 80px 0;
    /* Removed side padding for full width feel */
    background: #0a0a0a;
    /* Match main background */
    text-align: center;
    color: white;
    width: 100%;
}

.gallery-header {
    margin-bottom: 40px;
    /* Reduced from 60px */
}

.gallery-header .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-header p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Wrapper for Grid + Arrows */
.gallery-grid-wrapper {
    position: relative;
    max-width: 1300px;
    /* Match boxed look of reference */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    /* More space for arrows */
}

.gallery-container {
    overflow: hidden;
    width: 100%;
}

.gallery-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    /* 3 items per view, accounting for 2 gaps of 30px each */
    min-width: 0;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square aspect ratio (1:1) */
    overflow: hidden;
    margin-bottom: 0;
    background: #000;
    height: auto;
    border-radius: 12px;
    /* Allow height to be determined by width + aspect ratio */
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.8;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-caption {
    position: relative;
    /* Reset position */
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: none;
    /* Reset transform */
    letter-spacing: 0.5px;
    text-shadow: none;
    pointer-events: auto;
}

/* Dots and Nav */
.gallery-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.gallery-footer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.view-styles-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-styles-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: white;
    color: black;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dot.active {
    background: white;
}

/* Nav Arrows on images */
.nav-arrow {
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Approx center of image height */
}

.nav-arrow:hover {
    transform: scale(1.1);
}

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

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

@media (max-width: 768px) {
    .styles-gallery {
        padding: 40px 0;
        /* Reduced from 80px */
    }

    .gallery-header {
        margin-bottom: 30px;
        /* Reduced */
    }

    .gallery-grid-wrapper {
        padding: 0 60px;
        /* More space for arrows on mobile */
    }

    .nav-arrow {
        display: flex;
        /* Show arrows on mobile */
        width: 45px;
        height: 45px;
        font-size: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
        z-index: 15;
    }

    .nav-arrow.prev {
        left: 10px;
    }

    .nav-arrow.next {
        right: 10px;
    }

    .nav-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .gallery-grid {
        flex-direction: row;
        gap: 0;
        flex-wrap: nowrap;
    }

    .gallery-item {
        flex: 0 0 100% !important;
        min-width: 0;
    }

    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-img {
        aspect-ratio: 3 / 4;
        height: auto;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 6px;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #ffffff;
    }

    .nav-links a:hover {
        opacity: 1;
        padding-left: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-left: 3px solid white;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-trigger .arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-trigger .arrow {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        display: none;
        transform: none;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 10px 0;
        border: none;
        border-left: 3px solid rgba(255, 255, 255, 0.3);
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-content a {
        padding: 15px 0 15px 25px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.08);
        padding-left: 30px;
        color: #ffffff;
    }

    .lang-flags {
        margin-left: 0;
        margin-top: 30px;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding-top: 25px;
        width: 100%;
        gap: 20px;
    }

    .lang-flags a {
        border-bottom: none;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .lang-flags a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
        border-left: none;
        transform: scale(1.1);
    }

    .lang-flags img {
        width: 28px;
        height: 20px;
    }

    .cta-container {
        display: none;
    }

    nav {
        padding: 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cookie-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* Trusted Stats Section */
.trusted-section {
    padding: 80px 0;
    text-align: center;
    background: #0a0a0a;
}

.trusted-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    /* Reduced from 60px */
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
    stroke-width: 1.5;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.stat-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #ccc;
}

.stat-item p {
    font-size: 14px;
    color: #888;
    max-width: 250px;
    line-height: 1.5;
}

.stars {
    color: #eab308;
    /* Golden color for stars */
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0 100px;
    background: #f9f9f9;
    /* Light background as per reference image */
    color: #333;
    /* Dark text for light background */
}

.google-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.google-badge {
    background: white;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.g-logo {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #4285f4;
}

.google-badge strong {
    font-size: 18px;
    color: #333;
}

.google-badge .review-count {
    font-size: 12px;
    color: #666;
}

.review-btn {
    background: #1a73e8;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.review-btn:hover {
    background: #1557b0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    /* Default dark */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.review-date {
    font-size: 11px;
    color: #888;
}

.stars {
    color: #fbbc04;
    letter-spacing: 2px;
}

.review-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 12px;
    color: #1a73e8;
    text-decoration: none;
    margin-top: auto;
}

/* Dark mode adjustments for Trusted Stats if kept dark */
.trusted-section .stat-icon {
    filter: none;
    /* Emoji don't need invert usually, but text does? */
    /* Icon characters are text, so they follow color rules usually, but some are colored. */
}

/* Responsive */
@media (max-width: 991px) {

    .stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 40px 0;
        /* Reduced from 80px */
    }

    .trusted-title {
        margin-bottom: 30px;
        /* Reduced */
        font-size: 28px;
    }

    .stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        margin-bottom: 20px;
    }
}

/* Reviews Section Redesign */
.reviews-section {
    padding: 60px 0 100px;
    background: #0a0a0a;
    /* Dark background to match site */
    color: white;
    width: 100%;
}

.reviews-container-box {
    width: 100%;
    max-width: none;
    /* Remove max-width for full screen */
    margin: 0;
    padding: 0 20px;
    /* Reduced side padding to expand the section */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reviews-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 30px;
    color: white;
    opacity: 1;
}

/* Header Card */
.google-header-card {
    background: #141414;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.google-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-logo-icon {
    font-family: 'Product Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 24px;
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.google-header-card strong {
    font-size: 20px;
    color: white;
}

.google-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-header-card .stars {
    color: #fbbc04;
    font-size: 22px;
    letter-spacing: 2px;
}

.review-count {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.review-btn {
    background: #1a73e8;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.review-btn:hover {
    background: #1557b0;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Further increased gap */
    width: 100%;
}

/* Review Card */
.review-card {
    background: #141414;
    border-radius: 20px;
    /* Rounded more */
    padding: 30px;
    /* Increased padding for better spacing */
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}

.reviewer-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.g-mini-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #4285f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-size: 16px;
    /* Increased for balance */
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-tick {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a73e8'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.review-date {
    font-size: 14px;
    /* Increased */
    color: #666;
}

.review-card .stars {
    font-size: 18px;
    /* Increased for prominence */
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    /* Set to 16px as requested */
    color: #bbb;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
    margin-top: auto;
    font-weight: 600;
}

/* Nav Buttons */
.review-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.review-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.review-nav.prev {
    left: -22px;
}

.review-nav.next {
    right: -22px;
}

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

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

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0 60px;
        /* Reduced from 60px 0 100px */
    }

    .reviews-container-box {
        gap: 20px;
    }

    .reviews-section-title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .reviews-carousel-wrapper {
        gap: 10px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .review-nav {
        display: none;
    }
}

/* Inspiration Section */
.inspiration-section {
    padding: 60px 0 80px;
    /* Added bottom padding for footer spacing */
    background: #0a0a0a;
    /* Dark background */
    text-align: center;
    width: 100%;
    overflow: hidden;
    /* Prevent scrollbars */
}

.inspiration-header {
    margin-bottom: 40px;
    padding: 0 20px;
    /* Keep header text contained */
}

.inspiration-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    /* White text */
    text-transform: none;
    /* Keep "Follow us for inspiration" readable */
}

.social-handles {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
}

.handle-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.handle-link:hover {
    color: white;
}

.handle-link i,
.handle-link .icon {
    font-size: 18px;
    margin-right: 5px;
}

/* Inspiration gallery grid (HOME) */
.inspiration-gallery {
    display: grid;
    grid-template-columns: repeat(5, 467.5px);
    gap: 4px;
    padding: 0;
    justify-content: center;
}

.inspiration-gallery .inspiration-gallery-item {
    width: 467.5px;
    height: 467.5px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.inspiration-gallery .inspiration-gallery-item:hover {
    opacity: 0.85;
}

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

.inspiration-gallery .inspiration-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inspiration-gallery-item.hidden-item {
    display: none;
}

.load-more-container {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    display: inline-block;
    padding: 14px 50px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.load-more-btn:hover {
    background: #fff;
    color: #0a0a0a;
}

@media (max-width: 2400px) {
    .inspiration-gallery {
        grid-template-columns: repeat(5, 1fr);
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .inspiration-gallery .inspiration-gallery-item {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 992px) {
    .inspiration-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .inspiration-section {
        padding: 40px 0 40px;
        /* Reduced from 60px 0 80px */
    }

    .inspiration-header {
        margin-bottom: 25px;
        /* Reduced from 40px */
    }

    .inspiration-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .load-more-container {
        padding: 25px 0;
        /* Reduced from 40px */
    }
}

@media (max-width: 480px) {
    .inspiration-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    /* Tighter gap as per reference */
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* Square thumbnails */
    overflow: hidden;
    cursor: pointer;
    background: #000;
    display: block;
    /* Remove inline spacing */
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9;
}

.video-item:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass to the anchor */
    transition: background 0.3s;
}

.video-item:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspiration-header h2 {
        font-size: 24px;
    }
}

/* Reels Section (Vertical) */
.reels-section {
    padding: 80px 0 120px;
    background: #0a0a0a;
    /* Reverted to dark background for site consistency */
    display: flex;
    justify-content: center;
}

.reels-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.reels-header {
    margin-bottom: 50px;
}

.reels-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.reels-header p {
    font-size: 16px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

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

.reel-item {
    width: 100%;
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.reel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .reels-section {
        padding: 40px 0 60px;
        /* Reduced from 80px 0 120px */
    }

    .reels-header {
        margin-bottom: 30px;
        /* Reduced from 50px */
    }

    .reels-header h2 {
        font-size: 28px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
    }
}

/* Artists Section */
.artists-section {
    padding: 80px 0;
    background: #0a0a0a;
    /* Dark background for site consistency */
    text-align: center;
}

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

.artists-section .section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Slide from left starting state */
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s ease-out;
}

.artists-section.in-view .section-title {
    transform: translateX(0);
    opacity: 1;
}

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

.artist-img-wrapper {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/4;
    /* Improved: Maintain space for a portrait poster to prevent layout shift */
    background: #141414;
    /* Placeholder background */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.7s ease-out, opacity 0.6s ease-out;
}

/* Slide from right starting state */
.artists-grid .artist-img-wrapper {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s ease-out;
}

.artists-section.in-view .artists-grid .artist-img-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.artist-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@media (max-width: 768px) {
    .artists-section {
        padding: 40px 0;
        /* Reduced from 80px */
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        /* Changed from 100vw to prevent zooming issues */
        overflow-x: hidden;
    }

    .artists-section .section-title {
        margin-bottom: 25px;
        /* Reduced from 50px */
    }

    .artists-container {
        padding: 0;
        max-width: 100%;
    }

    .artists-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        /* Remove padding */
    }

    .artist-img-wrapper {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        /* Corner to corner */
        border-left: none;
        border-right: none;
    }

    .section-title {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Mobile Full Screen Hero for Home Page */
    .home-hero {
        height: 100vh;
        min-height: 100vh;
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
        width: 100%;
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header - More transparent on mobile for blending */
    header {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 12px 0;
    }

    /* Showcase Section Full Screen Experience on Mobile */
    .showcase-section {
        padding: 40px 0;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 24px;
    }

    /* Ensure full width on mobile */
    * {
        box-sizing: border-box;
    }

    body,
    html {
        width: 100%;
        overflow-x: hidden;
    }

    section {
        width: 100%;
        max-width: 100%;
    }
}

/* About Hero Section with Slider */
.about-hero-section {
    background: linear-gradient(135deg, #2d1f14 0%, #1a120a 50%, #0f0a06 100%);
    padding: 80px 40px;
    max-width: 100%;
    width: 100%;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Slider */
.about-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Set max-width to 600px */
    aspect-ratio: 2/3;
    /* Even more portrait to fit full posters */
    margin: 0 auto;
    /* Center it */
    border-radius: 12px;
    /* Slightly less rounded for a cleaner look on mobile */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-slider .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-slider .slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    animation: none !important;
}

.about-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.about-slider .slide.active {
    opacity: 1;
}

.about-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

/* About Hero Content */
.about-hero-content {
    color: white;
}

.about-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.about-hero-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 40px 0;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* About Hero Section Responsive */
@media (max-width: 992px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-section {
        padding: 60px 20px;
    }

    .about-slider {
        margin: 0 auto 30px;
        aspect-ratio: 3/4;
        /* Ensure portrait on mobile */
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 40px 15px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-stats {
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Fullscreen image lightbox (HOME page) */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.image-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 1.5px solid #ffffff;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.image-lightbox-img {
    position: relative;
    z-index: 5;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.showcase-section .slide-item,
.styles-gallery .gallery-item,
.inspiration-gallery-item {
    cursor: pointer;
}

/* Mobile Navigation Responsive Styles */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 11001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* เต็มหน้าจอเพื่อลดความสับสน */
        max-width: 100%;
        background: #0a0a0a;
        /* ดำทึบเพื่อให้เห็นตัวอักษรชัดเจน */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
        gap: 15px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10500;
        overflow-y: auto;
        pointer-events: auto;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        width: auto;
        padding: 15px 30px;
        border-bottom: none;
        font-size: 20px;
        /* ใหญ่ขึ้นเพื่อความชัดเจน */
        color: #ffffff !important;
        font-weight: 700;
        text-align: center;
        opacity: 1 !important;
        display: block;
        pointer-events: auto;
    }

    .dropdown {
        width: auto;
        text-align: center;
    }

    .dropdown-trigger {
        width: auto;
        justify-content: center;
        padding: 15px 30px;
        border-bottom: none;
        font-size: 20px;
        color: #ffffff !important;
        font-weight: 700;
    }

    .dropdown-content {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .lang-flags {
        width: auto;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0 0 0;
        margin: 20px 0 0 0;
    }

    header {
        z-index: 11000;
        pointer-events: auto;
    }
}


@media (max-width: 768px) {
    .nav-links {
        width: 280px;
    }

    header {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: 100%;
    }

    nav {
        padding: 0 15px;
    }

    .logo img {
        height: 45px;
    }
}

/* Floating Action Buttons (FAB) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: scale(1) translateY(0);
}

.fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fab.close {
    background: #333;
    color: white;
    font-size: 24px;
    z-index: 10001;
}

.fab.whatsapp {
    background: #25D366;
}

.fab.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2361 75%, #bc1888 100%);
}

.fab.tiktok {
    background: #000;
}

/* Hidden state */
.fab-container.closed .fab:not(.close) {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5) translateY(20px);
}

.fab-container.closed .fab.close {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fab-container.closed .fab.close i::before {
    content: "\f075";
    /* fa-comment icon */
}

/* Active animation for main button */
.fab.close i {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 25px;
        right: 25px;
        gap: 10px;
    }

    .fab {
        width: 48px;
        height: 48px;
    }
}

/* About Intro Outro Styles */
.about-intro-outro {
    text-align: center;
    margin-top: 60px;
    /* Reduced from 80px */
    padding-top: 40px;
    /* Reduced from 60px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-outro-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
    letter-spacing: 1px;
}

.about-intro-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 1px;
}

.about-outro-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto 20px;
}

/* About Intro Section Centering */
.about-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-intro-lead {
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-intro-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.about-intro-subtitle {
    font-size: 24px;
    color: white;
    margin: 40px 0 20px;
}

.about-intro-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    /* Keep text left-aligned within the centered block */
    text-align: left;
}

.about-intro-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.about-intro-highlight {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 30px 0;
    text-align: center;
}

.about-contact-details {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns icons/text vertically on the left */
    text-align: left;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
}

.about-contact-details .contact-brand {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    /* Brand still centered */
}

.about-contact-details span {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .about-intro-outro {
        margin-top: 50px;
        padding-top: 40px;
    }

    .about-outro-title {
        font-size: 32px;
        /* Fixed at 32px */
    }

    .about-intro-title {
        font-size: 32px;
        /* Fixed at 32px */
    }

    .about-outro-text {
        font-size: 15px;
    }
}

/* Artist Intro Grid Styles - Full Width Version */
.artist-intro-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 20px;
    box-sizing: border-box;
}

.artist-intro-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-intro-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-intro-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .artist-intro-grid {
        gap: 30px;
    }

    .artist-intro-item {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .artist-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        width: auto;
        max-width: 100%;
        left: auto;
        margin-left: 0;
        margin-right: 0;
        position: static;
    }

    .artist-intro-item {
        border-radius: 12px;
        margin: 0;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.about-intro-section {
    padding: 60px 0 0;
    /* Reduced top, zero bottom */
}