/* ==========================================
   Contact Page Styles
   Responsive & RTL Ready
========================================== */

/* Breadcrumb */
.breadcrumb-wrapper {
    padding: 120px 0 60px;
    position: relative;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-heading {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-heading h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-items li {
    color: #fff;
}

.breadcrumb-items a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-items a:hover {
    color: #951010;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Section Title */
.section-title {
    max-width: 700px;
    margin: 0 auto;
}

.section-title .sub-title {
    color: #951010;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: #951010;
}

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #951010 0%, #951010 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.contact-info-card:hover .icon {
    transform: scale(1.1);
}

.contact-info-card .icon i {
    font-size: 32px;
    color: #fff;
}

.contact-info-card .content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center !important;
}

.contact-info-card .content p {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.8;
}

.contact-info-card .content a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-card .content a:hover {
    color: #951010;
}

/* Contact Form */
.contact-form-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.contact-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #0d5dba;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    transform: scale(1.1);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.whatsapp:hover {
    background: #1da851;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #951010;
    outline: none;
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #951010;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.theme-btn:hover {
    background: #951010;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.google-map iframe {
    width: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }

    .page-heading h1 {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .page-heading h1 {
        font-size: 28px;
    }

    .breadcrumb-wrapper {
        padding: 100px 0 50px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ==========================================
   RTL Support
========================================== */
html[dir="rtl"] .section-title {
    text-align: center;
}

html[dir="rtl"] .contact-info-card {
    text-align: center;
}

html[dir="rtl"] .contact-form-content {
    text-align: right;
}

html[dir="rtl"] .theme-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb-items {
    flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb-items i {
    transform: rotate(180deg);
}

.contact-info-section .section-title.text-center,
.contact-info-section .section-title h2{
    text-align: center !important;
}

.page-heading h1 {
    text-align: center !important;
}