﻿:root {
    --primary-color: #0B4F6C; /* آبی نفتی - رنگ اصلی */
    --primary-light: #1A6D8A;
    --primary-dark: #083C52;
    --secondary-color: #F4B400; /* زرد طلایی برای انرژی */
    --bg-light: #FFFFFF;
    --bg-offwhite: #F8FAFE;
    --bg-gray: #F0F4F8;
    --text-dark: #1E2B37;
    --text-muted: #546E7A;
    --border-light: #E2E8F0;
}
a {
    text-decoration: none;
}

/* ===== ناوبری (مثل قبل) ===== */
.navbar {
    background-color: var(--bg-light) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

    .navbar-brand i {
        color: var(--secondary-color);
        margin-left: 8px;
        font-size: 1.8rem;
    }

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-primary-custom:hover {
        background-color: transparent;
        color: var(--primary-color) !important;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(11, 79, 108, 0.15);
    }

/* ===== هدر صفحه ===== */
.page-header {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(11, 79, 108, 0.03) 0%, transparent 70%);
        border-radius: 50%;
    }

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

    .page-title span {
        color: var(--primary-color);
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 1rem 0 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* ===== بخش اطلاعات تماس ===== */
.contact-info-section {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--secondary-color);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(11, 79, 108, 0.12);
    }

        .contact-card:hover::before {
            transform: translateX(0);
        }

.contact-icon {
    width: 90px;
    height: 90px;
    background: rgba(11, 79, 108, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    direction: ltr;
}

    .contact-card p i {
        color: var(--secondary-color);
        margin-left: 8px;
    }

.contact-card .persian-text {
    direction: rtl;
}

/* ===== بخش شبکه‌های اجتماعی ===== */
.social-section {
    padding: 40px 0;
    background-color: var(--bg-offwhite);
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.social-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .social-item:hover {
        transform: translateY(-10px) scale(1.1);
        border-color: var(--secondary-color);
        color: var(--secondary-color);
        box-shadow: 0 20px 35px rgba(244, 180, 0, 0.2);
    }

/* ===== بخش فرم تماس و نقشه ===== */
.contact-form-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 79, 108, 0.15);
    height: 450px;
    border: 1px solid var(--border-light);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    height: 100%;
}

    .form-wrapper h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2rem;
    }

        .form-wrapper h3 span {
            color: var(--primary-color);
        }

.contact-form .form-control,
.contact-form .form-select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-family: 'Vazirmatn', sans-serif;
    background: var(--bg-offwhite);
    transition: all 0.3s ease;
}

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(11, 79, 108, 0.1);
        background: white;
    }

.contact-form .btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    width: 100%;
}

    .contact-form .btn-submit:hover {
        background-color: white;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(11, 79, 108, 0.2);
    }

/* ===== بخش ساعات کاری ===== */
.hours-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hours-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .hours-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .hours-item i {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .hours-item .day {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .hours-item .time {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* ===== فوتر (مثل قبل) ===== */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
}

    .footer-logo i {
        color: var(--secondary-color);
        margin-left: 8px;
    }

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--secondary-color);
        color: var(--primary-dark);
        transform: translateY(-5px);
    }

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary-color);
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: white;
            padding-right: 8px;
        }

    .footer-links i {
        color: var(--secondary-color);
        font-size: 0.8rem;
    }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
