:root {
    --gold: #d4af37;
    --primary: #8B7355;
    --dark: #2c2c2c;
    --light-bg: #faf8f4;
    --text-muted: #5a5a5a;
}

body {
    padding-top: 0;
    background-color: white;
}

.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 80px;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}
.contact-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-hero-content .gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}
.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}
@media (max-width: 992px) {
    .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-block {
    background: var(--light-bg);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139,115,85,0.2);
}
.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}
.info-text p, .info-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}
.info-text a:hover {
    color: var(--gold);
}

.social-links-block {
    margin-top: 30px;
    text-align: center;
}
.social-links-block h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.social-icons a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.contact-form-block {
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0e7da;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2dfda;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}
.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.submit-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 14px 28px;
    width: 100%;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.submit-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#formStatus {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.map-section {
    margin: 60px 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-hours {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}
.work-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.work-hours p {
    margin: 5px 0;
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-hero { background-attachment: scroll; min-height: 35vh; }
    .contact-hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .contact-info-block, .contact-form-block { padding: 30px 20px; }
}

:root {
    --gold: #d4af37;
    --primary: #8B7355;
    --dark: #2c2c2c;
    --light-bg: #faf8f4;
    --text-muted: #5a5a5a;
}

body {
    padding-top: 0;
    background-color: white;
}

.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 80px;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}
.contact-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-hero-content .gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}
.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}
@media (max-width: 992px) {
    .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-block {
    background: var(--light-bg);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139,115,85,0.2);
}
.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}
.info-text p, .info-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}
.info-text a:hover {
    color: var(--gold);
}

.social-links-block {
    margin-top: 30px;
    text-align: center;
}
.social-links-block h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.social-icons a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.contact-form-block {
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0e7da;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2dfda;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}
.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.submit-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 14px 28px;
    width: 100%;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.submit-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#formStatus {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.map-section {
    margin: 60px 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-hours {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}
.work-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.work-hours p {
    margin: 5px 0;
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-hero { background-attachment: scroll; min-height: 35vh; }
    .contact-hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .contact-info-block, .contact-form-block { padding: 30px 20px; }
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--primary);
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.dropdown-toggle i {
    color: var(--gold);
    font-size: 1rem;
}
.dropdown-toggle:hover {
    background: #faf8f4;
    border-color: var(--gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    background: white;
    border: 1px solid #e2dfda;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    overflow: hidden;
    margin-top: 12px;
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f0ea;
    font-size: 0.95rem;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item i {
    width: 22px;
    color: var(--gold);
    font-size: 1rem;
}
.dropdown-item:hover {
    background: #faf8f4;
    color: #8B7355;
}
@media (max-width: 768px) {
    .dropdown-toggle {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }
    .dropdown-menu {
        min-width: 240px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
    }
    .dropdown-menu.show {
        transform: translateX(-50%) translateY(0);
    }
}