/* ========================================
   NIWAL CLINIC - ULTIMATE PREMIUM STYLE
   Complete Edition - Version 7.0 FINAL
   Navy Blue Edition
   ======================================== */

/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
    --primary: #0a0f5c;
    --primary-dark: #01043b;
    --primary-light: #1a1f7a;
    --primary-ultra: #2d35af;
    --primary-rgb: 10, 15, 92;
    --secondary: #FF8C42;
    --secondary-dark: #e67320;
    --secondary-light: #ffcca8;
    --secondary-ultra: #ffa366;
    --secondary-rgb: 255, 140, 66;
    --accent: #9b8cff;
    --accent-glow: #b8abff;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --light: #f0f2ff;
    --dark: #01043b;
    --dark-soft: #0a0f5c;
    --dark-deep: #00022a;
    --gray: #5a5f7a;
    --gray-light: #e8eaf5;
    --gray-dark: #2a2f4a;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #01043b 0%, #0a0f5c 25%, #1a1f7a 50%, #0a0f5c 75%, #01043b 100%);
    --gradient-primary-animated: linear-gradient(90deg, #01043b, #0a0f5c, #1a1f7a, #0a0f5c, #01043b);
    --gradient-secondary: linear-gradient(135deg, #FF8C42 0%, #e67320 30%, #cc5500 70%, #e67320 100%);
    --gradient-dark: linear-gradient(135deg, #01043b 0%, #0a0f5c 30%, #1a1f7a 70%, #01043b 100%);
    --gradient-dark-animated: linear-gradient(90deg, #01043b, #1a1f7a, #0a0f5c, #01043b);
    --gradient-light: linear-gradient(135deg, #f0f2ff 0%, #e0e5ff 50%, #d0d5ff 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    --gradient-neon: linear-gradient(135deg, #2d35af, #0a0f5c, #FF8C42);
    --gradient-mesh: linear-gradient(135deg, rgba(10,15,92,0.1), rgba(255,140,66,0.05), rgba(155,140,255,0.08));
    --gradient-hero: linear-gradient(135deg, rgba(1,4,59,0.85) 0%, rgba(1,4,59,0.40) 50%, rgba(10,15,92,0.15) 100%);
    --gradient-reviews: linear-gradient(135deg, rgba(1,4,59,0.85), rgba(10,15,92,0.75));
    --shadow-sm: 0 5px 20px rgba(1,4,59,0.05);
    --shadow-md: 0 10px 35px rgba(1,4,59,0.08);
    --shadow-lg: 0 20px 55px rgba(1,4,59,0.10);
    --shadow-xl: 0 30px 75px rgba(1,4,59,0.12);
    --shadow-2xl: 0 40px 100px rgba(1,4,59,0.15);
    --shadow-3xl: 0 60px 130px rgba(1,4,59,0.20);
    --shadow-primary: 0 10px 35px rgba(10,15,92,0.30);
    --shadow-primary-lg: 0 15px 45px rgba(10,15,92,0.40);
    --shadow-primary-xl: 0 25px 60px rgba(10,15,92,0.50);
    --shadow-secondary: 0 10px 35px rgba(255,140,66,0.30);
    --shadow-secondary-lg: 0 15px 45px rgba(255,140,66,0.40);
    --shadow-secondary-xl: 0 25px 60px rgba(255,140,66,0.50);
    --shadow-glow: 0 0 30px rgba(10,15,92,0.20);
    --shadow-glow-lg: 0 0 50px rgba(10,15,92,0.30);
    --shadow-inset: inset 0 2px 10px rgba(1,4,59,0.05);
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-2xl: 40px;
    --border-radius-3xl: 50px;
    --border-radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-peyda: 'Peyda', 'Open Sans', sans-serif;
    --font-jost: 'Jost', sans-serif;
    --font-open: 'Open Sans', sans-serif;
}

/* ========================================
   2. RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    direction: rtl;
    text-align: right;
    font-family: var(--font-peyda);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.8;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 15% 30%, rgba(10,15,92,0.03), transparent 50%), radial-gradient(circle at 85% 70%, rgba(255,140,66,0.02), transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-peyda);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

h1 {
    font-size: 3.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.6rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 0.95rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: var(--gray);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
    color: var(--primary);
}

    a:hover {
        color: var(--secondary);
    }

/* ========================================
   4. SECTION TITLE & BADGE
   ======================================== */
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 40%, var(--secondary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 70px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 4px;
        transition: var(--transition-smooth);
    }

    .section-title:hover::after {
        width: 100px;
    }

    .section-title span {
        background: var(--gradient-secondary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-title.text-center {
        text-align: center !important;
    }

        .section-title.text-center::after {
            right: 50% !important;
            transform: translateX(50%) !important;
        }

    .section-title.text-white {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: white !important;
    }

        .section-title.text-white span {
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: var(--secondary) !important;
        }

        .section-title.text-white::after {
            background: var(--gradient-secondary);
        }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10,15,92,0.10), rgba(255,140,66,0.05));
    padding: 8px 28px;
    border-radius: var(--border-radius-full);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(10,15,92,0.15);
    position: relative;
    overflow: hidden;
}

    .section-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 3s infinite;
    }

    .section-badge.light {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.2);
        color: white;
    }

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.9;
}

    .section-subtitle.text-white-50 {
        color: rgba(255,255,255,0.6);
    }

.section-header {
    margin-bottom: 60px;
}

/* ========================================
   5. CONTAINER
   ======================================== */
.container {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .container-fluid {
        padding: 0 60px;
    }
}

/* ========================================
   6. ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(10,15,92,0.2), 0 0 40px rgba(10,15,92,0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(10,15,92,0.4), 0 0 80px rgba(10,15,92,0.2);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes shimmerLine {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(10,15,92,0.2), 0 0 20px rgba(10,15,92,0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(10,15,92,0.5), 0 0 60px rgba(10,15,92,0.2);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,140,66,0.5);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(255,140,66,0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes floatParticles {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* ========================================
   7. CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: var(--transition);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gradient-secondary);
    }

::selection {
    background: var(--primary);
    color: white;
}

/* ========================================
   8. SPINNER
   ======================================== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    background: var(--white);
}

    #spinner.show {
        transition: opacity 0.5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

    #spinner .spinner-grow {
        width: 3.5rem;
        height: 3.5rem;
        background-color: var(--primary);
    }

        #spinner .spinner-grow:nth-child(1) {
            animation-delay: 0s;
        }

        #spinner .spinner-grow:nth-child(2) {
            animation-delay: 0.2s;
            background-color: var(--secondary);
        }

        #spinner .spinner-grow:nth-child(3) {
            animation-delay: 0.4s;
            background-color: var(--accent);
        }

/* ========================================
   9. TOPBAR - ULTRA PREMIUM
   ======================================== */
.topbar-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #00022a 0%, #01043b 30%, #00022a 70%, #01043b 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .topbar-full::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: var(--gradient-neon);
        animation: shimmerLine 4s ease-in-out infinite;
    }

    .topbar-full::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(10,15,92,0.15), transparent 60%);
        pointer-events: none;
    }

.info-card {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    padding: 6px 22px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255,255,255,0.05);
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .info-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(10,15,92,0.3), transparent);
        border-radius: 50%;
        transition: 0.6s;
        transform: translate(-50%, -50%);
    }

    .info-card:hover::before {
        width: 300%;
        height: 300%;
    }

    .info-card:hover {
        background: rgba(10,15,92,0.2);
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(10,15,92,0.3);
        box-shadow: 0 8px 30px rgba(10,15,92,0.2);
    }

    .info-card i {
        font-size: 13px;
        color: var(--secondary);
        transition: var(--transition-bounce);
        position: relative;
        z-index: 1;
    }

    .info-card:hover i {
        color: white;
        transform: rotate(360deg) scale(1.15);
    }

    .info-card span {
        color: rgba(255,255,255,0.85);
        font-size: 12px;
        font-weight: 500;
        position: relative;
        z-index: 1;
        letter-spacing: 0.3px;
    }

    .info-card:hover span {
        color: white;
    }

.social-icons {
    display: inline-flex;
    gap: 8px;
}

    .social-icons a {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.02);
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.7);
        transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
        position: relative;
        overflow: hidden;
        font-size: 14px;
    }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gradient-secondary);
            border-radius: 50%;
            transition: 0.5s;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .social-icons a:hover::before {
            width: 200%;
            height: 200%;
        }

        .social-icons a:hover {
            color: white;
            transform: translateY(-4px) rotate(360deg);
            border-color: transparent;
            box-shadow: var(--shadow-secondary);
        }

/* ========================================
   10. NAVBAR
   ======================================== */
.main-navbar {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    padding: 18px 0;
    box-shadow: 0 2px 30px rgba(1,4,59,0.05);
    border-bottom: 1px solid rgba(10,15,92,0.08);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .main-navbar.scrolled {
        padding: 10px 0;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 15px 50px rgba(1,4,59,0.1);
        border-bottom-color: rgba(10,15,92,0.15);
    }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-bounce);
}

    .navbar-brand:hover {
        transform: scale(1.02);
    }

    .navbar-brand .brand-icon-wrapper {
        width: 50px;
        height: 50px;
        /*background: var(--gradient-primary);*/
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-primary);
        transition: var(--transition-bounce);
    }

    .navbar-brand:hover .brand-icon-wrapper {
        transform: rotate(-8deg) scale(1.05);
        box-shadow: var(--shadow-primary-xl);
    }

    .navbar-brand .brand-icon-wrapper i {
        font-size: 22px;
        color: white;
    }

    .navbar-brand .brand-text h1 {
        font-size: 26px;
        font-weight: 100;
        -webkit-text-stroke: 1.75px currentColor;
        margin: 0;
        line-height: 1;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

        .navbar-brand .brand-text h1 span {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .navbar-brand .brand-text small {
        display: block;
        font-size: 9px;
        font-weight: 600;
        color: var(--gray);
        letter-spacing: 0.5px;
        margin-top: 1px;
    }

.navbar-toggler {
    order: 2;
    border: none;
    padding: 8px 10px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler .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(1,4,59,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

.navbar-nav {
    gap: 4px;
}

    .navbar-nav .nav-item .nav-link {
        color: var(--dark);
        padding: 10px 18px !important;
        border-radius: 12px;
        transition: var(--transition-smooth);
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        font-family: var(--font-peyda);
    }

        .navbar-nav .nav-item .nav-link .nav-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: rgba(10,15,92,0.08);
            border-radius: 8px;
            transition: var(--transition-smooth);
        }

            .navbar-nav .nav-item .nav-link .nav-icon i {
                font-size: 12px;
                color: var(--dark);
                transition: var(--transition-smooth);
            }

        .navbar-nav .nav-item .nav-link .nav-text {
            transition: var(--transition-smooth);
        }

        .navbar-nav .nav-item .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            right: 50%;
            transform: translateX(50%);
            width: 0;
            height: 3px;
            border-radius: 3px;
            background: var(--gradient-neon);
            transition: var(--transition-smooth);
        }

        .navbar-nav .nav-item .nav-link:hover::after,
        .navbar-nav .nav-item .nav-link.active::after {
            width: 50%;
        }

        .navbar-nav .nav-item .nav-link:hover,
        .navbar-nav .nav-item .nav-link.active {
            background: linear-gradient(135deg, rgba(10,15,92,0.1), rgba(10,15,92,0.03));
            transform: translateY(-2px);
        }

            .navbar-nav .nav-item .nav-link:hover .nav-icon,
            .navbar-nav .nav-item .nav-link.active .nav-icon {
                background: var(--gradient-primary);
            }

                .navbar-nav .nav-item .nav-link:hover .nav-icon i,
                .navbar-nav .nav-item .nav-link.active .nav-icon i {
                    color: white;
                }

            .navbar-nav .nav-item .nav-link:hover .nav-text,
            .navbar-nav .nav-item .nav-link.active .nav-text {
                color: var(--primary);
            }

.btn-appointment {
    background: var(--gradient-secondary);
    border: none;
    border-radius: var(--border-radius-full);
    padding: 11px 28px;
    font-weight: 700;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
    font-size: 14px;
    font-family: var(--font-peyda);
}

    .btn-appointment::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.25);
        border-radius: 50%;
        transition: 0.6s;
        transform: translate(-50%, -50%);
    }

    .btn-appointment:hover::before {
        width: 400%;
        height: 400%;
    }

    .btn-appointment:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-secondary-xl);
        color: white;
    }

    .btn-appointment i {
        font-size: 14px;
        transition: var(--transition-smooth);
    }

    .btn-appointment:hover i {
        transform: translateX(-4px);
    }

.notification-icon {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: 1px solid rgba(10,15,92,0.1);
}

    .notification-icon:hover {
        background: var(--gradient-primary);
        transform: translateY(-4px) scale(1.05);
        box-shadow: var(--shadow-primary);
    }

    .notification-icon i {
        font-size: 18px;
        color: var(--dark);
        transition: var(--transition-smooth);
    }

    .notification-icon:hover i {
        color: white;
        transform: scale(1.1);
    }

    .notification-icon .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--gradient-secondary);
        color: white;
        font-size: 9px;
        font-weight: 800;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: badgePulse 2s infinite;
    }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ========================================
   11. HERO
   ======================================== */
.hero-full {
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

    .hero-full .carousel {
        height: 100vh;
        min-height: 650px;
    }

.hero-slide {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.2), transparent), radial-gradient(2px 2px at 30% 60%, rgba(255,255,255,0.15), transparent), radial-gradient(2px 2px at 50% 10%, rgba(255,255,255,0.2), transparent), radial-gradient(2px 2px at 70% 50%, rgba(255,255,255,0.15), transparent), radial-gradient(2px 2px at 90% 30%, rgba(255,255,255,0.2), transparent), radial-gradient(2px 2px at 20% 80%, rgba(255,255,255,0.1), transparent), radial-gradient(2px 2px at 60% 90%, rgba(255,255,255,0.1), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    animation: floatParticles 20s ease-in-out infinite;
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

    .hero-caption .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 10px 32px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition-smooth);
    font-family: var(--font-peyda);
}

    .hero-badge i {
        margin-left: 10px;
        color: var(--gold);
    }

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(1,4,59,0.3);
    line-height: 1.1;
    font-family: var(--font-peyda);
}

    .hero-title span {
        background: var(--gradient-secondary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        padding: 16px 38px;
        font-size: 16px;
        font-weight: 700;
        border-radius: var(--border-radius-full);
        gap: 12px;
        font-family: var(--font-peyda);
    }

    .hero-buttons .btn-primary {
        background: var(--gradient-secondary);
        color: white;
        box-shadow: var(--shadow-secondary);
    }

        .hero-buttons .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-secondary-xl);
        }

    .hero-buttons .btn-outline-light {
        border: 2px solid rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.05);
        color: white;
    }

        .hero-buttons .btn-outline-light:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
            border-color: white;
            box-shadow: 0 15px 45px rgba(255,255,255,0.15);
        }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
    text-align: center;
}

    .hero-stat .number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        font-family: var(--font-peyda);
    }

    .hero-stat .label {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        font-weight: 500;
        letter-spacing: 0.5px;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-full:hover .carousel-control-prev,
.hero-full:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(1,4,59,0.5);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: var(--transition-bounce);
    background-size: 40%;
}

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
        background-color: var(--primary);
        transform: scale(1.12);
        box-shadow: var(--shadow-primary);
    }

.carousel-indicators {
    bottom: 40px;
    gap: 10px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.4);
        background: transparent;
        transition: var(--transition-smooth);
    }

        .carousel-indicators button.active {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.2);
            box-shadow: var(--shadow-secondary);
        }

/* ========================================
   12. STATS
   ======================================== */
.stats-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 35px 20px 30px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-neon);
        transition: var(--transition-smooth);
    }

    .stat-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: var(--gradient-mesh);
        transition: var(--transition-slow);
        z-index: -1;
    }

    .stat-card:hover::after {
        height: 100%;
    }

    .stat-card:hover {
        transform: translateY(-18px);
        box-shadow: var(--shadow-3xl);
    }

        .stat-card:hover::before {
            height: 5px;
            background: var(--gradient-secondary);
        }

    .stat-card .stat-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(10,15,92,0.08), rgba(255,140,66,0.04));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: var(--transition-bounce);
    }

    .stat-card:hover .stat-icon {
        background: var(--gradient-primary);
        transform: scale(1.12) rotate(8deg);
    }

    .stat-card .stat-icon i {
        font-size: 38px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        transition: var(--transition-bounce);
    }

    .stat-card:hover .stat-icon i {
        background: white;
        -webkit-background-clip: text;
        background-clip: text;
        color: white;
        transform: rotate(360deg);
    }

    .stat-card .stat-number {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-family: var(--font-peyda);
    }

    .stat-card .stat-label {
        color: var(--gray);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .stat-card .stat-progress {
        width: 80%;
        height: 4px;
        background: var(--gray-light);
        border-radius: 4px;
        margin: 15px auto 0;
        overflow: hidden;
    }

        .stat-card .stat-progress .progress-bar {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            transition: width 1.5s ease;
        }

/* ========================================
   13. ABOUT
   ======================================== */
.section-about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

    .section-about::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(10,15,92,0.04), transparent 70%);
        border-radius: 50%;
    }

    .section-about::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,140,66,0.03), transparent 70%);
        border-radius: 50%;
    }

.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        border-radius: var(--border-radius-2xl);
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-slow);
    }

    .about-image-wrapper:hover img {
        transform: scale(1.02);
    }

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-bounce);
}

    .about-image-badge:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl);
    }

    .about-image-badge i {
        font-size: 28px;
        color: var(--secondary);
    }

    .about-image-badge span {
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font-peyda);
    }

.about-experience {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gradient-secondary);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-secondary-lg);
    color: white;
}

    .about-experience span {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        font-family: var(--font-peyda);
    }

    .about-experience small {
        font-size: 12px;
        opacity: 0.9;
    }

.about-floating-icons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 12px;
}

    .about-floating-icons .floating-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary);
        box-shadow: var(--shadow-md);
        animation: float 4s ease-in-out infinite;
        transition: var(--transition-bounce);
        cursor: pointer;
    }

        .about-floating-icons .floating-icon:hover {
            transform: scale(1.15);
            background: var(--gradient-primary);
            color: white;
        }

        .about-floating-icons .floating-icon:nth-child(2) {
            animation-delay: 0.5s;
        }

        .about-floating-icons .floating-icon:nth-child(3) {
            animation-delay: 1s;
        }

.about-text {
    color: var(--gray);
    line-height: 2;
    margin-bottom: 35px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

    .about-features .feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 15px 18px;
        background: var(--light);
        border-radius: var(--border-radius);
        transition: var(--transition-bounce);
        cursor: pointer;
        border: 1px solid transparent;
    }

        .about-features .feature:hover {
            background: white;
            border-color: rgba(10,15,92,0.15);
            transform: translateX(-6px);
            box-shadow: var(--shadow-md);
        }

        .about-features .feature .feature-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .about-features .feature .feature-content h6 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
            font-family: var(--font-peyda);
            color: var(--dark);
        }

        .about-features .feature .feature-content p {
            font-size: 12px;
            color: var(--gray);
            margin: 0;
        }

.about-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .about-cta .btn {
        padding: 14px 35px;
        font-family: var(--font-peyda);
    }

.about-phone {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .about-phone i {
        font-size: 28px;
        color: var(--primary);
        background: rgba(10,15,92,0.08);
        padding: 12px;
        border-radius: 50%;
    }

    .about-phone div small {
        display: block;
        font-size: 11px;
        color: var(--gray);
        font-weight: 600;
    }

    .about-phone div span {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font-peyda);
    }

/* ========================================
   14. SERVICES
   ======================================== */
.section-services {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .section-services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 10% 20%, rgba(10,15,92,0.03), transparent 40%), radial-gradient(circle at 90% 80%, rgba(255,140,66,0.02), transparent 40%);
        pointer-events: none;
    }

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-18px);
        box-shadow: var(--shadow-3xl);
    }

    .service-card .service-img {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

        .service-card .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

    .service-card:hover .service-img img {
        transform: scale(1.12);
    }

    .service-card .service-img .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(1,4,59,0.25);
        opacity: 0;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card:hover .service-img .service-overlay {
        opacity: 1;
    }

    .service-card .service-img .service-overlay i {
        font-size: 40px;
        color: white;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(5px);
        padding: 20px;
        border-radius: 50%;
        transform: scale(0.5);
        transition: var(--transition-bounce);
    }

    .service-card:hover .service-img .service-overlay i {
        transform: scale(1);
    }

    .service-card .service-content {
        padding: 30px 25px 25px;
        text-align: center;
        position: relative;
        background: var(--white);
    }

    .service-card .service-icon {
        position: absolute;
        top: -38px;
        left: 50%;
        transform: translateX(-50%);
        width: 76px;
        height: 76px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        box-shadow: var(--shadow-primary-xl);
        transition: var(--transition-bounce);
    }

    .service-card:hover .service-icon {
        transform: translateX(-50%) rotate(360deg);
        background: var(--gradient-secondary);
        box-shadow: var(--shadow-secondary-xl);
    }

    .service-card .service-content h4 {
        margin-top: 35px;
        margin-bottom: 12px;
        font-size: 1.3rem;
        transition: var(--transition-smooth);
        font-family: var(--font-peyda);
        color: var(--dark);
    }

    .service-card:hover .service-content h4 {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .service-card .service-content p {
        color: var(--gray);
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .service-card .service-content .service-link {
        font-weight: 700;
        font-size: 13px;
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition-smooth);
        font-family: var(--font-peyda);
    }

        .service-card .service-content .service-link i {
            font-size: 12px;
            transition: var(--transition-smooth);
        }

        .service-card .service-content .service-link:hover {
            color: var(--secondary);
        }

            .service-card .service-content .service-link:hover i {
                transform: translateX(-4px);
            }

/* ========================================
   15. GALLERY
   ======================================== */
.section-gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light), #ffffff);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-slow);
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(1,4,59,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item .gallery-overlay i {
        font-size: 40px;
        color: white;
        transform: scale(0.5);
        transition: var(--transition-bounce);
    }

    .gallery-item:hover .gallery-overlay i {
        transform: scale(1);
    }

/* ========================================
   16. GALLERY MODAL
   ======================================== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1,4,59,0.92);
    backdrop-filter: blur(15px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .gallery-modal.active {
        display: flex !important;
    }

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-modal-content img {
        max-width: 85vw;
        max-height: 85vh;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 12px;
        box-shadow: 0 30px 80px rgba(1,4,59,0.6);
        display: block;
        margin: 0 auto;
    }

.gallery-modal-close {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1000000;
}

    .gallery-modal-close:hover {
        background: var(--secondary);
        transform: rotate(90deg);
    }

/* ========================================
   17. TEAM
   ======================================== */
.section-team {
    padding: 120px 0;
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: var(--shadow-md);
}

    .team-card:hover {
        transform: translateY(-18px);
        box-shadow: var(--shadow-3xl);
    }

    .team-card .team-img-wrapper {
        position: relative;
        overflow: hidden;
    }

        .team-card .team-img-wrapper img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

    .team-card:hover .team-img-wrapper img {
        transform: scale(1.08);
    }

    .team-card .team-social {
        position: absolute;
        bottom: -60px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 12px;
        transition: var(--transition-bounce);
    }

    .team-card:hover .team-social {
        bottom: 25px;
    }

    .team-card .team-social a {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition-bounce);
        transform: translateY(0);
        font-size: 14px;
    }

        .team-card .team-social a:hover {
            background: var(--gradient-secondary);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: var(--shadow-secondary);
        }

    .team-card .team-info {
        padding: 30px 20px 25px;
        background: var(--white);
    }

        .team-card .team-info h4 {
            margin-bottom: 6px;
            font-size: 1.25rem;
            transition: var(--transition-smooth);
            font-family: var(--font-peyda);
            color: var(--dark);
        }

    .team-card:hover .team-info h4 {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .team-card .team-info p {
        color: var(--primary);
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .team-card .team-info .team-experience {
        display: inline-block;
        background: rgba(10,15,92,0.08);
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        padding: 2px 14px;
        border-radius: var(--border-radius-full);
        margin-bottom: 8px;
    }

    .team-card .team-info .team-rating {
        color: #ffc107;
        font-size: 12px;
        letter-spacing: 2px;
    }

/* ========================================
   18. FAQ
   ======================================== */
.section-faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-xl);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

    .faq-item:hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(10,15,92,0.15);
    }

    .faq-item.active {
        border-color: var(--primary);
        box-shadow: var(--shadow-lg);
    }

    .faq-item .faq-question {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 22px 28px;
        cursor: pointer;
        background: var(--white);
        transition: var(--transition-smooth);
    }

    .faq-item.active .faq-question {
        background: linear-gradient(135deg, rgba(10,15,92,0.03), white);
    }

    .faq-item .faq-question .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: rgba(10,15,92,0.06);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 18px;
        transition: var(--transition-smooth);
    }

    .faq-item.active .faq-question .faq-icon {
        background: var(--gradient-primary);
        color: white;
    }

    .faq-item .faq-question h4 {
        margin: 0;
        flex: 1;
        font-size: 1.05rem;
        font-weight: 700;
        transition: var(--transition-smooth);
        font-family: var(--font-peyda);
        color: var(--dark);
    }

    .faq-item.active .faq-question h4 {
        color: var(--primary);
    }

    .faq-item .faq-question .faq-toggle {
        color: var(--gray);
        transition: var(--transition-bounce);
        font-size: 14px;
    }

    .faq-item.active .faq-question .faq-toggle {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .faq-item .faq-answer {
        padding: 0 28px;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        background: #fafbfc;
    }

    .faq-item.active .faq-answer {
        padding: 0 28px 25px 28px;
        max-height: 350px;
    }

    .faq-item .faq-answer p {
        color: var(--gray);
        line-height: 2;
        margin: 0;
        font-size: 14px;
    }

/* ========================================
   19. REVIEWS
   ======================================== */
.section-reviews {
    position: relative;
    padding: 120px 0;
    background: url('../img/contact/bg_2.jpg') center/cover fixed;
    background-attachment: fixed;
    overflow: hidden;
}

    .section-reviews .section-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-reviews);
        z-index: 0;
    }

    .section-reviews .container {
        position: relative;
        z-index: 1;
    }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.review-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--border-radius-xl);
    padding: 30px 28px;
    transition: var(--transition-bounce);
    cursor: pointer;
}

    .review-item:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.2);
        box-shadow: 0 20px 50px rgba(1,4,59,0.3);
    }

    .review-item .review-quote {
        font-size: 36px;
        color: var(--secondary);
        opacity: 0.3;
        margin-bottom: 15px;
    }

    .review-item p {
        color: rgba(255,255,255,0.9);
        font-style: italic;
        line-height: 1.9;
        font-size: 15px;
        margin-bottom: 18px;
    }

    .review-item .reviewer {
        display: flex;
        align-items: center;
        gap: 14px;
    }

        .review-item .reviewer .reviewer-avatar {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--secondary);
        }

            .review-item .reviewer .reviewer-avatar img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .review-item .reviewer strong {
            color: white;
            font-size: 15px;
            font-family: var(--font-peyda);
        }

        .review-item .reviewer .stars {
            color: #ffc107;
            font-size: 13px;
            letter-spacing: 2px;
            margin-top: 2px;
        }

/* ========================================
   20. CONTACT
   ======================================== */
.section-contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-3xl);
    padding: 50px 45px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-bounce);
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
    }

    .contact-card .form-group {
        position: relative;
        margin-bottom: 18px;
    }

        .contact-card .form-group .form-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 14px;
            transition: var(--transition-smooth);
            z-index: 2;
        }

        .contact-card .form-group .form-control {
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius);
            padding: 14px 45px 14px 16px;
            transition: var(--transition-smooth);
            font-size: 14px;
            font-family: var(--font-peyda);
            color: var(--dark);
        }

            .contact-card .form-group .form-control:focus {
                border-color: var(--primary);
                box-shadow: 0 0 0 5px rgba(10,15,92,0.10);
                outline: none;
            }

                .contact-card .form-group .form-control:focus + .form-icon {
                    color: var(--primary);
                }

        .contact-card .form-group textarea.form-control {
            resize: none;
        }

        .contact-card .form-group textarea + .form-icon {
            top: 20px;
            transform: none;
        }

    .contact-card .btn-primary {
        font-family: var(--font-peyda);
    }

    .contact-card .contact-info {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--gray-light);
    }

        .contact-card .contact-info .contact-info-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 0;
            color: var(--dark);
            font-size: 14px;
        }

            .contact-card .contact-info .contact-info-item i {
                width: 36px;
                height: 36px;
                min-width: 36px;
                background: rgba(10,15,92,0.06);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                font-size: 15px;
            }

.map-card {
    position: relative;
    border-radius: var(--border-radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 500px;
    transition: var(--transition-bounce);
}

    .map-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
    }

    .map-card .map-wrapper {
        width: 100%;
        height: 100%;
        min-height: 500px;
    }

        .map-card .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            display: block;
        }

    .map-card .map-overlay-info {
        position: absolute;
        bottom: 30px;
        right: 30px;
        left: 30px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(15px);
        border-radius: var(--border-radius);
        padding: 20px 25px;
        box-shadow: var(--shadow-lg);
    }

        .map-card .map-overlay-info .map-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

            .map-card .map-overlay-info .map-info-item i {
                font-size: 28px;
                color: var(--secondary);
                min-width: 40px;
            }

            .map-card .map-overlay-info .map-info-item strong {
                display: block;
                font-size: 14px;
                color: var(--dark);
                font-family: var(--font-peyda);
            }

            .map-card .map-overlay-info .map-info-item span {
                display: block;
                font-size: 12px;
                color: var(--gray);
                line-height: 1.6;
            }

/* ========================================
   21. NOTIFICATION MODAL
   ======================================== */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1,4,59,0.5);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .notification-modal.active {
        display: flex;
    }

.notification-modal-content {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-3xl);
    animation: slideUp 0.4s ease;
}

.notification-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .notification-modal-header h3 {
        margin: 0;
        font-size: 1.2rem;
        font-family: var(--font-peyda);
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--dark);
    }

        .notification-modal-header h3 i {
            color: var(--secondary);
        }

.notification-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    color: var(--gray);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .notification-modal-close:hover {
        background: var(--secondary);
        color: white;
        transform: rotate(90deg);
    }

.notification-modal-body {
    padding: 15px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border-right: 3px solid transparent;
    margin-bottom: 8px;
}

    .notification-item:hover {
        background: var(--light);
    }

    .notification-item.unread {
        background: rgba(10,15,92,0.04);
        border-right-color: var(--primary);
    }

    .notification-item .notification-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: rgba(10,15,92,0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 18px;
    }

    .notification-item .notification-text {
        flex: 1;
    }

        .notification-item .notification-text h4 {
            margin: 0;
            font-size: 0.95rem;
            font-family: var(--font-peyda);
            color: var(--dark);
        }

        .notification-item .notification-text p {
            margin: 4px 0 6px;
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        .notification-item .notification-text .notification-time {
            font-size: 11px;
            color: var(--gray);
            opacity: 0.7;
        }

.notification-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-light);
}

/* ========================================
   22. FOOTER
   ======================================== */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-neon);
    }

    .footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(10,15,92,0.15), transparent 60%);
        pointer-events: none;
    }

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
}

    .footer-wave svg {
        width: 100%;
        height: 100%;
    }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

    .footer-brand i {
        font-size: 36px;
        color: var(--secondary);
        background: rgba(255,255,255,0.05);
        padding: 14px;
        border-radius: 16px;
    }

    .footer-brand h3 {
        font-size: 26px;
        margin: 0;
        line-height: 1;
        font-family: var(--font-peyda);
        color: white;
    }

        .footer-brand h3 span {
            color: var(--secondary);
        }

    .footer-brand small {
        display: block;
        font-size: 11px;
        opacity: 0.5;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-top: 2px;
        color: rgba(255,255,255,0.5);
    }

.footer-text {
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    font-size: 14px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        transition: var(--transition-bounce);
        font-size: 16px;
        border: 1px solid rgba(255,255,255,0.06);
    }

        .footer-social a:hover {
            background: var(--gradient-secondary);
            color: white;
            transform: translateY(-5px);
            border-color: transparent;
            box-shadow: var(--shadow-secondary);
        }

.footer h5 {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-peyda);
}

    .footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 30px;
        height: 3px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer ul li {
        margin-bottom: 12px;
    }

        .footer ul li a {
            color: rgba(255,255,255,0.6);
            transition: var(--transition-smooth);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-peyda);
        }

            .footer ul li a i {
                font-size: 10px;
                transition: var(--transition-smooth);
            }

            .footer ul li a:hover {
                color: var(--secondary);
                transform: translateX(-6px);
            }

                .footer ul li a:hover i {
                    transform: translateX(-4px);
                }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        color: rgba(255,255,255,0.7);
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        font-family: var(--font-peyda);
    }

        .footer-contact li:last-child {
            border-bottom: none;
        }

        .footer-contact li i {
            width: 30px;
            height: 30px;
            min-width: 30px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 13px;
        }

.footer-hours .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-peyda);
}

    .footer-hours .hour-item .time {
        font-weight: 600;
        color: rgba(255,255,255,0.9);
    }

        .footer-hours .hour-item .time.closed {
            color: var(--secondary);
        }

.newsletter-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

    .newsletter-group .form-control {
        background: transparent;
        border: none;
        color: white;
        padding: 14px 22px;
        font-size: 14px;
        font-family: var(--font-peyda);
    }

        .newsletter-group .form-control::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .newsletter-group .form-control:focus {
            outline: none;
            box-shadow: none;
        }

    .newsletter-group .btn {
        background: var(--gradient-secondary);
        border: none;
        color: white;
        padding: 14px 22px;
        border-radius: 0 var(--border-radius-full) var(--border-radius-full) 0;
        transition: var(--transition-smooth);
    }

        .newsletter-group .btn:hover {
            background: var(--gradient-primary);
        }

.footer-badges {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

    .footer-badges span {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-peyda);
    }

        .footer-badges span i {
            color: var(--secondary);
        }

.footer hr {
    border-color: rgba(255,255,255,0.06);
    margin: 40px 0 25px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
    font-family: var(--font-peyda);
}

    .footer-bottom p span {
        color: rgba(255,255,255,0.6);
    }

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

    .footer-payments i {
        font-size: 18px;
        color: rgba(255,255,255,0.3);
    }

/* ========================================
   23. BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: none;
    font-size: 20px;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--gradient-secondary);
        transform: translateY(-8px) scale(1.05);
        box-shadow: var(--shadow-secondary-xl);
        color: white;
    }

/* ========================================
   24. BUTTONS
   ======================================== */
.btn {
    font-family: var(--font-peyda);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-radius: var(--border-radius-full);
    padding: 14px 38px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        transition: 0.6s;
        transform: translate(-50%, -50%);
    }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

    .btn-primary::before {
        background: rgba(255,255,255,0.15);
    }

    .btn-primary:hover {
        background: var(--gradient-secondary);
        transform: translateY(-4px);
        box-shadow: var(--shadow-primary-xl);
        color: white;
    }

        .btn-primary:hover::before {
            width: 300%;
            height: 300%;
        }

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-secondary);
}

    .btn-secondary::before {
        background: rgba(255,255,255,0.15);
    }

    .btn-secondary:hover {
        background: var(--gradient-primary);
        transform: translateY(-4px);
        box-shadow: var(--shadow-secondary-xl);
        color: white;
    }

        .btn-secondary:hover::before {
            width: 300%;
            height: 300%;
        }

.btn-outline-primary {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

    .btn-outline-primary:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateY(-4px);
        box-shadow: var(--shadow-primary);
    }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: white;
}

    .btn-outline-light::before {
        background: rgba(255,255,255,0.1);
    }

    .btn-outline-light:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-4px);
        border-color: white;
        box-shadow: 0 15px 40px rgba(255,255,255,0.15);
    }

        .btn-outline-light:hover::before {
            width: 300%;
            height: 300%;
        }

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    display: flex;
    justify-content: center;
}

/* ========================================
   25. UTILITY CLASSES
   ======================================== */
.rounded-4 {
    border-radius: var(--border-radius);
}

.rounded-5 {
    border-radius: var(--border-radius-lg);
}

.rounded-6 {
    border-radius: var(--border-radius-xl);
}

.rounded-7 {
    border-radius: var(--border-radius-2xl);
}

.rounded-full {
    border-radius: var(--border-radius-full);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

.shadow-3xl {
    box-shadow: var(--shadow-3xl);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.gap-4 {
    gap: 24px;
}

.gap-5 {
    gap: 32px;
}

.m-0 {
    margin: 0;
}

.p-0 {
    padding: 0;
}

/* ========================================
   26. RESPONSIVE
   ======================================== */

/* منوی همبرگری از 1172px به پایین */
@media (max-width: 1172px) {
    /* تاپبار مخفی بشه */
    .topbar-full {
        display: none !important;
    }

    /* ناوبری */
    .main-navbar {
        top: 0 !important;
    }

    .hero-full {
        margin-top: 72px !important;
    }

    /* دکمه همبرگری نمایش داده بشه */
    .navbar-toggler {
        display: block !important;
    }

    /* منوی کشویی */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(255,255,255,0.98);
        padding: 20px;
        box-shadow: 0 20px 50px rgba(1,4,59,0.1);
        border-radius: 0 0 20px 20px;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid rgba(1,4,59,0.05);
    }

    .navbar-nav .nav-item .nav-link {
        justify-content: center;
        padding: 12px 20px !important;
        border-radius: 12px;
        border-bottom: 1px solid rgba(1,4,59,0.05);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-actions {
        justify-content: center;
        gap: 10px;
    }

    .btn-appointment span {
        display: none;
    }

    .btn-appointment {
        padding: 10px 14px;
    }

        .btn-appointment i {
            font-size: 16px;
            margin: 0;
        }
}

/* Gallery responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-modal-content {
        max-width: 95vw;
        max-height: 90vh;
    }

        .gallery-modal-content img {
            max-width: 95vw;
            max-height: 90vh;
        }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item .gallery-overlay i {
        font-size: 28px;
    }

    .gallery-modal {
        padding: 15px;
    }

    .gallery-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gallery-modal-content {
        max-width: 98vw;
        max-height: 92vh;
    }

        .gallery-modal-content img {
            max-width: 98vw;
            max-height: 92vh;
        }
}

/* Reviews responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        gap: 15px;
    }

    .review-item {
        padding: 16px 14px;
    }

        .review-item .review-quote {
            font-size: 28px;
        }

        .review-item .reviewer .reviewer-avatar {
            width: 40px;
            height: 40px;
            min-width: 40px;
        }
}

/* General responsive */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .stats-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-slide {
        min-height: 550px;
    }

    .hero-full .carousel {
        min-height: 550px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 35px 30px;
    }

    .map-card {
        min-height: 400px;
    }

        .map-card .map-wrapper {
            min-height: 400px;
        }

            .map-card .map-wrapper iframe {
                min-height: 400px;
            }

    .section-about, .section-services, .section-team,
    .section-faq, .section-reviews, .section-contact,
    .section-gallery {
        padding: 80px 0;
    }

    .container-fluid {
        padding: 0 25px;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat .number {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-slide {
        min-height: 450px;
    }

    .hero-full .carousel {
        min-height: 450px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 22px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat .number {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stats-section {
        margin-top: -50px;
    }

    .stat-card {
        padding: 25px 15px;
    }

        .stat-card .stat-number {
            font-size: 2.2rem;
        }

        .stat-card .stat-icon {
            width: 65px;
            height: 65px;
        }

            .stat-card .stat-icon i {
                font-size: 30px;
            }

    .contact-card {
        padding: 25px 20px;
    }

    .map-card {
        min-height: 350px;
    }

        .map-card .map-wrapper {
            min-height: 350px;
        }

            .map-card .map-wrapper iframe {
                min-height: 350px;
            }

        .map-card .map-overlay-info {
            bottom: 15px;
            right: 15px;
            left: 15px;
            padding: 15px 18px;
        }

    .faq-item .faq-question {
        padding: 18px 20px;
    }

        .faq-item .faq-question h4 {
            font-size: 0.95rem;
        }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-brand i {
        font-size: 28px;
        padding: 10px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        left: 20px;
        font-size: 16px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .about-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
    }

        .about-image-badge i {
            font-size: 20px;
        }

    .about-experience {
        top: 15px;
        left: 15px;
        padding: 12px 18px;
    }

        .about-experience span {
            font-size: 1.4rem;
        }

    .about-floating-icons {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }

        .about-floating-icons .floating-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

        .section-title::after {
            width: 40px;
            height: 3px;
        }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-full .carousel {
        min-height: 400px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 18px;
    }

    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 13px;
        gap: 8px;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stat .number {
        font-size: 1rem;
    }

    .hero-stat .label {
        font-size: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats-section {
        margin-top: -40px;
    }

    .stat-card {
        padding: 20px 12px;
        border-radius: var(--border-radius-lg);
    }

        .stat-card .stat-number {
            font-size: 1.8rem;
        }

        .stat-card .stat-icon {
            width: 55px;
            height: 55px;
        }

            .stat-card .stat-icon i {
                font-size: 24px;
            }

        .stat-card .stat-label {
            font-size: 12px;
        }

    .contact-card {
        padding: 20px;
        border-radius: var(--border-radius-2xl);
    }

    .map-card {
        min-height: 300px;
        border-radius: var(--border-radius-2xl);
    }

        .map-card .map-wrapper {
            min-height: 300px;
        }

            .map-card .map-wrapper iframe {
                min-height: 300px;
            }

        .map-card .map-overlay-info {
            bottom: 10px;
            right: 10px;
            left: 10px;
            padding: 12px 15px;
        }

            .map-card .map-overlay-info .map-info-item i {
                font-size: 20px;
                min-width: 30px;
            }

    .service-card .service-img {
        height: 180px;
    }

    .service-card .service-content {
        padding: 25px 18px 20px;
    }

    .service-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        top: -30px;
    }

    .service-card .service-content h4 {
        font-size: 1.1rem;
        margin-top: 28px;
    }

    .team-card .team-img-wrapper img {
        height: 260px;
    }

    .team-card .team-info h4 {
        font-size: 1.05rem;
    }

    .faq-item .faq-question {
        padding: 14px 16px;
        gap: 12px;
    }

        .faq-item .faq-question h4 {
            font-size: 0.85rem;
        }

        .faq-item .faq-question .faq-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            font-size: 14px;
        }

    .footer {
        padding: 50px 0 15px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
        font-size: 14px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 13px;
        gap: 8px;
    }

    .btn-appointment {
        padding: 9px 14px;
        font-size: 13px;
    }

    .carousel-control-prev, .carousel-control-next {
        width: 10%;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 18px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .about-phone {
        justify-content: center;
    }

    .notification-modal-content {
        border-radius: var(--border-radius-xl);
    }

    .notification-modal-header {
        padding: 15px 18px;
    }

        .notification-modal-header h3 {
            font-size: 1rem;
        }

    .notification-modal-body {
        padding: 10px 14px;
    }

    .notification-item {
        padding: 10px 12px;
    }

        .notification-item .notification-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            font-size: 14px;
        }

        .notification-item .notification-text h4 {
            font-size: 0.85rem;
        }

        .notification-item .notification-text p {
            font-size: 12px;
        }
}

/* ========================================
   27. AOS OVERRIDE
   ======================================== */
[data-aos] {
    pointer-events: none;
}

    [data-aos].aos-animate {
        pointer-events: auto;
    }

/* ========================================
   28. PRINT STYLES
   ======================================== */
@media print {
    .topbar-full,
    .main-navbar,
    .hero-full .carousel-control-prev,
    .hero-full .carousel-control-next,
    .back-to-top,
    .footer-wave,
    .social-icons,
    .navbar-toggler,
    .notification-icon,
    .section-reviews .section-bg-overlay,
    .notification-modal {
        display: none !important;
    }

    body {
        background: white;
    }

    .hero-slide {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-overlay {
        background: var(--dark) !important;
    }

    .hero-title {
        color: var(--dark) !important;
    }

    .section {
        padding: 40px 0 !important;
    }

    .review-item {
        background: var(--light) !important;
        border: 1px solid var(--gray-light) !important;
    }

        .review-item p {
            color: var(--dark) !important;
        }

        .review-item .reviewer strong {
            color: var(--dark) !important;
        }

    .contact-card {
        box-shadow: none !important;
        border: 1px solid var(--gray-light);
    }

    .map-card .map-overlay-info {
        background: white !important;
    }

    .stat-card {
        box-shadow: none !important;
        border: 1px solid var(--gray-light);
    }

    .service-card {
        box-shadow: none !important;
        border: 1px solid var(--gray-light);
    }

    .team-card {
        box-shadow: none !important;
        border: 1px solid var(--gray-light);
    }

    .faq-item {
        box-shadow: none !important;
        border: 1px solid var(--gray-light);
    }
}

/* ========================================
   29. جلوگیری از اسکرول افقی در موبایل
   ======================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ========================================
   ناوبری - از 992px تا 1166px
   ======================================== */

/* از 992px تا 1166px - ناوبری با margin-top منفی */
@media (min-width: 992px) and (max-width: 1166px) {
    .main-navbar {
        margin-top: -100px !important;
    }
}

/* استایل های اضافه برای عنوان ها */
.center-file {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}
