/* ===== Contact Section ===== */
.contact {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}
/* Same width as .contact-content so title + form + office line up */
.contact-intro {
    max-width: 1000px;
    margin: 0 auto 2rem;
    width: 100%;
}
.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #4a5568;
    text-align: center;
    margin-bottom: 0.5rem;
}
.contact-heading .accent {
    color: #2d6a7a;
    font-weight: 800;
    font-style: italic;
}
.contact-subheading {
    text-align: center;
    font-size: 0.95rem;
    color: #5a6577;
    margin-bottom: 0;
}
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-left, .contact-right {
    flex: 1;
}

/* Form Styles */
.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 0.35rem;
}
.contact-form-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: #2d6a7a;
    margin-bottom: 1.75rem;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    color: #2d6a7a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1a2744;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2d6a7a;
    box-shadow: 0 0 0 3px rgba(45, 106, 122, 0.1);
    background: #f8fdfe;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 0.95rem 2rem;
    background: linear-gradient(135deg, #1a2744 0%, #2d6a7a 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(26, 39, 68, 0.2);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 39, 68, 0.3);
}

.btn-submit:active::before {
    width: 300px;
    height: 300px;
}

/* Office Info */
.contact-office-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1a2744;
    margin-bottom: 1.25rem;
}
.contact-office-title strong {
    font-weight: 800;
}
.office-info {
    list-style: none;
    margin-bottom: 1.5rem;
}
.office-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: #5a6577;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding-left: 0;
}

.office-info li:hover {
    padding-left: 0.5rem;
    color: #1a2744;
}

.office-info li strong {
    color: #1a2744;
    font-weight: 600;
}
.office-info li a {
    color: #2d6a7a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.office-info li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d6a7a;
    transition: width 0.3s ease;
}

.office-info li a:hover {
    color: #1a2744;
}

.office-info li a:hover::after {
    width: 100%;
}

.info-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid #6ba3aa;
    flex-shrink: 0;
    margin-top: 0.15rem;
    transition: all 0.3s ease;
}

.office-info li:hover .info-dot {
    border-color: #2d6a7a;
    box-shadow: 0 0 8px rgba(45, 106, 122, 0.3);
    transform: scale(1.2);
}

/* Map */
.contact-map {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-map:hover {
    box-shadow: 0 8px 24px rgba(45, 106, 122, 0.15);
    transform: translateY(-4px);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* Business Hours */
.business-hours {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5f8 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.business-hours:hover {
    box-shadow: 0 8px 20px rgba(45, 106, 122, 0.1);
    transform: translateY(-2px);
}

.business-hours h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 0.5rem;
}
.business-hours p {
    font-size: 0.875rem;
    font-style: italic;
    color: #2d6a7a;
    line-height: 1.7;
}

/* ===== Responsive: Contact ===== */
@media (min-width: 640px) {
    .form-row {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .contact-content { flex-direction: row; gap: 4rem; }
    .contact-heading { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .contact { padding: 3rem 3rem 6rem; }
}

