/* Root Variables */
:root {
    --primary: #F2994A;
    /* Pineapple Orange */
    --primary-dark: #EB5757;
    /* Logo Red */
    --secondary: #27AE60;
    /* Logo Green */
    --bg-dark: #0F0F0F;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #FFFFFF;
    --text-muted: #BDBDBD;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-primary: var(--font-accent);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: clamp(40px, 8vw, 80px) 0;
}

#lookbook, #videos, #clients, #reviews, #geography {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

.bg-dark {
    background-color: #080808;
}

.mt-2 {
    margin-top: 20px;
}

.opacity-50 {
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 15px rgba(242, 153, 74, 0.2);
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(242, 153, 74, 0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(15, 15, 15, 0.65); /* Semi-transparent black background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    padding: 9px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-small img {
    height: 52px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: flex-end; /* Push slogan to bottom */
    justify-content: center;
    position: relative;
    padding: 0 0 60px; /* Pushed further down */
    background: url('assets/images/band.webp') no-repeat center center / cover;
}

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

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 2.2rem; /* Reduced font size */
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-main);
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin: 0;
    white-space: nowrap; /* Enforce single line */
}

.hero-btn-row {
    margin-top: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 15px; /* Pushed lower to bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0.8;
}

.arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* USP */
.usp-item {
    padding: 30px;
    background: var(--glass);
    border-radius: 20px;
    text-align: center;
}

.usp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    position: relative;
    min-width: calc(33.333% - 14px);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
}

.carousel-slide:hover {
    border-color: var(--primary);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:hover img {
    transform: scale(1.08);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 25px 15px 15px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    transition: var(--transition);
    pointer-events: none;
}

.carousel-slide:hover .slide-caption {
    color: var(--primary);
    padding-bottom: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Video Gallery 1-row Iframe */
/* Video Gallery Carousel */
.video-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.video-carousel-viewport {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #000;
}

.video-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.video-carousel-track::-webkit-scrollbar {
    display: none;
}

.video-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
}

.video-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-poster {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.video-play-btn {
    background: var(--primary);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(242, 153, 74, 0.3);
    margin-bottom: 15px;
}

.video-play-btn svg {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.4);
}

.video-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}

.video-player-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

.video-player-wrapper.active {
    display: block;
}

.video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(242, 153, 74, 0.5);
}

.video-carousel-btn.prev {
    left: 0;
}

.video-carousel-btn.next {
    right: 0;
}

.video-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(242, 153, 74, 0.5);
}

/* Placeholder slides styling */
.placeholder-slide {
    background: #0d0d0d;
}

.placeholder-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-overlay {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.7);
    background: radial-gradient(circle, rgba(20, 20, 20, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    opacity: 0.2;
    animation: pulse 3s infinite ease-in-out;
}

.placeholder-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
}

.placeholder-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.08); opacity: 0.35; }
    100% { transform: scale(1); opacity: 0.15; }
}

/* Custom styles for Plyr */
.plyr {
    --plyr-color-main: var(--primary);
    --plyr-video-control-background-hover: var(--primary);
    --plyr-video-control-color-hover: #fff;
    --plyr-border-radius: 20px;
    width: 100%;
    height: 100%;
}

.plyr--video {
    height: 100% !important;
}

/* Responsiveness for carousel */
@media (max-width: 768px) {
    .video-carousel-container {
        padding: 0 15px;
    }
    .video-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .video-carousel-btn.prev {
        left: 5px;
    }
    .video-carousel-btn.next {
        right: 5px;
    }
    .video-title {
        font-size: 1.2rem;
    }
    .video-play-btn {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .video-carousel-container {
        padding: 0;
    }
    .video-carousel-btn {
        top: auto;
        bottom: -55px;
        transform: none;
    }
    .video-carousel-btn.prev {
        left: calc(50% - 50px);
    }
    .video-carousel-btn.next {
        right: calc(50% - 50px);
    }
    .video-carousel-dots {
        margin-top: 15px;
        margin-bottom: 50px;
    }
}

/* Prices */
.price-card {
    padding: 50px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(242, 153, 74, 0.05);
    transform: scale(1.05);
}

.badge-top-sales {
    position: absolute;
    top: 25px;
    right: -40px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 45px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.price-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--primary);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.price-desc {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

/* Client Logos */
.logo-carousel {
    overflow: hidden;
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-right: 40px;
    padding: 0;
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    cursor: default;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary);
    background: rgba(242, 153, 74, 0.05);
    box-shadow: 0 10px 25px rgba(242, 153, 74, 0.15);
}

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

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

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

/* Reviews */
.reviews-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    padding: 0 60px;
    box-sizing: border-box;
}

.reviews-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 10px 5px 25px; /* Bottom padding to prevent hover shadows from clipping */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

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

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.reviews-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reviews-carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(242, 153, 74, 0.5);
}

.reviews-carousel-btn.prev {
    left: 0;
}

.reviews-carousel-btn.next {
    right: 0;
}

/* Reusable Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.lookbook-dot, .reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lookbook-dot.active, .reviews-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(242, 153, 74, 0.5);
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
    .reviews-carousel-container {
        padding: 0 15px;
    }
    .reviews-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .reviews-carousel-btn.prev {
        left: 5px;
    }
    .reviews-carousel-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-container {
        padding: 0;
    }
    .reviews-carousel-btn {
        top: auto;
        bottom: -55px;
        transform: none;
    }
    .reviews-carousel-btn.prev {
        left: calc(50% - 50px);
    }
    .reviews-carousel-btn.next {
        right: calc(50% - 50px);
    }
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 153, 74, 0.3);
    box-shadow: 0 15px 35px rgba(242, 153, 74, 0.08);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    color: var(--primary);
    opacity: 0.08;
    pointer-events: none;
    transition: var(--transition);
}

.review-card:hover .quote-icon {
    opacity: 0.15;
    transform: scale(1.1) rotate(-5deg);
}

.review-rating {
    color: #F2C94C;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.review-card:hover .review-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(242, 153, 74, 0.4);
}

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

.review-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.review-company {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Map Section */
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    background: #0d0d0d;
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) invert(1) contrast(1.1) brightness(1.3);
    transition: var(--transition);
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
    transition: var(--transition);
}

.map-wrapper:hover .map-img {
    filter: grayscale(0.8) invert(1) contrast(1.1) brightness(1.5);
}

.map-wrapper:hover::after {
    opacity: 0.55;
}

/* Order Form */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.placeholder-active {
    color: rgba(255, 255, 255, 0.4) !important;
}

select option {
    color: white;
    background: #111;
}

select option[disabled] {
    color: rgba(255, 255, 255, 0.4);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(242, 153, 74, 0.1);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
    border-color: var(--primary-dark);
    background: rgba(235, 87, 87, 0.05);
}

input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(100%) saturate(1000%) hue-rotate(340deg);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-submit-row {
    display: flex;
    justify-content: center;
}

.form-submit-row .submit-btn {
    max-width: 320px;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-main);
}

/* Contacts Section */
.contacts-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 153, 74, 0.3);
    box-shadow: 0 15px 35px rgba(242, 153, 74, 0.08);
}

.contact-icon-wrapper {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.contact-card .contact-link {
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-card .contact-link a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card .contact-link a:hover {
    color: var(--primary);
}

.contact-card .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-card .social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card .social-icon:hover {
    color: var(--primary);
}

/* Site Footer */
.site-footer {
    padding: 40px 0;
    background: #080808;
    border-top: 1px solid var(--glass-border);
}

.site-footer .copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.site-footer .disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.6;
    line-height: 1.4;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.chat-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}

.chat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-dark);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.chat-header {
    background: #262626;
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.chat-assistant-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.chat-assistant-meta {
    display: flex;
    flex-direction: column;
}

.chat-assistant-name {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.chat-assistant-status {
    font-size: 0.75rem;
    color: #27ae60;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-assistant-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #27ae60;
    border-radius: 50%;
}

.chat-body {
    height: 250px;
    padding: 15px;
    overflow-y: auto;
}

.bot-msg {
    background: var(--glass);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid var(--glass-border);
}

.chat-close {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.chat-close:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-media-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 1.8rem;
        white-space: nowrap;
    }

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

@media (max-width: 768px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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



    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 1.3rem;
        white-space: normal; /* allow wrapping on mobile devices */
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .carousel-slide {
        min-width: 100%;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .contacts-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* Scroll Reveal Animations */
.section-title, .card, .usp-item, .hero-content {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible, .card.visible, .usp-item.visible, .hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .section-title, .card, .usp-item, .hero-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Spinner for video load */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spinner {
    animation: spin 1s linear infinite;
}

/* Portrait orientation optimization for hero section */
@media (orientation: portrait) {
    #hero {
        height: auto;
        min-height: 100vh;
        background: #080808; /* solid dark background */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 90px 0 60px; /* space for fixed header and bottom padding */
    }
    
    #hero::before {
        content: '';
        display: block;
        width: 100%;
        aspect-ratio: 1920/768; /* exact aspect ratio of band.webp */
        background: url('assets/images/band.webp') no-repeat center center / contain;
        margin-bottom: 20px;
        z-index: 2;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-container {
        margin-top: auto;
        margin-bottom: auto;
        padding-bottom: 40px; /* prevent overlap with scroll indicator */
        z-index: 2;
    }
}

/* Honeypot for spam bots */
.hidden-honeypot {
    display: none !important;
}