/* Inquiry Page Specific Styles */

/* Inquiry Hero Section */
.inquiry-hero-section {
    background: linear-gradient(135deg, rgba(43, 77, 160, 0.8), rgba(0, 10, 85, 0.7)), 
                url('../img/Inquiry-hero.png') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.inquiry-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    animation: heroShine 3s ease-in-out infinite;
}

.inquiry-hero-overlay {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.inquiry-hero-content {
    animation: fadeInUp 1s ease-out;
}

/* About Hero Text Styles */
.about-hero-title {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 8px;
}

.about-hero-subtitle {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.about-hero-desc {
    color: white;
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .about-hero-subtitle {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .about-hero-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .about-hero-subtitle {
        font-size: 2rem;
        letter-spacing: 0px;
    }
    
    .about-hero-desc {
        font-size: 1rem;
    }
}

.inquiry-hero-title {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.inquiry-hero-subtitle {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.inquiry-hero-desc {
    color: white;
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
}

/* Inquiry Content Section */
.inquiry-content-section {
    background: #f8fafc;
    min-height: 70vh;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Inquiry Form */
.inquiry-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(43, 77, 160, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(43, 77, 160, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 77, 160, 0.3);
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info-box h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 30px;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Animations */
@keyframes heroShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .inquiry-hero-title {
        font-size: 2.5rem;
    }
    
    .inquiry-hero-subtitle {
        font-size: 2rem;
    }
    
    .inquiry-hero-desc {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .inquiry-form-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-box {
        padding: 2rem 1.5rem;
        position: static;
    }
    
    .btn-primary {
        padding: 0.75rem 2rem;
    }
}

@media (max-width: 576px) {
    .inquiry-hero-title {
        font-size: 2rem;
    }
    
    .inquiry-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .inquiry-hero-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .inquiry-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-info-box h4 {
        font-size: 1.5rem;
    }
}

/* Form Validation Styles */
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.7-.7 1.8 1.8 2.8-2.8.7.7-3.5 3.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.5 5.5 1 1 1-1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}