/* Reset and Base Styles - Added footer links styling - v2.6 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - New Direct Commercial Palette */
    --primary-burgundy: #6E1F28;
    --light-burgundy: #FFFFFF;
    --deep-wine: #5A1A22;
    --rich-gold: #CDAA6D;
    --warm-bronze: #B8860B;
    --elegant-cream: #F5F1EB;
    --charcoal-gray: #2C2C2C;
    --soft-gray: #6B6B6B;
    --accent-rose: #B8860B;
    --light-gold: #F4E4BC;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --max-width: 1200px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(139, 21, 56, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 21, 56, 0.15);
    --shadow-heavy: 0 15px 50px rgba(139, 21, 56, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 120px;
}

.nav {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}


.nav-logo .logo {
    height: 100px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 100px !important;
    object-fit: contain !important;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--charcoal-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-burgundy);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, var(--rich-gold), var(--warm-bronze));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    color: white !important;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--deep-wine), var(--primary-burgundy));
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--rich-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-burgundy);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--elegant-cream) 0%, #ffffff 50%, var(--light-gold) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23CD7F32" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%238B1538" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--rich-gold), var(--deep-wine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
}

.hero-brand-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: -25px;
    margin-left: -20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 21, 56, 0.3));
    transition: transform 0.3s ease;
}

.hero-brand-logo:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    display: block;
    font-size: 1.3rem;
    color: var(--charcoal-gray);
    font-weight: 600;
    margin-top: 0px;
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    color: white;
    border: 2px solid var(--rich-gold);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--deep-wine), var(--primary-burgundy));
    border-color: var(--warm-bronze);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img.hero-photo-circle {
    width: 100% !important;
    max-width: 500px !important;
    height: 500px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    animation: gentle-float 6s ease-in-out infinite !important;
    transition: transform 0.3s ease !important;
    display: block !important;
}

.hero-photo-circle {
    width: 100% !important;
    max-width: 500px !important;
    height: 500px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3), 0 0 0 4px var(--rich-gold), 0 0 0 8px rgba(212, 175, 55, 0.2) !important;
    animation: luxury-float 8s ease-in-out infinite !important;
    transition: all 0.4s ease !important;
    display: block !important;
    border: 3px solid var(--warm-bronze);
}

.hero-photo-circle:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 25px 80px rgba(139, 21, 56, 0.4), 0 0 0 6px var(--rich-gold), 0 0 0 12px rgba(212, 175, 55, 0.3);
    border-color: var(--rich-gold);
}

@keyframes luxury-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-8px) rotate(-0.5deg); 
    }
}

/* Section Styles */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-burgundy);
    text-align: center;
    margin-bottom: 70px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.01em;
    position: relative;
}

.section-title.light {
    color: var(--light-burgundy);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rich-gold), var(--warm-bronze));
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--elegant-cream) 0%, #ffffff 50%, var(--light-gold) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23CD7F32" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%238B1538" opacity="0.05"/><circle cx="10" cy="60" r="0.8" fill="%23B8860B" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    text-align: left;
}

.about-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.about-description {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.2);
    border-color: var(--rich-gold);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--primary-burgundy) !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(139, 21, 56, 0.3);
}

.highlight-text h4 {
    color: var(--primary-burgundy);
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.highlight-text p {
    color: var(--charcoal-gray);
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

/* About GlowMuse Section */
.about-glowmuse {
    background: linear-gradient(135deg, var(--elegant-cream) 0%, #f8f6f3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-glowmuse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="25" cy="25" r="1" fill="%23e8e4e0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e8e4e0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e8e4e0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e8e4e0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e8e4e0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.about-glowmuse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-glowmuse-text {
    padding-left: 20px;
}

.about-glowmuse-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.1);
    letter-spacing: -0.5px;
}

.about-glowmuse-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--rich-gold));
    margin-top: 15px;
    border-radius: 2px;
}

.about-glowmuse-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-glowmuse-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glowmuse-logo-icon {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(139, 21, 56, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.glowmuse-logo-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 35px rgba(139, 21, 56, 0.25));
}

/* Responsive Design for About GlowMuse */
@media (max-width: 768px) {
    .about-glowmuse {
        padding: 60px 0;
    }
    
    .about-glowmuse-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-glowmuse-text {
        padding-left: 0;
    }
    
    .about-glowmuse-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-glowmuse-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .glowmuse-logo-icon {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .about-glowmuse {
        padding: 50px 0;
    }
    
    .about-glowmuse-content {
        gap: 30px;
    }
    
    .about-glowmuse-title {
        font-size: 1.8rem;
    }
    
    .glowmuse-logo-icon {
        max-width: 200px;
    }
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #ffffff 0%, var(--elegant-cream) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 45px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rich-gold), var(--warm-bronze));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--rich-gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-burgundy) !important;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(139, 21, 56, 0.3);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-burgundy);
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.feature-description {
    color: var(--charcoal-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Why Now Section */
.why-now {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
    position: relative;
}

.why-now-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.why-now-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.why-now-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--rich-gold);
}

.why-now-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-burgundy) !important;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(139, 21, 56, 0.3);
}

.why-now-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-burgundy);
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.why-now-item p {
    color: var(--charcoal-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

.why-now-button-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Testimonial Section */
.testimonial {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--elegant-cream) 0%, #ffffff 100%);
    position: relative;
}

.testimonial-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--rich-gold);
    font-family: var(--font-display);
    opacity: 0.3;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-burgundy);
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-author {
    font-weight: 700;
    color: var(--rich-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine), var(--rich-gold));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23CD7F32" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.lead-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    margin: 0 auto;
    border: 3px solid var(--rich-gold);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal-gray);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input {
    width: 100%;
    padding: 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.form-group input:focus {
    outline: none;
    border-color: var(--rich-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    background: white;
    transform: translateY(-2px);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    color: white;
    border: 2px solid var(--rich-gold);
    padding: 18px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
    background: linear-gradient(135deg, var(--deep-wine), var(--primary-burgundy));
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal-gray), var(--primary-burgundy));
    color: white;
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23CD7F32" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.footer-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo .logo {
    height: 130px !important;
    width: auto !important;
    max-width: none !important;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.footer-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: var(--rich-gold);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--rich-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 35px;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* New Sections Styles */

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, var(--elegant-cream) 0%, #ffffff 100%);
    padding: var(--section-padding);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(139, 21, 56, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-burgundy);
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-burgundy);
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.2);
    min-width: 60px;
    text-align: center;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--charcoal-gray);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.how-it-works-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    font-weight: 500;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 40px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #ffffff 0%, var(--elegant-cream) 100%);
    padding: var(--section-padding);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--rich-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-burgundy);
}

.pricing-card.featured {
    border-color: var(--rich-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-burgundy);
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.2);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal-gray);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.2);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--charcoal-gray);
    font-weight: 500;
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-offer {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: var(--shadow-heavy);
}

.pricing-offer h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--rich-gold);
}

.pricing-offer p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Security Section */
.security {
    background: linear-gradient(135deg, var(--charcoal-gray) 0%, #1a1a1a 100%);
    color: white;
    padding: var(--section-padding);
    position: relative;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-16.569-13.431-30-30-30v30h30z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.security-description {
    font-size: 1.5rem;
    color: var(--rich-gold);
    font-weight: 600;
    margin-bottom: 40px;
}

.security-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.security-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.security-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rich-gold);
    transform: translateY(-2px);
}

.security-conclusion {
    font-size: 1.3rem;
    color: var(--elegant-cream);
    font-weight: 500;
    margin-top: 40px;
    line-height: 1.6;
}

.security-cta {
    text-align: center;
    margin-top: 50px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--deep-wine) 100%);
    color: white;
    padding: var(--section-padding);
    position: relative;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.1'%3E%3Cpath d='M40 40c0-22.091-17.909-40-40-40v40h40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--rich-gold);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1.4rem;
    color: var(--elegant-cream);
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Medium and Large Screens - Security Features */
@media (min-width: 769px) {
    .security-features {
        grid-template-columns: 1fr 1fr !important;
        max-width: 600px !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: var(--light-cream);
        transform: translateX(5px);
    }
    
    .nav-menu .nav-cta {
        background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine)) !important;
        color: white !important;
        margin: 20px 0;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 30px;
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-cta:hover {
        background: linear-gradient(135deg, var(--deep-wine), var(--primary-burgundy)) !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle span {
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-image img.hero-photo-circle,
    .hero-photo-circle {
        max-width: 300px !important;
        height: 300px !important;
    }
    
    .hero-brand {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-brand-logo {
        max-width: 180px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .about-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
    }
    
    .highlight-text h4 {
        font-size: 1.1rem;
    }
    
    .highlight-text p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-now-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-now-button-container {
        margin-top: 30px;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .lead-form {
        padding: 30px 20px;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 30px;
        padding: 0 15px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 200px;
        margin: 20px auto;
    }
    
    .hero-image img.hero-photo-circle,
    .hero-photo-circle {
        max-width: 200px !important;
        height: 200px !important;
    }
    
    .hero-brand {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-brand-logo {
        max-width: 250px;
        margin-left: 0;
        margin: 0 auto;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .why-now-item {
        padding: 20px;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .lead-form {
        padding: 25px 15px;
    }
    
    .form-group input {
        padding: 12px;
    }
    
    .submit-button {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-container {
        padding: 0 10px;
        gap: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 200px;
        margin: 20px auto;
    }
    
    .hero-image img.hero-photo-circle,
    .hero-photo-circle {
        max-width: 200px !important;
        height: 200px !important;
    }
    
    .hero-brand {
        font-size: 1.5rem;
    }
    
    .hero-brand-logo {
        max-width: 200px;
        margin-left: 0;
        margin: 0 auto;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-text {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
        max-width: 250px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .why-now-item {
        padding: 15px;
    }
    
    .why-now-button-container {
        margin-top: 25px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .lead-form {
        padding: 20px 10px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px;
        gap: 12px;
    }
    
    .highlight-icon {
        font-size: 1.3rem;
    }
    
    .highlight-text h4 {
        font-size: 1rem;
    }
    
    .highlight-text p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* New Sections Mobile */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-icon {
        font-size: 2.5rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .security-features li {
        padding: 15px;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .final-cta-description {
        font-size: 1.2rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, var(--elegant-cream) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 20px;
    border: 2px solid var(--rich-gold);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--rich-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--rich-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-message {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-submessage {
    font-size: 1rem;
    color: var(--soft-gray);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.modal-footer {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.modal-button {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
    background: linear-gradient(135deg, var(--deep-wine), var(--primary-burgundy));
}

.modal-button:active {
    transform: translateY(0);
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        width: 95%;
    }
    
    .modal-header {
        padding: 25px 20px;
    }
    
    .modal-icon {
        font-size: 2.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-message {
        font-size: 1.1rem;
    }
    
    .modal-submessage {
        font-size: 0.95rem;
    }
    
    .modal-footer {
        padding: 0 20px 25px 20px;
    }
    
    .modal-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ========================================
   AGE VERIFICATION MODAL STYLES
   ======================================== */

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.age-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 20px;
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
    border: 2px solid var(--rich-gold);
}

.age-modal-header {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-wine));
    padding: 30px;
    text-align: center;
    color: white;
}

.age-modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.age-modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.age-modal-message {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.age-modal-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin: 0;
    font-family: var(--font-display);
}

.age-modal-footer {
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.age-modal-button {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.age-modal-button-no {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.age-modal-button-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333, #bd2130);
}

.age-modal-button-yes {
    background: linear-gradient(135deg, var(--rich-gold), var(--warm-bronze));
    color: white;
    box-shadow: 0 4px 15px rgba(205, 170, 109, 0.3);
}

.age-modal-button-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 170, 109, 0.4);
    background: linear-gradient(135deg, var(--warm-bronze), #9a7209);
}

.age-modal-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Age Modal */
@media (max-width: 768px) {
    .age-modal-content {
        margin: 10px;
        width: 95%;
    }
    
    .age-modal-header {
        padding: 25px 20px;
    }
    
    .age-modal-icon {
        font-size: 2.5rem;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
    
    .age-modal-body {
        padding: 30px 20px;
    }
    
    .age-modal-message {
        font-size: 1rem;
    }
    
    .age-modal-question {
        font-size: 1.2rem;
    }
    
    .age-modal-footer {
        padding: 0 20px 25px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .age-modal-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: auto;
        width: 100%;
    }
}

/* Hide page content when age modal is shown */
body.age-modal-active {
    overflow: hidden;
}

body.age-modal-active .header,
body.age-modal-active .hero,
body.age-modal-active .cta-section,
body.age-modal-active .how-it-works,
body.age-modal-active .about-glowmuse,
body.age-modal-active .pricing,
body.age-modal-active .security,
body.age-modal-active .final-cta,
body.age-modal-active .footer {
    filter: blur(5px);
    pointer-events: none;
}
