:root {
    --brand-dark: #002d25;
    --brand-gold: #d4af37;
    --mint-bg: #f2faf7;
    --soft-white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    color: var(--brand-dark);
}

/* Header */
.contact-header {
    padding: 80px 0 50px;
    text-align: center;
}

.label-gold {
    color: var(--brand-gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--brand-dark);
    margin-top: 10px;
}

.contact-title span {
    font-style: italic;
    color: #7a9d96;
}

.contact-desc {
    max-width: 600px;
    margin: 20px auto;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.form-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    background-color: var(--mint-bg);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--brand-dark);
}

.form-control:focus {
    background-color: #e8f5f0;
    box-shadow: none;
    border: 1px solid #d1e7dd;
}

.btn-send {
    background-color: var(--brand-dark);
    color: white;
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-send:hover {
    background-color: #004439;
    transform: translateY(-2px);
    color: white;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    background: var(--mint-bg);
    color: var(--brand-dark);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h6 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #888;
}

.info-text p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Visit Card */
.visit-card {
    background-color: var(--brand-dark);
    color: white;
    border-radius: 30px;
    padding: 30px;
    margin-top: 20px;
}

.visit-title {
    color: var(--brand-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.visit-title i {
    margin-right: 10px;
}

.visit-text {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.temp-stat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.iframe-section {
    background: #f8f9fa;
}

.iframe-wrapper {
    border-radius: 16px;
}


@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .form-card {
        padding: 30px 20px;
        border-radius: 30px;
    }
}