:root {
    --primary-green: #154724;
    --accent-gold: #D4AF37;
    --soft-bg: #F9FAFB;
    --text-muted: #A6A6A6;
}

.text-muted {
    color: var(--text-muted);
    font-family: "Work Sans", sans-serif !important;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    color: #111827;
}

.playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.gold-text {
    color: var(--accent-gold);
}

.green-text {
    color: var(--primary-green);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Info Card */
.contact-info-section {
    margin-top: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    max-width: 600px;
    margin: 0 auto;
}

.hotel-icon-box {
    display: table;
    margin-bottom: 24px;
}

.hotel-icon-badge {

    vertical-align: top;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #D1A139 0%, #F6BD43 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    line-height: 48px;
}

.hotel-icon-badge i {
    font-size: 1.2rem;
}

.hotel-icon-text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}

.hotel-icon-text label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.hotel-icon-text p {
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
}

.hotel-icon-text a {
    text-decoration: none;
}

/* Form Section */
.form-section {
    padding-bottom: 80px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 1px solid #E5E7EB;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(180deg, #D1A139 0%, #F6BD43 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 33%;
    margin: 32px auto 0;
    min-width: 150px; /* Safety for very small screens */
}

.btn-submit:hover {
    background-color: #C19A2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-card {
        max-width: 100%;
    }

    .form-container {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .map-container {
        height: 280px;
    }

    .contact-card {
        padding: 24px;
        border-radius: 16px;
        max-width: 100%;
    }

    .form-container {
        padding: 24px;
        border-radius: 16px;
        max-width: 100%;
    }

    .btn-submit {
        width: 100%;
        max-width: 320px;
    }

    .form-section {
        padding-bottom: 50px;
    }
}