     :root {
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #4fc3f7;
    --light-color: #f8f9fa;
    --dark-color: #1a237e;
    --gradient-start: #1a73e8;
    --gradient-end: #0d47a1;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
     --gray: #718096;
}
 .about-hero {
    /* background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.85) 0%, 
        rgba(13, 71, 161, 0.8) 50%,
        rgba(26, 115, 232, 0.7) 100%),
        url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1167&q=80'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" class="shape-fill"></path></svg>');
    background-size: cover;
    animation: float 6s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), #ffffff);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}

.about-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 auto 35px;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}
/* Breadcrumb بهبود یافته */
.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.breadcrumb:hover::before {
    transform: translateX(100%);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    margin: 0 15px;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-right: var(--bs-breadcrumb-item-padding-x);
}
        
        /* کارت‌های تماس */
        .contact-cards {
            margin-top: 3rem;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            background: rgba(0, 180, 216, 0.1);
            color: var(--primary);
        }
        
        .contact-card:nth-child(2) .card-icon {
            background: rgba(255, 107, 107, 0.1);
            color: var(--secondary);
        }
        
        .contact-card:nth-child(3) .card-icon {
            background: rgba(45, 55, 72, 0.1);
            color: var(--dark);
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .card-text {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .contact-info {
            text-align: right;
        }
        
        /* .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .contact-item i {
            margin-left: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
        }
         */
        /* بخش فرم */
        .form-section {
            padding: 5rem 0;
        }
        
        .form-container {
            background: white;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .form-side {
            padding: 3rem;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .form-side::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
        }
        
        .form-side-content {
            position: relative;
            z-index: 2;
        }
        
        .form-side-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .form-side-text {
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .contact-methods {
            margin-top: 2rem;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-method i {
            margin-left: 1rem;
            font-size: 1.5rem;
            opacity: 0.9;
        }
        
        .contact-form {
            padding: 3rem;
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .form-subtitle {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        /* .form-control {
            border: 2px solid var(--gray);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        } */
        .form-control {
            border: 2px solid #e8eaed;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 16px;
            transition: all 0.3s 
        ease;
            background-color: #f8f9fa;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            border: none;
            border-radius: 12px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
        }
        
        /* نقشه */
        .map-section {
            padding: 3rem 0;
        }
        
        .map-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .map-placeholder {
            height: 400px;
            background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1.2rem;
        }
        
        .map-info {
            padding: 2rem;
        }
        
        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .info-item {
            display: flex;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 180, 216, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .info-content h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .info-content p {
            color: var(--gray);
            margin-bottom: 0;
        }
        
       
        /* رسپانسیو */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .form-side, .contact-form {
                padding: 2rem;
            }
            
            .contact-card {
                margin-bottom: 2rem;
            }
        }