:root {
    /* Primary colors from image - Blue-gray theme */
    --primary-blue: #B4BEC8;
    --primary-blue-dark: #465A64;
    --primary-blue-light: #D2D2DC;
    --secondary-blue: #A0AAB4;
    --accent-gold: #E6B432;
    --accent-gold-light: #FABE3C;
    --accent-gold-dark: #C88C00;
    
    /* Background colors */
    --dark-bg: #282828;
    --dark-bg-secondary: #323232;
    --dark-bg-tertiary: #3C3C3C;
    --text-dark: #282828;
    --text-dark-secondary: #5A5A5A;
    --text-light: #FFFFFF;
    --gray-light: #F9FAFB;
    --gray-medium: #E5E7EB;
    --gray-dark: #646464;
    
    /* Accent colors */
    --accent-blue: #506478;
    --accent-blue-light: #BEC8D2;
    
    /* Shadows */
    --shadow: rgba(70, 90, 100, 0.1);
    --shadow-lg: rgba(70, 90, 100, 0.2);
    --shadow-xl: rgba(0, 0, 0, 0.25);
    
    /* Legacy red variables for compatibility - using blue-gray instead */
    --primary-red: #465A64;
    --primary-red-dark: #323232;
    --primary-red-light: #B4BEC8;
    --secondary-red: #506478;
    --accent-red: #E6B432;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    direction: rtl;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--secondary-blue) 50%, var(--dark-bg-secondary) 100%);
    box-shadow: 0 4px 20px var(--shadow-xl);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 2rem;
}

@media (max-width: 991px) {
    .navbar-container {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.2;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    margin-left: 0;
    margin-right: 0;
    order: 1;
    padding: 0.25rem 0;
}


.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
}

/* Legacy brand text styles - kept for compatibility if needed */
.brand-text {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-light) !important;
}

.navbar-nav {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-direction: row;
}


.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    order: 1;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-toggler {
        order: 1;
        margin-left: auto;
        z-index: 1050;
    }
    
    .navbar-brand {
        order: 2;
        margin-left: 0;
        margin-right: auto;
        flex: 1;
        min-width: 0;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
        flex-basis: 100%;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0;
        margin: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 30%, var(--dark-bg-secondary) 70%, var(--dark-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 90%;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    color: var(--text-dark);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 180, 50, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
}

.scroll-indicator {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(50%) translateY(20px);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.service-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    box-shadow: 0 4px 15px var(--shadow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-blue-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(70, 90, 100, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(70, 90, 100, 0.4);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.service-description {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    text-align: justify;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* Static Section Specific Styles */
#static .service-icon:empty {
    display: none;
}

#static .service-card {
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#static .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#static .section-subtitle {
    text-align: justify;
    max-width: 100%;
    padding: 0 1rem;
}

#static .row:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 991px) {
    #static.services-section {
        padding: 3rem 0;
    }

    #static .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    #static .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: justify;
    }

    #static .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    #static .service-title {
        font-size: 1.25rem;
    }

    #static .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    #static.services-section {
        padding: 2rem 0;
    }

    #static .section-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }

    #static .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    #static .service-card {
        padding: 1.25rem;
        border-radius: 15px;
    }

    #static .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    #static .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--gray-light) 0%, #FFFFFF 100%);
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-direction: row;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(230, 180, 50, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-small {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(230, 180, 50, 0.4);
}

.feature-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.feature-content p {
    color: var(--text-dark-secondary);
    margin: 0;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.feature-image {
    position: relative;
    height: 400px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(70, 90, 100, 0.3);
    overflow: hidden;
}

.feature-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(70, 90, 100, 0.3) 0%, rgba(40, 40, 40, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 25px;
}

.feature-badge {
    position: absolute;
    z-index: 2;
}

.feature-badge {
    text-align: center;
    color: var(--text-light);
}

.badge-text {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 30%, var(--dark-bg-secondary) 70%, var(--dark-bg) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.cta-section .btn-light {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: 2px solid var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.cta-section .btn-light:hover {
    background: var(--accent-gold-light);
    color: var(--text-dark);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 180, 50, 0.4);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(70, 90, 100, 0.3);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: right;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-contact {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--accent-gold);
}

.footer-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact-link:hover .footer-icon {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

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

.social-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: transparent;
}

.social-telegram:hover {
    background: #0088cc;
    color: #fff;
    border-color: transparent;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .feature-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .badge-text {
        font-size: 4rem;
    }
}

/* Utility Classes */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-blue-dark);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    margin-top: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* Services Page Styles */
.services-detail-section {
    background: var(--text-light);
}

.service-detail-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-detail-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-detail-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    box-shadow: 0 4px 15px var(--shadow);
    cursor: pointer;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-blue-dark);
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(70, 90, 100, 0.3);
}

.service-detail-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.service-detail-description {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1.5rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: right;
}

.service-features li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-dark-secondary);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.additional-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.additional-service-link:hover {
    text-decoration: none;
    color: inherit;
}

.additional-service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.additional-service-item:hover {
    background: var(--text-light);
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateX(-5px);
}

.additional-service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.additional-service-content h3,
.additional-service-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.additional-service-content p {
    color: var(--text-dark-secondary);
    text-align: justify;
    margin: 0;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* Projects Page Styles */
.projects-section {
    background: var(--text-light);
}

.project-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-blue-dark);
}

.project-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--dark-bg-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 90, 100, 0.6) 0%, rgba(40, 40, 40, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(135deg, rgba(70, 90, 100, 0.4) 0%, rgba(40, 40, 40, 0.5) 100%);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.project-category {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.project-content {
    padding: 2rem;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.project-description {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.project-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.project-detail-item {
    background: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.projects-stats-section {
    background: var(--gray-light);
}

.stat-box {
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* About Page Styles */
.about-content-section {
    background: var(--text-light);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 1.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.about-image-box {
    position: relative;
}

.about-image-placeholder {
    position: relative;
    height: 400px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(70, 90, 100, 0.3);
    overflow: hidden;
}

.about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(70, 90, 100, 0.3) 0%, rgba(40, 40, 40, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 25px;
}

.about-badge {
    position: absolute;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.about-badge-number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.about-badge-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.mission-vision-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    background: var(--text-light);
    box-shadow: 0 10px 30px var(--shadow-lg);
    transform: translateY(-5px);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(70, 90, 100, 0.3);
}

.mission-vision-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.mission-vision-text {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.values-section {
    background: var(--gray-light);
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(230, 180, 50, 0.3);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.value-description {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.team-section {
    background: var(--text-light);
}

.team-member-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-blue-dark);
}

.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(70, 90, 100, 0.3);
}

.team-placeholder {
    font-size: 4rem;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.team-member-role {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.team-member-bio {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* Contact Page Styles */
.contact-section {
    background: var(--text-light);
}

.contact-form-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--gray-medium);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.contact-form .form-control {
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    text-align: right;
    direction: rtl;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue-dark);
    box-shadow: 0 0 0 0.2rem rgba(70, 90, 100, 0.25);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 50%, var(--dark-bg-secondary) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--shadow-lg);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: right;
    margin: 0;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-info-text a[style*="direction: ltr"],
.contact-instagram-link {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: bidi-override;
    text-align: left;
}

.map-section {
    background: var(--gray-light);
}

.map-placeholder {
    background: var(--text-light);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px dashed var(--gray-medium);
}

.map-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.map-subtext {
    color: var(--text-dark-secondary);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

/* Privacy Page Styles */
.privacy-content-section {
    background: var(--text-light);
}

.privacy-content-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--gray-medium);
}

.privacy-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.privacy-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.privacy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 1.5rem;
    text-align: right;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
}

.privacy-contact-list {
    list-style: none;
    padding: 0;
    text-align: right;
    margin-top: 1rem;
}

.privacy-contact-list li {
    padding: 0.75rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-dark-secondary);
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    font-size: 1.1rem;
}

.privacy-contact-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: var(--gray-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--text-dark-secondary);
}

.breadcrumb-item a {
    color: var(--primary-blue-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark-secondary);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-card,
    .project-card,
    .mission-vision-card {
        margin-bottom: 2rem;
    }
}
