/* Global CSS Variables and Base Styles */
:root {
    --primary: #1a1a1a;
    --secondary: #2a2a2a;
    --accent: #d4af37;
    --gold: #ffd700;
    --light: #f5f3f0;
    --text: #e8e6e3;
    --dark-gold: #b8860b;
    --cream: #f8f5f0;
    --red-accent: #b91c1c;
    --light-red: #dc2626;
    --gray: #4a4a4a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --luxury-gold: #e6c87e;
    --deep-red: #8b0000;
    --form-bg: #0a0a0a;
    --form-field-bg: #1a1a1a;
    --form-dropdown-bg: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 0.5px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 50px 0;
}

/* Section Title Styles (used by multiple components) */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 3.8rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 400;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--gold);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Red Accent Elements */
.red-accent {
    color: var(--red-accent);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 30px 0;
    }
}