/* Alert Messages */
.alert-container {
    position: fixed;
    top: 90px; /* navbar height ke hisaab se adjust karein */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 9999;
    padding: 0;
    background: transparent;
}

.alert {
    margin-bottom: 0 !important;
}


.custom-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-alert svg {
    flex-shrink: 0;
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
}

.custom-alert.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #fff5f9 0%, #ffe8f3 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(239, 84, 145, 0.1), rgba(217, 67, 126, 0.1));
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(239, 84, 145, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: white;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #ef5491;
    box-shadow: 0 15px 50px rgba(239, 84, 145, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(360deg);
}

.info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.info-detail {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    background: linear-gradient(135deg, #d9437e 0%, #c23567 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 84, 145, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.form-description {
    font-size: 1rem;
    color: #666;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.required {
    color: #ef5491;
}

.custom-input {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #ef5491;
    box-shadow: 0 0 0 0.2rem rgba(239, 84, 145, 0.1);
    outline: none;
}

.custom-input::placeholder {
    color: #999;
}

.btn-submit {
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d9437e 0%, #c23567 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 84, 145, 0.4);
}

/* Map Container */
.map-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    margin-bottom: 25px;
}

.map-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.map-description {
    font-size: 1rem;
    color: #666;
}

.map-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Office Hours Section */
.office-hours-section {
    padding: 80px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.hours-card {
    background: linear-gradient(135deg, #fff5f9 0%, #fff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(239, 84, 145, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ef5491;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .map-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-hero-section {
        padding: 60px 0 40px;
    }

    .form-container,
    .map-container {
        padding: 30px 20px;
    }

    .form-title,
    .map-title {
        font-size: 1.75rem;
    }

    .info-card {
        padding: 30px 20px;
    }

    .hours-card {
        padding: 30px 20px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .office-hours-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-card h4 {
        font-size: 1.2rem;
    }

    .info-detail {
        font-size: 1rem;
    }

    .form-title,
    .map-title {
        font-size: 1.5rem;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .day {
        font-size: 1rem;
    }

    .time {
        font-size: 1rem;
    }
}