:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --white: #ffffff;
    --accent-glow: rgba(180, 145, 100, 0.2);
}

/* Header styles removed to use global home.css synchronization */

/* Contact Hero */
.contact-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(78, 77, 77, 0.7)), url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--accent-glow);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs .separator {
    color: var(--accent);
}

.breadcrumbs span.current {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
    color: #111111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #fbfbfb;
    border: 1px solid #eeeeee;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    border-color: var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.info-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #000000;
}

.form-header p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.form-input {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    padding: 15px 20px;
    border-radius: 12px;
    color: #111111;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Map Section */
.map-section {
    padding-bottom: 20px;
    background: #ffffff;
}

.map-container {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border:none;
    filter: grayscale(0.2) contrast(1.1); /* Subtle premium look for map */
}

.nav-icons {
    color: #000000;
}



/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 42px;
        color: white;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-input {
        padding: 12px 15px;
        font-size: 15px;
    }

    .info-card {
        padding: 25px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .icon-box {
        margin-bottom: 5px;
    }
    
    .breadcrumbs {
        font-size: 13px;
    }
}

.error-message {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 5px;
    margin-left: 5px;
    font-weight: 500;
    display: block;
}

.form-input.is-invalid {
    background: rgba(255, 77, 77, 0.02) !important;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(22, 101, 52, 0.1);
}

.alert-close i {
    width: 18px;
    height: 18px;
}
