/* =========================================
   CONTACT PAGE CUSTOM STYLES
   ========================================= */

:root {
    --primary: #059EFF;
    --secondary: #DEF3FF;
    --text-dark: #1a1a1a;
    --text-body: #444444;
    --bg-page: #F8F9FA;
    --border-color: #E5E9F0;
}

.contact-page {
    background-color: var(--bg-page);
    color: var(--text-dark);
}

.section-padding { padding: 80px 0; }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }

/* 1. Hero Section */
.contact-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact-hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.contact-hero-subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

/* 2. Main Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info smaller, Form wider */
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Info --- */
.sp-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.sd-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.sd-heading span { color: var(--primary); }

.contact-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.contact-text span, .contact-text a {
    color: var(--text-body);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-text a:hover { color: var(--primary); }

/* Social Icons */
.contact-socials {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.contact-socials h3 {
    font-size: 18px;
    margin: 0 0 20px;
}
.social-icons-row {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.social-btn:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.social-btn svg { width: 18px; height: 18px; }


/* --- Right Column: Form --- */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px;
    color: var(--text-dark);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 25px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s;
    outline: none;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--primary);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}
.btn-primary:hover {
    background-color: #0482d6;
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

/* 3. Map Section */
.contact-map-section {
    padding-bottom: 80px;
}
.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero { height: 250px; }
    .contact-hero-title { font-size: 32px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .section-padding { padding: 50px 0; }
}