/* ===============================================
   CONTACT PAGE STYLES - Travel Agency Management System
   =============================================== */

:root {
    --primary-gold: #B87333;
    --secondary-color: #122E5B;
    --dark-secondary: #0d1f42;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0.3;
}

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

.hero-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-icon {
    color: var(--primary-gold);
}

.hero-description {
    opacity: 0.95;
    font-size: 1.2rem;
}

.stat-item i {
    color: var(--primary-gold);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
}

.contact-form-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-secondary));
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header-icon {
    color: var(--primary-gold);
}

.form-header-subtitle {
    opacity: 0.75;
}

/* Form Styling */
.contact-form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    height: 58px;
}

.contact-form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 46, 91, 0.25);
}

.contact-textarea {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    min-height: 120px;
    resize: vertical;
}

.contact-textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 46, 91, 0.25);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-label-icon {
    color: var(--secondary-color);
}

.security-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.captcha-image {
    border-radius: 8px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: white;
}

.captcha-refresh {
    border-radius: 8px;
    /* width: 40px;
    height: 40px; */
}

.captcha-input {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    height: 50px;
    text-align: center;
    font-weight: bold;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-secondary));
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 46, 91, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 46, 91, 0.4);
    color: white;
}

/* Contact Info Cards */
.contact-info-cards {
    animation: slideInRight 0.8s ease-out;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-gold);
}

.contact-info-title {
    color: var(--secondary-color);
}

.contact-info-icon {
    color: var(--primary-gold);
}

.contact-item {
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid var(--secondary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-wrapper i {
    color: white;
    font-size: 16px;
}

.contact-item-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* WhatsApp Special Styling */
.whatsapp-item {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
}

.whatsapp-icon-wrapper {
    background: rgba(255,255,255,0.2);
}

.whatsapp-icon-wrapper i {
    font-size: 20px;
}

.whatsapp-title {
    color: white;
    font-weight: 600;
}

.whatsapp-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Business Hours Card */
.business-hours-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-secondary));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.business-hours-icon {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.business-hours-title {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 600;
}

.hours-closed {
    color: var(--primary-gold);
}

/* Page Content Section */
.page-content-wrapper {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    border-left: 5px solid var(--primary-gold);
}

/* Alert Styling */
.contact-alert {
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .contact-form-header {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .business-hours-card {
        padding: 1.5rem;
    }

    .page-content-wrapper {
        padding: 2rem;
    }
}