/* Update CSS variables to include smooth transitions for global theme changes */
:root {
    --bg-dark: #0a0a0c;
    --text-light: #f4f4f0;
    --text-muted: #8b8b8b;
    
    --c-purple: #9b51e0;
    --c-green: #c6f049;
    --c-orange: #ff5e3a;
    --c-blue: #0693e3;
    --c-pink: #ff2a7a;
    --c-yellow: #fcb900;
    
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
    transition: background-color 0.8s ease, color 0.8s ease;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    cursor: none;
    font-family: inherit;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--c-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background-color: var(--c-orange);
    mix-blend-mode: normal;
}
.cursor.hover::after {
    content: 'DRAG';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 600;
    color: #000;
    opacity: 0;
}
.cursor.hover-drag::after {
    opacity: 1;
}

/* Custom Cursor Image Preview for Pricing */
.cursor-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
}
.cursor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cursor-image.show {
    transform: translate(-50%, -50%) scale(1) rotate(5deg);
    opacity: 1;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loader-bg {
    position: absolute;
    inset: 0;
    background: var(--c-purple);
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: -1;
}

.loader-text {
    font-size: 5vw;
    font-weight: 800;
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.loader-text span {
    display: block;
    transform: translateY(100%);
}

.loader-progress {
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--c-green);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: translateX(0);
}

.btn-book {
    background: none;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-book:hover {
    background: var(--text-light);
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    overflow: hidden;
}

/* Premium Video & Interactive Gradient Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    overflow: hidden;
    z-index: -1;
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,12,0.8) 0%, rgba(10,10,12,0.2) 100%);
    mix-blend-mode: multiply;
}
.interactive-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--c-purple) 0%, var(--c-blue) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: background 3s ease;
}
.gradient-text {
    background: linear-gradient(to right, var(--c-green), var(--c-blue), var(--c-purple), var(--c-orange), var(--c-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 8vw;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .indent {
    padding-left: 10vw;
}

.accent-text {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-light);
    text-transform: lowercase;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-orange);
    transform: translateX(-100%);
    animation: scrollLine 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Marquee */
.marquee-wrapper {
    padding: 60px 0;
    background: var(--c-purple);
    color: #000;
    transform: rotate(-2deg) scale(1.05);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

.marquee-inner span {
    padding: 0 20px;
}

/* About Section */
.about {
    padding: 150px 5vw;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-title {
    font-size: 4.5vw;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.highlight-purple {
    color: var(--c-purple);
}

.anim-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--c-purple);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-purple);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-outline:hover {
    color: #fff;
    border-color: transparent;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.about-images {
    position: relative;
    height: 800px;
}

.img-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2); /* For parallax effect */
}

.img-1 {
    width: 70%;
    height: 600px;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-2 {
    width: 50%;
    height: 400px;
    bottom: 50px;
    left: 0;
    z-index: 2;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.5);
}

/* Services (Horizontal Scroll) */
.services {
    padding: 100px 0;
    background: var(--text-light);
    color: var(--bg-dark);
    overflow: hidden;
}

.services-header {
    padding: 0 5vw;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
}

.highlight-green {
    color: #2b9a4c; /* Darker green for light bg */
}

.services-container {
    width: 100%;
    height: 70vh;
}

.services-track {
    display: flex;
    gap: 40px;
    padding: 0 5vw;
    height: 100%;
}

.service-card {
    flex: 0 0 450px;
    height: 100%;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.color-1 { background: #ffe4de; }
.color-2 { background: #eaffab; }
.color-3 { background: #f0e6ff; }
.color-4 { background: #d9f3ff; }

.card-inner {
    position: relative;
    z-index: 2;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.service-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 180px;
}

.service-card p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pricing Section */
.pricing {
    padding: 150px 5vw;
    position: relative;
}
.pricing-header {
    margin-bottom: 80px;
}
.pricing-header h2 {
    font-size: 6vw;
    font-weight: 800;
    text-transform: uppercase;
}
.pricing-list {
    display: flex;
    flex-direction: column;
}
.pricing-row {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: none;
    position: relative;
    transition: padding-left 0.4s var(--ease-out-expo);
}
.p-header {
    display: flex;
    align-items: center;
    width: 100%;
}
.pricing-row:hover {
    padding-left: 40px;
}
.p-title {
    font-size: 3vw;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}
.p-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255,255,255,0.2);
    margin: 0 30px;
}
.p-price {
    font-size: 2vw;
    font-weight: 400;
    font-family: var(--font-display);
    font-style: italic;
    white-space: nowrap;
}

/* Pricing Accordion Details & Abstract Art */
.p-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), margin-top 0.5s var(--ease-out-expo);
}
.pricing-row.active .p-details {
    opacity: 1;
    margin-top: 30px;
}
.p-details-inner {
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    color: #000;
}
.p-details-inner p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 600px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.abstract-art {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.color-block-1 { background: #ffe4de; }
.a-art-1 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--c-orange) 0%, transparent 70%);
    top: -50px; right: 50px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobMorph 8s infinite alternate ease-in-out;
}
.a-art-1::after {
    content: ''; position: absolute; width: 100px; height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,50 Q50,10 80,50 Q50,90 20,50 Z" fill="%23ff5e3a" opacity="0.5"/><circle cx="35" cy="45" r="5" fill="%23000"/><circle cx="65" cy="45" r="5" fill="%23000"/><path d="M45,60 Q50,70 55,60" stroke="%23000" stroke-width="3" fill="none"/></svg>') no-repeat center;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.color-block-2 { background: #eaffab; }
.a-art-2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, var(--c-green) 0%, transparent 70%);
    bottom: -50px; right: 20px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobMorph 10s infinite alternate-reverse ease-in-out;
}
.a-art-2::after {
    content: ''; position: absolute; width: 120px; height: 120px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23c6f049" opacity="0.6"/><path d="M20,30 Q30,10 50,30 Q70,10 80,30" stroke="%23000" stroke-width="4" fill="none" stroke-linecap="round"/><circle cx="35" cy="50" r="6" fill="%23000"/><circle cx="65" cy="50" r="6" fill="%23000"/></svg>') no-repeat center;
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg);
}

.color-block-3 { background: #f0e6ff; }
.a-art-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--c-purple) 0%, transparent 70%);
    top: -80px; right: -20px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph 9s infinite alternate ease-in-out;
}
.a-art-3::after {
    content: ''; position: absolute; width: 150px; height: 150px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,10 L70,40 L90,20 L80,60 L95,80 L50,90 L5,80 L20,60 L10,20 L30,40 Z" fill="%239b51e0" opacity="0.4"/><circle cx="40" cy="55" r="4" fill="%23000"/><circle cx="60" cy="55" r="4" fill="%23000"/></svg>') no-repeat center;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.color-block-4 { background: #d9f3ff; }
.a-art-4 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, var(--c-blue) 0%, transparent 70%);
    bottom: -60px; right: 50px;
    border-radius: 50%;
    animation: blobMorph 11s infinite alternate-reverse ease-in-out;
}
.a-art-4::after {
    content: ''; position: absolute; width: 140px; height: 140px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10,50 Q30,80 50,50 T90,50" stroke="%230693e3" stroke-width="8" fill="none" opacity="0.6" stroke-linecap="round"/><circle cx="35" cy="40" r="5" fill="%23000"/><circle cx="65" cy="40" r="5" fill="%23000"/><path d="M45,55 Q50,65 55,55" stroke="%23000" stroke-width="3" fill="none"/></svg>') no-repeat center;
    top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(10deg);
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
    33% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: scale(1.1) rotate(10deg); }
    66% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: scale(0.9) rotate(-5deg); }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
}

/* Reviews Section */
.reviews {
    padding: 150px 5vw;
    background: var(--bg-dark);
    color: var(--text-light);
    height: 300vh; /* For pinning */
}
.reviews-sticky {
    position: sticky;
    top: 100px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-pink);
    margin-bottom: 40px;
}
.reviews-track {
    position: relative;
    width: 100%;
    height: 60vh;
}
.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-light);
    color: var(--bg-dark);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-origin: top center;
}
.r1 { z-index: 1; background: #eaffab; }
.r2 { z-index: 2; background: #f0e6ff; }
.r3 { z-index: 3; background: #d9f3ff; }

.r-quote {
    font-size: 5vw;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
}
.r-author {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Video Break */
.video-break {
    height: 150vh; /* Extra height for pinning/scaling */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-container {
    width: 60vw;
    height: 60vh;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.huge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Booking Tabs Section */
.booking {
    padding: 150px 5vw;
    background: var(--c-purple);
    color: #fff;
}
.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #0a0a0c;
    border-radius: 50px;
    padding: 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.booking-left h2 {
    font-size: 5vw;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.booking-left p {
    font-size: 1.5rem;
    color: var(--text-muted);
}
.highlight-blue {
    color: var(--c-blue);
}

.booking-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: none;
    transition: color 0.3s;
    position: relative;
}
.tab-btn.active {
    color: var(--text-light);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--c-green);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-style: italic;
}
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.option-box {
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}
.option-box:hover {
    background: var(--c-green);
    color: #000;
    border-color: var(--c-green);
    transform: translateY(-5px);
}
.date-picker {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1.5rem;
    font-family: inherit;
    margin-bottom: 30px;
}
.date-picker::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
.btn-submit {
    width: 100%;
    background: var(--c-blue);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
}
.btn-submit:hover {
    background: var(--c-orange);
    transform: scale(1.02);
}

/* Features */
.features {
    padding: 150px 5vw;
}

.features-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 50px;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.f-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-style: italic;
    color: var(--c-orange);
    line-height: 1;
}

.f-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.f-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

/* FAQs Section */
.faqs {
    padding: 150px 5vw;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}
.faqs-header { margin-bottom: 80px; }
.faqs-header h2 { font-size: 6vw; font-weight: 800; text-transform: uppercase; }

.faq-list { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    cursor: none;
    position: relative;
    z-index: 2;
    border-radius: 30px;
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 0;
    background: var(--c-green);
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 30px;
}
.faq-item:nth-child(even)::before { background: var(--c-pink); }
.faq-item:nth-child(3)::before { background: var(--c-blue); }
.faq-item:nth-child(4)::before { background: var(--c-orange); }

.faq-item:hover::before, .faq-item.active::before { height: 100%; }

.faq-q {
    display: flex;
    align-items: center;
    font-size: 3vw;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.4s;
}
.faq-num { font-size: 1.5rem; margin-right: 30px; font-family: var(--font-display); font-style: italic; color: var(--text-muted); transition: color 0.4s; }
.faq-icon { margin-left: auto; font-size: 4rem; font-weight: 300; line-height: 1; transition: transform 0.5s, color 0.4s; }
.faq-a {
    height: 0;
    overflow: hidden;
    font-size: 1.5rem;
    color: var(--text-muted);
    padding-left: calc(1.5rem + 30px);
    max-width: 800px;
    opacity: 0;
    transform: translateY(-20px);
}

.faq-item:hover .faq-q, .faq-item.active .faq-q, 
.faq-item:hover .faq-icon, .faq-item.active .faq-icon { color: #000; }
.faq-item:hover .faq-num, .faq-item.active .faq-num { color: #222; }
.faq-item:hover .faq-a, .faq-item.active .faq-a { color: #111; }

/* Abstract Elements */
.faq-abstract {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}
.a-shape1 {
    width: 40vw; height: 40vw;
    background: var(--c-pink);
    top: -10%; right: -10%;
}
.a-shape2 {
    width: 30vw; height: 30vw;
    background: var(--c-purple);
    bottom: -10%; left: -10%;
}

/* Footer */
.footer {
    padding: 100px 5vw 40px;
    background: var(--bg-dark);
    color: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 100px;
}

.footer-cta h2 {
    font-size: 6vw;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.highlight-orange {
    color: var(--c-orange);
}

.btn-mega {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-mega:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.f-brand {
    font-size: 2.5rem;
    font-weight: 800;
}

.f-contact, .f-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.f-socials a {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.f-socials a:hover {
    color: var(--c-orange);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 600px; margin-top: 50px; }
    .video-container { width: 90vw; height: 50vh; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 30px; }
    .booking-inner { grid-template-columns: 1fr; padding: 40px; }
    .p-title { font-size: 4vw; }
    .p-price { font-size: 3vw; }
    .r-quote { font-size: 6vw; }
    .faq-q { font-size: 4.5vw; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 12vw; }
    .nav-links { display: none; }
    .feature { flex-direction: column; gap: 20px; }
    .services-track { padding: 0 20px; }
    .service-card { flex: 0 0 300px; padding: 20px; }
    .service-card h3 { font-size: 1.8rem; margin-top: 120px; }
    .p-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .p-details-inner { padding: 20px; }
    .p-details-inner p { font-size: 1.1rem; }
    .abstract-art { transform: scale(0.6); right: -50px; }
    .p-dots { display: none; }
    .p-price { font-size: 1.2rem; }
    .options-grid { grid-template-columns: 1fr; }
    .booking-tabs { flex-direction: column; align-items: flex-start; }
    .tab-btn.active::after { display: none; }
    .tab-btn { padding-left: 15px; border-left: 2px solid transparent; }
    .tab-btn.active { border-left-color: var(--c-green); }
    .faq-q { font-size: 6vw; }
    .faq-icon { font-size: 2.5rem; }
    .faq-item { padding: 30px 15px; }
}
