/* ============================================ */
/* ===== CONTACT PAGE SECTION ===== */
/* ============================================ */
.contact-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== SECTION TITLE ===== */
.contact-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1e272e;
    margin-bottom: 8px;
}

.contact-title h2 span {
    color: #ff4757;
    position: relative;
}

.contact-title h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 4px;
}

.contact-title p {
    color: #747d8c;
    font-size: 17px;
}

/* ============================================ */
/* ===== CONTACT GRID ===== */
/* ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ============================================ */
/* ===== LEFT SIDE ===== */
/* ============================================ */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== Contact Info Cards ===== */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 22px 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #eef0f2;
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #ff4757;
}

.info-card .info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 71, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff4757;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: #ff4757;
    color: #ffffff;
    transform: scale(1.05);
}

.info-card .info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 4px;
}

.info-card .info-text p {
    font-size: 14px;
    color: #747d8c;
    line-height: 1.5;
    margin: 0;
}

/* ===== Map ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 280px;
}

/* ===== Social Links ===== */
.contact-social {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid #eef0f2;
    text-align: center;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
}

.social-icon.facebook {
    background: #1877f2;
}
.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.twitter {
    background: #000000;
}
.social-icon.youtube {
    background: #ff0000;
}
.social-icon.whatsapp {
    background: #25d366;
}

/* ============================================ */
/* ===== RIGHT SIDE: FORM ===== */
/* ============================================ */
.contact-right {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
}

.form-wrapper h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 4px;
}

.form-wrapper h3 span {
    color: #ff4757;
}

.form-wrapper > p {
    color: #747d8c;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ===== Form Styles ===== */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1e272e;
    margin-bottom: 5px;
}

.contact-form label i {
    color: #ff4757;
    margin-right: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #1e272e;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff4757;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b0b0b0;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff4757;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-group label a {
    color: #ff4757;
    text-decoration: underline;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.4);
}

.contact-submit:active {
    transform: scale(0.98);
}

/* ===== Success Message ===== */
.contact-success {
    text-align: center;
    padding: 30px 20px;
    animation: fadeInUp 0.6s ease;
}

.contact-success i {
    font-size: 60px;
    color: #2ecc71;
    margin-bottom: 16px;
}

.contact-success h4 {
    font-size: 24px;
    color: #1e272e;
    margin-bottom: 8px;
}

.contact-success p {
    color: #747d8c;
    font-size: 16px;
    margin-bottom: 20px;
}

.reset-btn {
    padding: 12px 32px;
    background: #ff4757;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: #e03d4f;
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* ===== RESPONSIVE ===== */
/* ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 5%;
    }
    .contact-title h2 {
        font-size: 30px;
    }
    .contact-right {
        padding: 30px 22px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 18px 16px;
    }
    .form-wrapper h3 {
        font-size: 22px;
    }
    .map-container iframe {
        height: 220px;
    }
    .social-icons {
        gap: 10px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 4%;
    }
    .contact-title h2 {
        font-size: 24px;
    }
    .contact-title p {
        font-size: 14px;
    }
    .contact-right {
        padding: 22px 16px;
    }
    .form-wrapper h3 {
        font-size: 19px;
    }
    .form-wrapper > p {
        font-size: 14px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    .contact-submit {
        font-size: 16px;
        padding: 14px;
    }
    .checkbox-group label {
        font-size: 13px;
    }
    .map-container iframe {
        height: 180px;
    }
    .info-card .info-text h4 {
        font-size: 14px;
    }
    .info-card .info-text p {
        font-size: 13px;
    }
    .contact-social {
        padding: 18px 16px;
    }
    .contact-social h4 {
        font-size: 14px;
    }
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .contact-success i {
        font-size: 44px;
    }
    .contact-success h4 {
        font-size: 20px;
    }
}