/* Contact Page Styles */

/* Hero Section */

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Info Side */
.contact-info-side {
    background-color: #1965c0;
    color: #fff;
    padding: 60px 40px;
    height: 100%;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.info-text a {
    color: inherit;
    text-decoration: none;
}

.social-links {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #fff;
    color: #1965c0;
    transform: translateY(-3px);
}

/* Form Side */
.contact-form-side {
    padding: 60px 40px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
}

.form-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1965c0;
    box-shadow: 0 0 0 4px rgba(25, 101, 192, 0.1);
}

button.btn.btn-contact {
    background-color: #1965c0;
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

button.btn.btn-contact:hover,
button.btn.btn-contact:focus,
button.btn.btn-contact:active {
    background-color: #14529d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 101, 192, 0.3);
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-side {
        padding: 40px;
    }
    .contact-form-side {
        padding: 40px;
    }
}


/* Location Grid Styles */
.locations-section {
    padding: 60px 0 80px;
}

.location-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e1e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #1965c0;
}

.location-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1965c0;
    display: inline-block;
}

.location-card-info {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.location-card-info p {
    margin-bottom: 8px;
}

.location-card-info i {
    color: #1965c0;
    width: 20px;
    margin-right: 5px;
}

.location-card-info a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.location-card-info a:hover {
    color: #1965c0;
}
