/* ===== VARIABLES & RESET ===== */
:root {
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #EAEAEA;
    --cream: #FAF7F2;
    --gold: #C9A96A;
    --gold-light: #D4B483;
    --gold-dark: #B08D5A;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--cream);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

/* ===== NAVIGATION (Commun à toutes les pages) ===== */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--light-gray);
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 106, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

.whatsapp-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--light-gray);
    border: 1px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ===== BADGES POUR SERVICES ===== */
.active-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    color: #25D366;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.active-badge i {
    font-size: 0.9rem;
}

/* ===== MESSAGE DE LANCEMENT ===== */
.launch-message {
    text-align: center;
    padding: 2rem;
    background: rgba(201, 169, 106, 0.05);
    border: 1px solid rgba(201, 169, 106, 0.2);
    border-radius: 2px;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.launch-message h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.launch-message h4::before {
    content: "✓";
    color: #25D366;
    font-weight: bold;
}

.activity-status {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FOOTER (Commun à toutes les pages) ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-decoration: none;
}

.footer-tagline {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    color: var(--gold);
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.link-column a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.footer-newsletter p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: var(--light-gray);
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff4757;
    margin: 0 0.3rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(201, 169, 106, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .launch-message h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .active-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .launch-message {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
/* ===== IMPROVED ANIMATIONS & TRANSITIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
                transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== IMPROVED ACTIVE STATES ===== */
.active-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0);
        transform: scale(1.02);
    }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-content {
    animation: heroReveal 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    opacity: 0;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-scroll {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(201, 169, 106, 0.1) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ===== ENHANCED GALLERY PREVIEW ===== */
.preview-item {
    perspective: 1000px;
}

.preview-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.preview-item:hover .preview-item-inner {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 2;
}

.preview-item:hover .preview-overlay {
    transform: translateY(0);
}

/* ===== LAUNCH COUNTDOWN ENHANCED ===== */
.launch-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 120px;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(201, 169, 106, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%,
        rgba(201, 169, 106, 0.1) 50%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.countdown-item:hover::before {
    transform: translateX(100%);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-sans);
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.countdown-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Launch Message Enhanced */
.launch-message {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 106, 0.3);
    background: linear-gradient(45deg, 
        rgba(201, 169, 106, 0.05) 0%,
        rgba(10, 10, 10, 0.9) 50%,
        rgba(201, 169, 106, 0.05) 100%);
}

.launch-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(201, 169, 106, 0.1),
        transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.launch-announcement {
    animation: celebration 1s ease;
}

@keyframes celebration {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.now-open {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
}

/* ===== ENHANCED STATS GRID ===== */
.stats-grid {
    position: relative;
}

.stat-item {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(201, 169, 106, 0.1);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    transition: all 0.6s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--gold-light);
}

.stat-label {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    transition: all 0.6s ease;
}

.stat-item:hover .stat-label {
    color: var(--cream);
    transform: translateY(5px);
}

/* ===== ENHANCED TESTIMONIALS ===== */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: serif;
    z-index: 0;
    transition: all 0.6s ease;
}

.testimonial-card:hover::before {
    transform: scale(1.2);
    opacity: 0.15;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-author strong::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===== ENHANCED BLOG CARDS ===== */
.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(201, 169, 106, 0.1) 0%,
        transparent 50%,
        rgba(201, 169, 106, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-date {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-date {
    transform: rotate(-5deg) scale(1.1);
    background: var(--gold-light);
}

.blog-content {
    position: relative;
    z-index: 2;
}

.blog-link {
    position: relative;
    overflow: hidden;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.blog-link:hover::after {
    width: 100%;
}

/* ===== ENHANCED CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 106, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 106, 0.1) 0%, transparent 40%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 100px) rotate(360deg); }
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.cta-buttons .btn:hover::before {
    transform: translateX(100%);
}

.cta-info p {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.cta-info p:nth-child(1) { animation-delay: 0.2s; }
.cta-info p:nth-child(2) { animation-delay: 0.4s; }
.cta-info p:nth-child(3) { animation-delay: 0.6s; }

/* ===== ENHANCED NAVIGATION SCROLL EFFECT ===== */
.main-nav.scrolled {
    animation: navSlideDown 0.4s ease;
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ===== ENHANCED FORM STYLES ===== */
.newsletter-form input:focus,
.newsletter-form button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(201, 169, 106, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(201, 169, 106, 0.05) 0%, transparent 40%);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-social a {
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
}

/* ===== ENHANCED RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .countdown-item {
        min-width: 100px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 1.2rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonial-card::before {
        font-size: 6rem;
        top: -20px;
    }
    
    .launch-message::before {
        animation: shimmer 5s infinite;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .launch-countdown {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .cta-info p {
        font-size: 0.8rem;
    }
}

/* ===== DARK/LIGHT MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
    .hero-title .line-1 {
        color: var(--black);
    }
    
    .hero-subtitle {
        color: var(--dark-gray);
    }
    
    .lightbox {
        background: rgba(250, 247, 242, 0.98);
    }
    
    .lightbox-info {
        background: linear-gradient(transparent, rgba(250, 247, 242, 0.95));
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-scroll,
    .active-badge,
    .now-open,
    .launch-message::before,
    .countdown-item::before,
    .cta-section::before,
    .service-card:hover .service-icon,
    .preview-item:hover .preview-item-inner {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    .btn,
    .service-card,
    .testimonial-card,
    .blog-card,
    .countdown-item,
    .stat-item {
        border: 2px solid currentColor;
    }
    
    .nav-link::after,
    .blog-link::after {
        height: 3px;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-transparency: reduce) {
    .hero,
    .lightbox,
    .launch-message,
    .countdown-item,
    .testimonial-card,
    .cta-section,
    .footer {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}