/* Contact Page Specific Styles */

/* Hero Section - Same as About Page */
.hero-section {
    background: linear-gradient(135deg, #ffaa22 0%, #f69c0c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 0 0 80px 0;
    background: #f8f9fa;
}

.contact-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 5px;
    background: white;
    overflow: hidden;
}

/* Form Styles */
.form-control,
.form-select {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 10px 16px;
    font-size: 15px;
    height: 45px;
    transition: all 0.3s ease;
    color: #495057;
}

.form-control.textarea-field {
    height: auto;
    min-height: 120px;
}

.form-control:focus,
.form-select:focus {
    border-color: #ffaa22;
    box-shadow: 0 0 0 0.25rem rgba(255, 170, 34, 0.1);
    background: #fffef9;
}

.btn-submit {
    background: white;
    border: 1px solid #ffaa22;
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 15px;
    color: #ffaa22;
    height: 45px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit:hover:not(:disabled) {
    background: #ffaa22;
    color: white;
    transform: translateX(5px);
    border-color: #ffaa22;
}

.btn-submit .btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-submit:hover:not(:disabled) .btn-icon {
    transform: translateX(3px);
}

.btn-submit .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Info Cards */
.info-icon-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.info-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #ffaa22;
}

.info-icon-box .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 170, 34, 0.2);
}

.info-icon-box i {
    font-size: 36px;
    color: #ffaa22;
    margin: 0;
}

.info-icon-box h5 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.info-icon-box p {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.info-icon-box small {
    color: #6c757d;
    font-size: 13px;
}

/* Form Title */
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .form-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .info-icon-box {
        padding: 30px 20px;
    }

    .info-icon-box .icon-circle {
        width: 60px;
        height: 60px;
    }

    .info-icon-box i {
        font-size: 28px;
    }
}
