/* Enhanced Contacts CSS with Dark Header Matching Home Page */
@import url('../css/home.css'); /* Import base styles */

/* Contacts-specific overrides and enhancements */
:root {
    --gradient-contact: linear-gradient(135deg, #D4AF37 0%, #B8941F 50%, #E6C158 100%);
    --gradient-form: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(42, 42, 42, 0.7) 100%);
}

/* Enhanced Header Styling to match home page - DARK THEME */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.98) !important;
    box-shadow: var(--shadow-glow), 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border-bottom-color: var(--primary-color) !important;
}

.header.hidden {
    transform: translateY(-100%) !important;
}

/* Brand Logo Styling - Matching Home Page */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-logo:hover {
    color: var(--primary-color);
    transform: scale(1.05) translateY(-2px);
}

.brand-logo_icon {
    margin-right: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--primary-color);
}

.brand-logo:hover .brand-logo_icon {
    transform: rotate(360deg) scale(1.1);
    color: var(--accent-gold);
}

/* Navigation Links - Dark Theme */
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Styles - Dark Theme */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        color: var(--text-primary);
    }

    .header-content .btn {
        display: none;
    }
}

/* Enhanced Contact Hero Section */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 50%, rgba(212, 175, 55, 0.1) 100%);
    padding: 8rem 0 4rem;
}

.contact-hero .hero-bg-particles {
    background-image: 
        radial-gradient(3px 3px at 30px 50px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(2px 2px at 60px 90px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(212, 175, 55, 0.2), transparent);
    background-size: 150px 150px;
    animation: particleFloat 25s linear infinite, particleGlow 8s ease-in-out infinite alternate;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-hero-stats .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: statsReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.contact-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Information Section */
.contact-info {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.section-animate.animate-in .section-title::after {
    width: 120px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: var(--gradient-form);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.contact-info-card[data-delay="100"] { animation-delay: 0.1s; }
.contact-info-card[data-delay="200"] { animation-delay: 0.2s; }
.contact-info-card[data-delay="300"] { animation-delay: 0.3s; }
.contact-info-card[data-delay="400"] { animation-delay: 0.4s; }

.contact-info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
    background: rgba(42, 42, 42, 1);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-info-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.contact-info-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Contact Form Section - UPDATED TO MATCH YOUR HTML */
.contact-form-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact-form-container {
    background: var(--gradient-form);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 25px 25px 0 0;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Form styles - UPDATED TO MATCH YOUR HTML STRUCTURE */
.bullione-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.form-row {
    display: contents;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.3rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 58px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(42, 42, 42, 0.95);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Select dropdown styling */
select.form-control {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1.2rem center;
    background-repeat: no-repeat;
    background-size: 1.2rem;
    padding-right: 3rem;
}

/* Textarea styling */
textarea.form-control {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
    font-family: inherit;
}

/* Checkbox styling */
.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--primary-dark);
}

/* Submit button */
.submit-btn {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
    color: #121212;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4), 
        0 15px 35px rgba(212, 175, 55, 0.3);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(18, 18, 18, 0.3);
    border-top: 2px solid #121212;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Error states */
.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    background: rgba(42, 42, 42, 0.9);
}

/* Success/Error notifications */
.form-notification {
    position: relative;
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    display: none;
}

.form-notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}

.form-notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: var(--bg-lighter);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 450px;
    margin-top: 3rem;
    z-index: 2;
}

/* Leaflet Map Styles */
.bullione-map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Custom Leaflet marker styles */
.custom-map-marker {
    background: transparent;
    border: none;
}

.leaflet-popup-content-wrapper {
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.leaflet-popup-tip {
    background: var(--bg-light);
}

.leaflet-container {
    background: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.leaflet-control-zoom a {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

.leaflet-control-zoom a:hover {
    background: var(--primary-color);
    color: white;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-card {
    background: var(--gradient-form);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    max-width: 250px;
}

.map-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.map-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.btn-small {
    background: var(--gradient-primary);
    color: #121212;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--gradient-form);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    position: relative;
}

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

.newsletter-header {
    margin-bottom: 3rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 3rem;
}

.newsletter-input-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: #121212;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.newsletter-privacy {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.newsletter-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.newsletter-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: block;
}

.newsletter-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #121212;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #121212;
}

/* Footer - Matching Home Page */
.footer {
    background: var(--bg-lighter);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
}

/* Live Chat Widget - Matching Home Page */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulseWhatsApp 2s infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.chat-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--gradient-primary);
    color: #121212;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: #121212;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(18, 18, 18, 0.2);
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.quick-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-option {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-option:hover {
    background: var(--primary-color);
    color: #121212;
}

.chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    background: rgba(42, 42, 42, 0.8);
    color: var(--text-primary);
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.chat-send {
    background: var(--gradient-primary);
    border: none;
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-container {
        padding: 3rem 2.5rem;
    }
    
    .bullione-contact-form {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .bullione-contact-form {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-control {
        padding: 1.2rem 1.3rem;
        min-height: 52px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1.3rem 2.5rem;
        font-size: 1rem;
        min-height: 60px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
    }
    
    .map-card {
        max-width: 100%;
    }
    
    .chat-popup {
        width: 300px;
        right: -50px;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-control {
        padding: 1.1rem 1.2rem;
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        min-height: 56px;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .chat-popup {
        width: 280px;
        right: -30px;
    }
}

/* Animations */
@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section Animation */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}