/* Import Google Fonts - Luxury Typography */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Awwwards Level Design */
:root {
    --primary-color: #742523;         /* Deep Bordeaux */
    --secondary-color: #E0D7CE;       /* Pure Beige */
    --accent-color: #742523;          /* Bordeaux Accent */
    --text-dark: #3C3C3C;             /* Anthracite */
    --text-light: #ffffff;
    --text-muted: #6B6B6B;            /* Muted Gray */
    --background-light: #FEFEFE;      /* Pure White */
    --background-cream: #E0D7CE;      /* Beige */
    --background-dark: #3C3C3C;
    --bordeaux: #742523;
    --beige: #E0D7CE;
    --anthracite: #3C3C3C;
    --white: #ffffff;
    --shadow-luxury: rgba(116, 37, 35, 0.12);
    --shadow-soft: rgba(116, 37, 35, 0.08);
    --grain-opacity: 0.015;
    --border-radius-organic: 3rem;
    --transition-smooth: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-elastic: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-magnetic: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Awwwards-compatible Variables */
    --color-bordeaux: #742523;
    --color-beige: #E0D7CE;
    --color-anthracite: #3C3C3C;
    --font-primary: 'Crimson Text', Georgia, serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Global Styles - Awwwards Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    overflow-x: hidden;
}

/* Lenis Smooth Scroll Integration */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Custom cursor */
}

/* Global Grain/Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--anthracite) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: var(--grain-opacity);
    z-index: 9999;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor - Awwwards Style */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--bordeaux);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: var(--transition-magnetic);
}

.cursor.hovering {
    width: 80px;
    height: 80px;
    background: var(--bordeaux);
    mix-blend-mode: multiply;
}

.cursor.magnetic {
    width: 40px;
    height: 40px;
    border: 2px solid var(--bordeaux);
    background: rgba(116, 37, 35, 0.1);
}

/* Typography - Awwwards Level */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.1;
}

h1 {
    font-size: 18vw;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Buttons - Luxury Modern */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius-luxury);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: none;
    min-height: 44px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-luxury);
}

.btn:active {
    transform: scale(0.98);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5D1620 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.btn-secondary {
    background: rgba(244, 240, 232, 0.9);
    color: var(--primary-color);
    border-color: var(--beige-medium);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--background-cream);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    border-color: var(--beige-medium);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Magnetic Elements */
.magnetic-element {
    transition: var(--transition-magnetic);
    will-change: transform;
}

/* Navigation - Awwwards Level */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.1);
    transition: var(--transition-smooth);
}

.logo-image:hover {
    filter: brightness(1.15) contrast(1.2);
    transform: scale(1.02);
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px var(--shadow-luxury);
    border: 1px solid var(--beige-medium);
}

.logo-text {
    color: var(--white);
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-name {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    letter-spacing: -0.005em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 28px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Spectacular Full-Screen */
.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--background-light);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(122, 30, 43, 0.15), rgba(44, 44, 44, 0.3)), url('images/785febaf-8b00-4d55-89b4-3884b5f3ef36.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 20s ease-out;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(200, 151, 95, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(122, 30, 43, 0.06) 0%, transparent 70%),
        linear-gradient(45deg, rgba(254, 252, 250, 0.03) 0%, transparent 100%);
    animation: spectacularFloat 15s ease-in-out infinite;
}

@keyframes spectacularFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(0.5deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-10px) rotate(-0.3deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-15px) rotate(0.2deg); 
        opacity: 0.8; 
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(254, 252, 250, 0.1) 0%, 
        rgba(244, 240, 232, 0.05) 40%, 
        rgba(122, 30, 43, 0.08) 100%);
    z-index: -1;
    backdrop-filter: blur(0.5px);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
}

/* Spectacular Title */
.spectacular-title {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    letter-spacing: -0.03em;
    line-height: 0.85;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(60px);
    animation: spectacularFadeIn 1.5s ease-out 0.3s forwards;
}

/* Elegant Expanding Divider */
.elegant-divider {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%, 
        var(--primary-color) 50%, 
        var(--accent-color) 80%, 
        transparent 100%);
    margin: 2rem auto 3rem;
    position: relative;
    animation: expandDivider 2s ease-out 0.8s forwards;
}

.elegant-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: centerDot 1s ease-out 1.5s forwards;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: spectacularFadeIn 1.2s ease-out 1s forwards;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.005em;
    opacity: 0;
    transform: translateY(30px);
    animation: spectacularFadeIn 1.2s ease-out 1.3s forwards;
}

/* Hero Buttons with Spectacular Animation */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: spectacularButtonIn 1s ease-out 1.6s forwards;
}

.hero-btn-secondary {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: spectacularButtonIn 1s ease-out 1.9s forwards;
}

/* Spectacular Animations */
@keyframes spectacularFadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandDivider {
    0% {
        width: 0;
    }
    100% {
        width: 200px;
    }
}

@keyframes centerDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes spectacularButtonIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: spectacularFadeIn 1s ease-out 2.5s forwards;
}

.scroll-indicator span {
    margin-bottom: 12px;
    color: var(--accent-color);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, 
        var(--accent-color) 0%, 
        transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Features Section - Luxury Modern */
.features {
    padding: 8rem 0;
    background: var(--gradient-beige);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23C8975F" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-family: 'Crimson Text', Georgia, serif;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.section-header p {
    font-size: 1.2rem;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-muted);
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 4.5rem 3.5rem;
    border-radius: var(--border-radius-luxury);
    text-align: center;
    box-shadow: 0 8px 40px rgba(122, 30, 43, 0.08), 
                0 2px 16px rgba(200, 151, 95, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(15px);
    overflow: hidden;
    border: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 60px rgba(122, 30, 43, 0.12), 
                0 8px 25px rgba(200, 151, 95, 0.15),
                0 0 0 1px rgba(200, 151, 95, 0.1);
}

.feature-card:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, 
        var(--accent-color) 0%, 
        #B8956F 50%, 
        var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(200, 151, 95, 0.25),
                0 2px 10px rgba(122, 30, 43, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(200, 151, 95, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(200, 151, 95, 0.4),
                0 4px 15px rgba(122, 30, 43, 0.2),
                0 0 0 4px rgba(200, 151, 95, 0.15);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    width: 42px;
    height: 42px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
    color: var(--primary-color);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-muted);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
    letter-spacing: 0.005em;
    transition: var(--transition-smooth);
}

.feature-card:hover p {
    opacity: 1;
    color: var(--text-dark);
}

/* Quote Section */
.quote-section {
    padding: 8rem 0;
    background: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-content blockquote {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.quote-content cite {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    color: var(--text-dark);
    opacity: 0.7;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.services-cta {
    text-align: center;
}

/* Contact Preview */
.contact-preview {
    padding: 8rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form-preview {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-preview h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-form input,
.quick-contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(139, 38, 53, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-contact-form button {
    margin-top: 1rem;
    justify-content: center;
}

/* Footer - Luxury Modern */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5D1620 100%);
    color: var(--text-light);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23C8975F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-family: 'Crimson Text', Georgia, serif;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 400;
    letter-spacing: 0.005em;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(2px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 151, 95, 0.2);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Spectacular Hero Responsive */
    .spectacular-title {
        font-size: 4.5rem;
        line-height: 0.9;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .elegant-divider {
        max-width: 150px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .quote-content blockquote {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Small Screens - Extra responsive for spectacular hero */
@media (max-width: 480px) {
    .spectacular-title {
        font-size: 3.5rem;
        line-height: 0.85;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .elegant-divider {
        max-width: 120px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}