/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

/* ========== PAGE HEADER ========== */
.page-header-contact {
    background: linear-gradient(135deg, rgba(40, 67, 137, 0.95), rgba(229, 28, 34, 0.9)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 80px 0 60px;
    color: white;
}

.page-header-contact h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header-contact p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ========== QUICK CONTACT CARDS ========== */
.quick-contact-section {
    padding: 60px 0;
    background: var(--light-color);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s;
}

.quick-contact-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(360deg);
}

.quick-contact-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.quick-contact-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* ========== MAIN CONTACT SECTION ========== */
.main-contact-section {
    padding: 80px 0;
    background: white;
}
 

/* ========== CONTACT INFO WRAPPER ========== */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #284389 100%);
    padding: 60px 40px; 
    height: 100%;
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-info-header h2 {
    font-size: 2rem; 
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.contact-info-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-detail-item:hover .detail-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.detail-icon i {
    font-size: 1.3rem;
    color: white;
}

.detail-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.detail-content p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

.detail-content a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.detail-content a:hover {
    opacity: 0.8;
}

/* ========== CONTACT SOCIAL ========== */
.contact-social {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.contact-social h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.social-links-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-links-contact a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* ========== DECORATIVE CIRCLES ========== */
.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 20s infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 200px;
    right: 100px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ========== INQUIRY FORM WRAPPER ========== */
.inquiry-form-wrapper {
    background: white;
    padding: 0 30px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: #666;
}

/* ========== CUSTOM FORM STYLES ========== */
.form-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-group-custom i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s;
}

.form-group-custom textarea + i {
    top: 25px;
    transform: none;
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 28, 34, 0.1);
}

.form-control-custom:focus + label,
.form-control-custom:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    background: white;
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group-custom:focus-within i {
    color: var(--primary-color);
}

.form-group-custom label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s;
    background: transparent;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
    padding-top: 20px;
}

select.form-control-custom {
    cursor: pointer;
}

/* ========== CHECKBOX ========== */
.form-check-custom {
    margin-bottom: 25px;
}

.form-check-custom .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
}

.form-check-custom .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-custom .form-check-label {
    margin-left: 10px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.form-check-custom a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-custom a:hover {
    text-decoration: underline;
}

/* ========== SUBMIT BUTTON ========== */
.btn-submit-custom {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(229, 28, 34, 0.3);
}

.btn-submit-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 28, 34, 0.4);
}

.btn-submit-custom i {
    transition: transform 0.3s;
}

.btn-submit-custom:hover i {
    transform: translateX(5px);
}

/* ========== SUCCESS MESSAGE ========== */
.alert-success-custom {
    display: none;
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    align-items: center;
    gap: 15px;
}

.alert-success-custom.show {
    display: flex;
}

.alert-success-custom i {
    font-size: 2.5rem;
    color: #28a745;
}

.alert-success-custom h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #155724;
    margin-bottom: 5px;
}

.alert-success-custom p {
    margin: 0;
    color: #155724;
    font-size: 0.95rem;
}

/* ========== MAP SECTION ========== */
.map-section {
    position: relative;
    background: var(--light-color);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    filter: grayscale(0.3);
}

.map-overlay-cards {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 100;
}

.map-location-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.map-location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.8rem;
    color: white;
}

.location-details h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.location-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-direction:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ========== CONTACT CTA SECTION ========== */
.contact-cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 50px 0;
    color: white;
}

.contact-cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--secondary-color);
}

.btn-call-now i {
    font-size: 1.5rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .contact-info-wrapper {
        padding: 50px 30px;
    }

    .inquiry-form-wrapper {
        padding: 50px 30px;
    }

    .map-overlay-cards {
        position: static;
        padding: 30px 0;
    }

    .map-location-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .quick-contact-card {
        margin-bottom: 20px;
    }

    .page-header-contact {
        padding: 60px 0 40px;
        text-align: center;
    }

    .page-header-contact .breadcrumb {
        justify-content: center;
    }

    .contact-info-wrapper,
    .inquiry-form-wrapper {
        padding: 40px 25px;
    }

    .decorative-circles {
        display: none;
    }

    .contact-cta-section {
        text-align: center;
    }

    .btn-call-now {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .map-location-card {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-section {
        padding: 40px 0;
    }

    .main-contact-section {
        padding: 60px 0;
    }
}