/* --- Contact Page - Ultra Premium Boutique Styling --- */

:root {
    --color-noir: #000000;
    --color-gold: #d4af37;
    --color-gold-light: #f9f295;
    --color-gold-dark: #8c6a42;
    --color-silk: #f8f5f2;
    --color-glass: rgba(255, 255, 255, 0.03);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-wrapper {
    background-color: #ffffff; /* White Theme */
    color: #111111;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Floating Decorations --- */
.floating-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decor-item {
    position: absolute;
    color: var(--color-gold);
    opacity: 0.12; /* Slightly lower opacity because they are bigger */
    font-size: 60px; /* Increased from 30px */
    animation: floatAnim 10s infinite ease-in-out;
}

.decor-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 80px; }
.decor-2 { top: 40%; right: 5%; animation-delay: 2s; font-size: 70px; }
.decor-3 { top: 70%; left: 8%; animation-delay: 4s; font-size: 90px; }
.decor-4 { top: 85%; right: 10%; animation-delay: 6s; font-size: 65px; }
.decor-5 { top: 25%; right: 15%; animation-delay: 1s; font-size: 100px; }
.decor-6 { top: 55%; left: 15%; animation-delay: 3s; font-size: 50px; }
.decor-7 { top: 10%; right: 25%; animation-delay: 5s; font-size: 75px; }
.decor-8 { bottom: 10%; left: 25%; animation-delay: 7s; font-size: 85px; }


@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(20deg); }
}


/* --- Hero Section --- */
.contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.contact-hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* --- Contact Grid Section --- */
.contact-main {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* --- Contact Info Column --- */
.contact-info-panel h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--color-gold);
}

.contact-info-panel p.intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--color-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--color-gold);
    color: #000;
    transform: scale(1.1);
}

.info-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.info-text p, .info-text a {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    display: block;
}

/* --- Form Column --- */
.contact-form-panel {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: #fcfaf8;
    border: 1px solid #eeeeee;
    padding: 18px 25px;
    border-radius: 12px;
    color: #111;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.08);
}

.form-group select option {
    background-color: #fff;
    color: #000;
    padding: 10px;
}


.btn-submit {
    width: 100% !important;
    padding: 20px 22px !important;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-top: 25px !important;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2) !important;
}

.btn-submit:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.35) !important;
    filter: brightness(1.05) !important;
}

/* --- Map Section --- */
.map-section {
    padding-bottom: 100px;
}

.map-container {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    filter: grayscale(1) invert(1);
    opacity: 0.6;
    transition: var(--transition);
}

.map-container:hover {
    opacity: 1;
    filter: grayscale(0) invert(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-container {
        padding: 0 10px; /* Reduced to 10px */
    }
    
    .contact-main {
        padding: 40px 0;
    }

    .contact-info-panel h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-info-panel p.intro {
        text-align: center;
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .contact-form-panel {
        padding: 20px 10px; /* Reduced top padding */
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 15px; /* Reduced gap between fields */
    }

    
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-container {
        height: 280px;
        border-radius: 15px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .info-text p, .info-text a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-badge {
        padding: 5px 12px;
        letter-spacing: 2px;
        font-size: 9px;
    }

    .contact-form-panel {
        padding: 25px 10px; /* Consistent 10px padding */
    }

    .form-group label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .form-group input, .form-group textarea, .form-group select {
        padding: 12px 15px; /* Reduced internal padding for smaller size */
        font-size: 13px;
        border-radius: 10px;
    }

    .btn-submit {
        padding: 15px 20px !important;
        font-size: 12px !important;
        letter-spacing: 2px !important;
        border-radius: 30px !important;
    }
}



@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* --- Validation Styles --- */
.invalid-feedback {
    display: block;
    color: #e74c3c;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
    animation: fadeIn 0.3s ease;
}

.is-invalid {
    /* Removed red border for a cleaner look */
    background-color: #fff9f9 !important;
}

.alert-premium {
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #27ae60;
}

.alert-error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #c0392b;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

