/* --- Design Tokens --- */
:root {
    --color-bg-base: #0A0A0A; /* Deep Charcoal */
    --color-accent-gold: #D4AF37; /* Metallic Gold */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    
    --glass-bg: rgba(255, 255, 255, 0.05); /* Glassmorphism Surface */
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor globally */
}

/* To ensure text selection remains user-friendly, we can override cursor none on p, h1-h6 when cursor feature isn't pure visually restricted. However, for a fully custom cursor, having none globally is standard. We keep it as is. */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Layout Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* --- Custom Cursor --- */
.cursor-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.4);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, mix-blend-mode 0.3s ease;
    mix-blend-mode: exclusion;
}

.cursor-glow.cursor-hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--color-accent-gold);
    mix-blend-mode: normal;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) inset, 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --- Layout Shell: Sticky Header --- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-header:hover {
    background: radial-gradient(ellipse at top, rgba(0, 40, 15, 0.95) 0%, rgba(5, 20, 10, 0.98) 100%);
    box-shadow: 0 10px 30px rgba(0, 255, 100, 0.1) inset, 0 10px 40px rgba(0, 100, 40, 0.3);
    border-bottom-color: rgba(0, 255, 100, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.main-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-accent-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- Core Components --- */
.gold-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-accent-gold);
    border: 1px solid var(--color-accent-gold);
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.gold-btn:hover {
    color: var(--color-bg-base);
    border-color: var(--color-accent-gold);
}

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

/* --- Buttons & CTAs --- */
.glow-btn {
    box-shadow: 0 0 20px 0px rgba(212, 175, 55, 0.4);
}
.glow-btn:hover {
    box-shadow: 0 0 30px 5px rgba(212, 175, 55, 0.6);
}

.outline-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--glass-border);
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.outline-btn:hover {
    border-color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

/* --- Sections --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dark aesthetic premium background */
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05); /* Slight zoom for dramatic effect */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

/* Slider Section */
.slider-section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.slider-wrapper {
    /* Magic padding to align with container left edge but overflow right */
    padding-left: max(4rem, calc((100vw - 1400px) / 2 + 4rem));
    padding-right: 2rem;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 3rem;
    scrollbar-width: none; /* Firefox */
}
.slider-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.slide-card {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--glass-border);
}

.slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.slide-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-card:hover .slide-img {
    transform: scale(1.08); /* Cinematic zoom */
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 2;
}

.slide-content h3 {
    font-size: 1.6rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-content p {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    font-weight: 300;
    transform: translateY(10px);
    opacity: 0.7;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.slide-card:hover .slide-content h3,
.slide-card:hover .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

/* --- Phase 3 Sections --- */
.text-center {
    text-align: center;
}

.section-header.text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2.5rem auto;
}

.mt-xl {
    margin-top: 8rem;
}

/* Service Grid */
.service-grid-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.premium-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.card-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--color-accent-gold);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.premium-card:hover .card-glow {
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Transformation Engine */
.transformations-section {
    padding: 4rem 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.ba-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.ba-slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 120 / 80;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    background: #050505; /* Black letterboxing frame */
}

.ba-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.ba-after {
    width: 100%;
}

.ba-before {
    width: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); /* Initial state */
}

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    cursor: ew-resize !important;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.handle-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--color-accent-gold);
}

.handle-button {
    width: 46px;
    height: 46px;
    background: var(--color-bg-base);
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    position: relative;
    z-index: 11;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    pointer-events: none; /* Let handle take events */
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.stats-counter {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
}

.video-card:hover .video-thumbnail::before {
    background: rgba(0,0,0,0.2);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    transform: scale(1.1);
}

.video-info {
    padding: 2rem;
}

.video-info h4 {
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--color-text-secondary);
    font-style: italic;
    font-weight: 300;
}

.overflow-hidden {
    overflow: hidden;
}

/* --- Phase 4: Finalization & Responsiveness --- */

/* Loader */
.luxury-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-bg-base); z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.logo-reveal {
    font-family: var(--font-heading);
    font-size: 3rem; letter-spacing: 8px; font-weight: 600;
    background: linear-gradient(90deg, var(--color-text-secondary), #fff, var(--color-accent-gold), var(--color-text-secondary));
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s linear infinite;
}
@keyframes shine { to { background-position: 300%; } }
.loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Contact Suite */
.mt-4 { margin-top: 1.5rem; }
.contact-section { padding: 4rem 0; position: relative; }
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    background: var(--glass-bg); padding: 4rem; border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--color-accent-gold); }
.contact-info p { color: var(--color-text-secondary); font-size: 1.1rem; line-height: 1.6; }
.contact-details p { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-details strong { color: var(--color-accent-gold); font-weight: 500; }

.premium-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { color: var(--color-text-secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select {
    background: rgba(255,255,255,0.02); border: 0; border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0; color: #fff; font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-bottom-color: var(--color-accent-gold);
    background: rgba(255,255,255,0.05);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--color-bg-base); color: var(--color-text-primary); }
.w-100 { width: 100%; margin-top: 1rem; }

/* Floating Actions */
.floating-actions {
    position: fixed; bottom: 30px; left: 30px; right: 30px;
    display: flex; justify-content: space-between; z-index: 999; pointer-events: none;
}
.float-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-accent-gold); color: #000;
    pointer-events: auto; position: relative;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    animation: goldPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.3s ease;
}
.float-btn:hover { transform: scale(1.1); }
@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
    100% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
}

/* Footer */
.luxury-footer { 
    border-top: 1px solid rgba(0, 50, 20, 0.6); 
    padding: 2.5rem 0 1.5rem; 
    background: radial-gradient(ellipse at bottom, rgba(0, 40, 15, 0.8) 0%, rgba(5, 20, 10, 0.95) 100%); 
    box-shadow: 0 -20px 50px rgba(0, 100, 40, 0.15) inset;
}
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem; }
.footer-brand p { color: var(--color-text-secondary); margin-top: 0.5rem; }
.footer-social h4 { color: var(--color-accent-gold); font-family: var(--font-body); font-weight: 500; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.social-handle { color: var(--color-text-secondary); margin-bottom: 1rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a {
    width: 45px; height: 45px; border: 1px solid var(--glass-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--color-text-primary); transition: var(--transition-smooth);
}
.social-icons a:hover {
    border-color: var(--color-accent-gold); color: var(--color-accent-gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 2rem; color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* Responsive Mobile-First adjustments */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .section-title { font-size: 2.5rem; }
    .glass-header .header-container { padding: 1rem 2rem; }
    .container { padding: 0 2rem; }
    .slider-wrapper { padding-left: max(2rem, calc((100vw - 1024px) / 2 + 2rem)); }
    .contact-wrapper { padding: 3rem; gap: 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    
    /* Horizontal scroll for nav */
    .main-nav { overflow-x: auto; white-space: nowrap; max-width: 60vw; gap: 1.5rem; padding-bottom: 5px; }
    .main-nav::-webkit-scrollbar { display: none; }
    
    .hero-content h1 { font-size: 3rem; }
    .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-actions a { width: 100%; text-align: center; }
    
    .ba-slider { height: auto; }
    .slider-wrapper { padding-left: 1.5rem; }
    
    .contact-wrapper { grid-template-columns: 1fr; padding: 2rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
    
    .stat-number { font-size: 4rem; }
    .section-title { font-size: 2rem; }
    .slider-section, .service-grid-section, .transformations-section, .social-proof-section, .contact-section { padding: 3rem 0; }
    .logo-reveal { font-size: 2rem; letter-spacing: 4px; }
}

/* --- Premium Hero Carousel --- */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0B2E2B;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(11, 46, 43, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-slide-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-slide-content {
    max-width: 800px;
    padding: 0 2rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.hero-slide.active .slide-title,
.hero-slide.active .slide-subtitle,
.hero-slide.active .hero-actions {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide .hero-actions {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.carousel-control:hover {
    background: var(--color-accent-gold);
    color: #000;
    border-color: var(--color-accent-gold);
}

.carousel-control.prev { left: 2rem; }
.carousel-control.next { right: 2rem; }

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-accent-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-title { font-size: 3.5rem; }
    .hero-slide-content { text-align: center; padding: 0 1rem; }
    .hero-slide-overlay { background: linear-gradient(to top, rgba(11, 46, 43, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%); }
    .carousel-control { display: none; }
}
