/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(34, 34, 34, 0.9) 100%),
                url('../image/hero-bg.webp') center/cover no-repeat;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-hero .description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Contact Cards (Image-less layout) */
.contact-page-wrapper {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .contact-info-cards-grid {
        grid-template-columns: 1fr;
    }
}

.info-card-modern {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color, #F97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.info-card-modern:hover::before {
    transform: scaleX(1);
}

.info-card-modern .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color, #F97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card-modern:hover .icon-box {
    background: var(--primary-color, #F97316);
    color: #fff;
}

.info-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card-modern p, 
.info-card-modern a {
    color: #6c757d;
    margin-bottom: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    direction: ltr; /* For emails and phones */
}

.info-card-modern p.arabic-text {
    direction: rtl;
}

.info-card-modern a:hover {
    color: var(--primary-color, #F97316);
}

/* Contact Form Styling */
.contact-form-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    height: 100%;
}

.contact-form-premium .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-premium .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* RTL */
    width: 60px;
    height: 4px;
    background: var(--primary-color, #F97316);
    border-radius: 2px;
}

.contact-form-premium .form-group {
    margin-bottom: 25px;
}

.contact-form-premium label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    display: block;
}

.contact-form-premium .form-control,
.contact-form-premium .form-select {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form-premium .form-control:focus,
.contact-form-premium .form-select:focus {
    background-color: #fff;
    border-color: var(--primary-color, #F97316);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.contact-form-premium .btn-primary {
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-premium .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}
