* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:"Tajawal","Amiri",system-ui,-apple-system,"Segoe UI",Roboto,Arial; 
        }
        :root {
            --primary-color: #0a192f;
            --secondary-color: #64ffda;
            --accent-color: #ffd700;
            --text-color: #e6f1ff;
            --text-secondary: #8892b0;
            --bg-color: #020c1b;
            --card-bg: rgba(17, 34, 64, 0.7);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --glow: rgba(100, 255, 218, 0.3);
        }

        @media (prefers-reduced-motion: reduce) {
            :root {
                --transition: none;
            }
        }
       
         body {
             font-family:"Tajawal","Amiri",system-ui,-apple-system,"Segoe UI",Roboto,Arial; 
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: background-color 0.5s, color 0.5s;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
            letter-spacing: 0.3px;
           font-size: 14px;
        }
        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Tajawal', 'Amiri', serif;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.5px;
            text-rendering: optimizeLegibility;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 0.8px;
        }
        
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.6px;
        }
        
        h4 {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        p, span, div {
            font-family: 'Tajawal', sans-serif;
            font-weight: 400;
            line-height: 1.8;
            letter-spacing: 0.2px;
        }
        
        .text-large {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.9;
        }
        
        .text-medium {
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.8;
        }
        
        .text-small {
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.7;
        }
        
        /* Particle Background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        @media (prefers-reduced-motion: reduce) {
            .particle {
                animation: none;
            }
        }

        @media (max-width: 768px) {
            .fog {
                opacity: 0.5;
            }
        }

        @media (max-width: 480px) {
            .fog {
                opacity: 0.4;
            }
        }

        @media (max-width: 768px) {
            .particles-container {
                display: none;
            }

            .fog {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section {
                content-visibility: auto;
                contain-intrinsic-size: 800px;
            }
        }
        .particle {
            position: absolute;
            background-color: var(--secondary-color);
            border-radius: 50%;
            opacity: 0;
            animation: twinkle var(--duration) ease-in-out infinite;
            animation-delay: var(--delay);
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: var(--opacity); transform: scale(1); }
        }
        /* Cinematic Fog Effect */
        .fog {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, var(--bg-color) 70%);
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
        }
        /* Header Styling */
        header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            color: var(--text-color);
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            header {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* تنسيقات زر القائمة المنسدلة */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        
        .hamburger {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .hamburger::before {
            transform: translateY(-8px);
        }
        
        .hamburger::after {
            transform: translateY(8px);
        }
        
        /* حالة القائمة المفتوحة */
        .menu-toggle[aria-expanded="true"] .hamburger {
            background: transparent;
        }
        
        .menu-toggle[aria-expanded="true"] .hamburger::before {
            transform: rotate(45deg);
        }
        
        .menu-toggle[aria-expanded="true"] .hamburger::after {
            transform: rotate(-45deg);
        }
        
        /* تنسيقات القائمة */
       .main-nav {
           display: flex;
           gap: 15px;
           align-items: center;
           justify-content: center;
           flex-wrap: wrap;
       }
       
       .main-nav a {
           color: var(--text-color);
           text-decoration: none;
           font-size: 1.0rem;
           font-weight: 600;
           font-family: 'Tajawal', sans-serif;
           transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
           padding: 10px 16px;
           border-radius: 8px;
           position: relative;
           display: flex;
           align-items: center;
           justify-content: center;
           text-align: center;
           line-height: 1.5;
           min-width: 100px;
       }
       
       .main-nav a:hover {
           color: var(--secondary-color);
           background: rgba(100, 255, 218, 0.1);
           transform: translateY(-2px);
       }
       
       .main-nav a::before {
           content: '';
           position: absolute;
           bottom: 4px;
           right: 16px;
           left: 16px;
           height: 2px;
           background: var(--secondary-color);
           transform: scaleX(0);
           transform-origin: center;
           transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       }
       
       .main-nav a:hover::before {
           transform: scaleX(1);
       }
       
       .nav-inquiry-btn {
           background: linear-gradient(135deg, var(--secondary-color), #4fd1c5) !important;
           color: var(--primary-color) !important;
           padding: 10px 24px !important;
           border-radius: 50px !important;
           font-weight: 700 !important;
           display: inline-flex !important;
           align-items: center;
           gap: 10px;
           transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
           box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
           border: none !important;
           min-width: auto;
           margin-right: 5px;
       }
       
       .nav-inquiry-btn:hover {
           transform: translateY(-3px) !important;
           box-shadow: 0 8px 25px rgba(100, 255, 218, 0.5) !important;
           background: linear-gradient(135deg, #7dffe0, #5fd9d0) !important;
       }
       
       .nav-inquiry-btn i {
           font-size: 1.2rem;
       }

       /* Responsive adjustments */
       @media (max-width: 1200px) {
           .main-nav {
               gap: 12px;
           }
           
           .main-nav a {
               font-size: 1rem;
               padding: 8px 12px;
               min-width: 80px;
           }
           
           .nav-inquiry-btn {
               padding: 8px 18px !important;
               font-size: 0.95rem !important;
           }
       }
        header a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            margin-left: 20px;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
        }
        header a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        header a:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        header a:hover::after {
            width: 100%;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            /* font-family: 'Amiri', serif; */
            background: linear-gradient(to right, var(--text-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        /* Main Hero Section */
        .main {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(2, 12, 27, 0.8), rgba(10, 25, 47, 0.9)),
                         url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        .main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
            animation: pulse 8s infinite alternate;
        }
        @keyframes pulse {
            0% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.05); }
            100% { opacity: 0.2; transform: scale(1); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .main-content {
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9));
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            padding: 45px;
            border-radius: 20px;
            max-width: 600px;
            border: 1px solid rgba(100, 255, 218, 0.25);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 
                        0 0 40px rgba(100, 255, 218, 0.15),
                        inset 0 0 20px rgba(100, 255, 218, 0.05);
            animation: fadeIn 1.5s ease-out, float 6s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .main-content {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .main-content {
                animation: none;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
            }
        }

        @media (max-width: 768px) {
            .main-content::before {
                animation: none;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .main-content:hover {
                transform: none;
                box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 
                            0 0 40px rgba(100, 255, 218, 0.15),
                            inset 0 0 20px rgba(100, 255, 218, 0.05);
                border-color: rgba(100, 255, 218, 0.25);
            }
        }
        
        .main-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                       0 0 50px rgba(100, 255, 218, 0.25),
                       inset 0 0 30px rgba(100, 255, 218, 0.1);
            border-color: rgba(100, 255, 218, 0.35);
        }
        .main-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at center,
                var(--glow) 0%,
                rgba(100, 255, 218, 0.1) 20%,
                transparent 60%
            );
            opacity: 0.15;
            animation: rotate 20s linear infinite;
            pointer-events: none;
            animation: rotate 15s linear infinite;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        .main h2 {
            font-size: 3.2rem;
            color: var(--text-color);
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
            margin-bottom: 15px;
            font-weight: 900;
            letter-spacing: 2px;
            font-family: 'Amiri', serif;
        }
        .main span {
            display: block;
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .main h3 {
            font-size: 1.6rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-weight: 400;
            line-height: 1.6;
        }
        .btn {
            display: inline-block;
            background-color: transparent;
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            letter-spacing: 0.5px;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(100, 255, 218, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }
        .btn:hover {
            box-shadow: 0 0 15px var(--glow);
            transform: translateY(-3px);
        }
        .btn:hover::before {
            width: 100%;
        }
        /* Section Styling */
        section {
            padding: 100px 5%;
            position: relative;
            z-index: 2;
        }
        section h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: var(--text-color);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            font-weight: 800;
            font-family: 'Amiri', serif;
            letter-spacing: 1px;
        }
        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            box-shadow: 0 0 10px var(--glow);
        }
        section p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.9;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        /* Services Cards */
        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .service-card {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 35px;
            width: 300px;
            box-shadow: var(--card-shadow);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(100, 255, 218, 0.1);
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .service-card {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (max-width: 768px) {
            .service-card {
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
            }
            .service-card:hover {
                transform: translateY(-6px);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .service-card,
            .service-card:hover,
            .service-card:hover .service-icon {
                transition: none;
                transform: none;
                box-shadow: var(--card-shadow);
            }
        }

        .service-card.animated {
            transform: translateY(0);
            opacity: 1;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
            border-color: rgba(100, 255, 218, 0.3);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.4s ease;
        }
        .service-card:hover h3::after {
            width: 100%;
        }
        .service-card p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.8;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            transition: all 0.5s ease;
            width: 80px;
            height: 80px;
            background: rgba(10, 25, 47, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid rgba(100, 255, 218, 0.3);
            position: relative;
        }
        .service-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 1px solid var(--secondary-color);
            opacity: 0;
            transition: all 0.5s ease;
        }
        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 0 20px var(--glow);
        }
        .service-card:hover .service-icon::after {
            opacity: 1;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
        }
        /* Tourism Section */
        .tourism {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            margin: 40px auto;
            max-width: 1000px;
            text-align: center;
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .tourism {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (max-width: 768px) {
            .tourism {
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
            }
        }

        .tourism::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.2) 0%, transparent 100%);
            transition: all 0.6s ease;
        }
        .tourism:hover::before {
            top: 0;
            left: 0;
        }
        .tourism:hover {
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
        }
        .tourism h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .tourism h1 {
           color: var(--text-color);
           margin-bottom: 20px;
           font-size: 2.4rem;
           position: relative;
           display: inline-block;
           font-weight: 800;
           font-family: 'Amiri', serif;
        }
        .tourism h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.4s ease;
        }
        .tourism:hover h1::after {
            width: 100%;
        }
        .tourism p {
            font-size: 1.15rem;
            line-height: 1.9;
            font-weight: 400;
        }
        /* Image Slideshow */
        .image-slideshow {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px auto;
            overflow: hidden;
            position: relative;
            height: 500px;
            width: 90%;
            max-width: 1200px;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: var(--transition);
        }
        .image-slideshow:hover {
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 30px var(--glow);
        }
        .image-slideshow img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(100%);
            display: block;
            border-radius: 15px;
            filter: brightness(0.8) contrast(1.1);
        }
        .image-slideshow img.active {
            transform: translateX(0);
            animation: zoomEffect 8s infinite alternate;
        }

        @media (prefers-reduced-motion: reduce) {
            .image-slideshow img.active {
                animation: none;
            }
        }
        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
        .slideshow-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        .slideshow-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .slideshow-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
            box-shadow: 0 0 10px var(--glow);
            border-color: var(--secondary-color);
        }
        .slideshow-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(10, 25, 47, 0.7);
            color: var(--text-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        .slideshow-arrow:hover {
            background-color: rgba(100, 255, 218, 0.2);
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            box-shadow: 0 0 15px var(--glow);
        }
        .slideshow-arrow.prev {
            left: 20px;
        }
        .slideshow-arrow.next {
            right: 20px;
        }
        /* نافذة منبثقة */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            overflow-y: auto;
            padding: 40px 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background: linear-gradient(145deg, #0a192f, #0f2742);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            margin: 20px auto;
            border: 1px solid rgba(100, 255, 218, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(100, 255, 218, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .modal-scrollable {
            overflow-y: auto;
            max-height: 60vh;
            margin: 15px -10px;
            padding: 0 15px;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) rgba(100, 255, 218, 0.1);
        }
        
        /* تخصيص شريط التمرير */
        .modal-scrollable::-webkit-scrollbar {
            width: 6px;
        }
        
        .modal-scrollable::-webkit-scrollbar-track {
            background: rgba(100, 255, 218, 0.1);
            border-radius: 10px;
        }
        
        .modal-scrollable::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
        }
        
        .modal-scrollable::-webkit-scrollbar-thumb:hover {
            background: #52d3aa;
        }
        
        .modal-overlay.active .modal-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .modal-icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }
        
        .modal-content h3 {
            color: var(--text-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .modal-content p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .modal-btn {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .modal-btn:hover {
            background: #52d3aa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--secondary-color);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-15px); }
            60% { transform: translateY(-7px); }
        }
        
        /* Book Online Section */
        @media (max-width: 768px) {
            .book-online-container {
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 15px;
            }
            .book-online {
                flex-shrink: 0;
                width: 250px;
                padding: 25px;
            }
        }

        .book-online-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }
        .book-online {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 255, 218, 0.1);
            border-radius: 15px;
            padding: 35px;
            width: 300px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
        }
        .book-online.animated {
            transform: translateY(0);
            opacity: 1;
        }
        .book-online::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--secondary-color), transparent);
        }
        .book-online:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
            border-color: rgba(100, 255, 218, 0.3);
        }
        .book-online h3 {
            margin-bottom: 15px;
            font-size: 1.6rem;
            color: var(--secondary-color);
            font-weight: 700;
        }
        .book-online a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
            display: block;
            padding: 10px;
            position: relative;
            letter-spacing: 0.3px;
        }
        .book-online a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .book-online a:hover {
            color: var(--secondary-color);
        }
        .book-online a:hover::after {
            width: 50%;
        }
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .contact-form:hover {
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
        }
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-color);
            transition: color 0.3s ease;
            letter-spacing: 0.3px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            border-radius: 5px;
            font-size: 1.05rem;
            font-weight: 400;
            background-color: rgba(10, 25, 47, 0.5);
            color: var(--text-color);
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
            letter-spacing: 0.2px;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px var(--glow);
            background-color: rgba(10, 25, 47, 0.7);
        }
        .form-group:hover label {
            color: var(--secondary-color);
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        .form-submit {
            background-color: transparent;
            color: var(--secondary-color);
            border: 1px solid var(--secondary-color);
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.3px;
        }
        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(100, 255, 218, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }
        .form-submit:hover {
            box-shadow: 0 0 15px var(--glow);
        }
        .form-submit:hover::before {
            width: 100%;
        }
        /* Footer */
        footer {
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            color: var(--text-color);
            text-align: center;
            padding: 50px 15px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
        }
        footer p {
            font-size: 1rem;
            margin-bottom: 15px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .social-icons {
            margin-top: 25px;
        }
        .social-icons a {
            color: var(--text-secondary);
            margin: 0 15px;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        .social-icons a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--secondary-color);
            transform: translateY(-5px);
        }
        .social-icons a:hover::after {
            width: 80%;
        }
        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin: 10px;
            transition: transform 0.3s ease;
            font-size: 1.05rem;
            font-weight: 500;
        }
        .contact-item:hover {
            transform: translateY(-3px);
        }
        .contact-item i {
            margin-left: 10px;
            color: var(--secondary-color);
        }
        /* Branches */
        .branches {
            margin: 40px 0;
            text-align: center;
        }
        .branches h3 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            font-family: 'Amiri', serif;
        }
        .branches h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            box-shadow: 0 0 10px var(--glow);
        }
        .branch-list {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .branch {
            background-color: rgba(17, 34, 64, 0.5);
            padding: 25px;
            border-radius: 15px;
            min-width: 250px;
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .branch::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, transparent 100%);
            transition: all 0.6s ease;
        }
        .branch:hover::before {
            top: 0;
            left: 0;
        }
        .branch:hover {
            transform: translateY(-5px);
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow);
        }
        .branch h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-size: 1.4rem;
            font-weight: 700;
        }
        .branch h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.4s ease;
        }
        .branch:hover h4::after {
            width: 100%;
        }
        .branch p {
            color: var(--text-secondary);
            margin: 5px 0;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.7;
        }
        /* WhatsApp Popup */
        .whatsapp-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(2, 12, 27, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1100;
            justify-content: center;
            align-items: center;
        }
        .whatsapp-popup.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }
        .whatsapp-popup-content {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            position: relative;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 30px var(--glow);
            border: 1px solid rgba(100, 255, 218, 0.2);
            animation: scaleIn 0.3s ease-out;
        }
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .whatsapp-popup-content h3 {
            color: var(--text-color);
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            position: relative;
            display: inline-block;
            width: 100%;
            font-weight: 700;
            font-family: 'Amiri', serif;
        }
        .whatsapp-popup-content h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            box-shadow: 0 0 10px var(--glow);
        }
        .whatsapp-options {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .whatsapp-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: rgba(37, 211, 102, 0.8);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
            font-weight: 600;
        }
        .whatsapp-option:hover {
            transform: translateY(-3px) scale(1.02);
            background-color: rgba(37, 211, 102, 1);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        .whatsapp-option i {
            font-size: 1.8rem;
        }
        .whatsapp-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s ease;
        }
        .whatsapp-popup-close:hover {
            color: var(--secondary-color);
            transform: rotate(90deg);
        }
        /* Dark Mode Toggle & Back to Top */
        .dark-mode-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: rgba(10, 25, 47, 0.8);
            color: var(--secondary-color);
            border: 1px solid rgba(100, 255, 218, 0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .dark-mode-toggle:hover {
            background-color: rgba(100, 255, 218, 0.1);
            box-shadow: 0 0 20px var(--glow);
            transform: rotate(45deg);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: rgba(10, 25, 47, 0.8);
            color: var(--secondary-color);
            border: 1px solid rgba(100, 255, 218, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: rgba(100, 255, 218, 0.1);
            box-shadow: 0 0 20px var(--glow);
            transform: translateY(-5px);
        }
        
        /* Chat Bot Button */
        .chat-bot-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--secondary-color), #00e5c4);
            color: var(--primary-color);
            border: none;
            border-radius: 50%;
            width: 65px;
            height: 65px;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
            animation: chatPulse 3s infinite;
            position: fixed;
            overflow: hidden;
        }
        
        .chat-bot-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .chat-bot-button:hover::before {
            opacity: 1;
        }
        
        .chat-bot-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 35px rgba(100, 255, 218, 0.5);
            background: linear-gradient(135deg, #00e5c4, var(--secondary-color));
        }
        
        .chat-bot-button:active {
            transform: scale(0.95);
        }
        
        @keyframes chatPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
            }
            50% {
                box-shadow: 0 8px 25px rgba(100, 255, 218, 0.6), 0 0 0 10px rgba(100, 255, 218, 0.1);
            }
        }
        
        /* Chat Bot Tooltip */
        .chat-bot-tooltip {
            position: absolute;
            right: 75px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(10, 25, 47, 0.95);
            color: var(--text-color);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 255, 218, 0.3);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .chat-bot-tooltip::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: rgba(10, 25, 47, 0.95);
        }
        
        .chat-bot-button:hover .chat-bot-tooltip {
            opacity: 1;
            visibility: visible;
            right: 85px;
        }
        
        /* Enhanced Chat Box Styles */
        #chat-box {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 350px;
            height: 450px;
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(100, 255, 218, 0.2);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow);
            z-index: 1001;
            overflow: hidden;
            animation: chatBoxSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        @keyframes chatBoxSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .chat-header {
            background: linear-gradient(135deg, var(--primary-color), rgba(10, 25, 47, 0.9));
            color: var(--text-color);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .chat-header h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .chat-close-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chat-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--secondary-color);
            transform: rotate(90deg);
        }
        
        #chat-log {
            height: 300px;
            overflow-y: auto;
            padding: 15px;
            background: rgba(2, 12, 27, 0.3);
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) transparent;
        }
        
        #chat-log::-webkit-scrollbar {
            width: 6px;
        }
        
        #chat-log::-webkit-scrollbar-track {
            background: transparent;
        }
        
        #chat-log::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 3px;
        }
        
        #chat-log p {
            margin: 10px 0;
            padding: 8px 12px;
            border-radius: 15px;
            line-height: 1.6;
            font-size: 1rem;
            font-weight: 400;
            animation: messageSlideIn 0.3s ease-out;
        }
        
        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        #chat-log p:nth-child(odd) {
            background: rgba(100, 255, 218, 0.1);
            color: var(--text-color);
            margin-left: 20px;
            border-bottom-right-radius: 5px;
        }
        
        #chat-log p:nth-child(even) {
            background: rgba(10, 25, 47, 0.8);
            color: var(--text-secondary);
            margin-right: 20px;
            border-bottom-left-radius: 5px;
        }
        
        .chat-input-container {
            padding: 15px;
            background: rgba(10, 25, 47, 0.5);
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        #chat-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            border-radius: 20px;
            background: rgba(10, 25, 47, 0.7);
            color: var(--text-color);
            font-size: 1rem;
            font-weight: 400;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
        }
        
        #chat-input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
            background: rgba(10, 25, 47, 0.9);
        }
        
        #chat-input::placeholder {
            color: var(--text-secondary);
        }
        
        #chat-send {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        
        #chat-send:hover {
            background: #00e5c4;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
        }
        
        #chat-send:active {
            transform: scale(0.95);
        }
        
        /* Mobile Responsive for Chat */
        @media (max-width: 480px) {
            .chat-bot-button {
                bottom: 90px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            
            #chat-box {
                bottom: 20px;
                right: 20px;
                left: 20px;
                width: auto;
                height: 400px;
            }
            
            .chat-bot-tooltip {
                display: none;
            }
        }
        
        /* Animation for Scroll Reveal */
        .reveal {
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }
        .reveal.active {
            transform: translateY(0);
            opacity: 1;
        }
        /* Custom Cursor */
       
        /* Scroll Progress Indicator */
        .offer-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
            background: rgba(10, 25, 47, 0.95);
            color: #fff;
        }
        
        .offer-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 15px 0;
            padding: 10px 0;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 400;
            color: #e6f1ff;
        }
        
        .feature-item i {
            color: var(--secondary-color);
            width: 16px;
            text-align: center;
        }
        
        .feature-item.highlight {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .offer-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        
        .offer-price {
            font-size: 1.5rem;
            color: var(--secondary-color);
            font-weight: 700;
            display: flex;
            flex-direction: column;
        }
        
        .original-price {
            font-size: 1rem;
            color: #8892b0;
            text-decoration: line-through;
            margin-top: 2px;
        }
        .scroll-progress-bar {
            height: 100%;
            background: var(--secondary-color);
            width: 0%;
            transition: width 0.1s ease;
        }
        .service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
        }
        
        .service-card-link::after {
            content: 'انقر على الخدمة لمشاهدة أحدث العروض المتوفرة لدينا.';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 25, 47, 0.95);
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.15rem;
            padding: 20px;
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            text-align: center;
            line-height: 1.7;
            z-index: 2;
        }
        
        .service-card-link:hover::after {
            opacity: 1;
        }
        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: 2.9rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(100, 255, 218, 0.1);
            transform: translateY(0);
            opacity: 1;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
            border-color: rgba(100, 255, 218, 0.3);
        }

        /* Dynamic Offers Section */
        .dynamic-offers {
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(2, 12, 27, 0.95) 100%);
            padding: 20px 15px;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            position: relative;
            z-index: 10;
            width: 100%;
            box-sizing: border-box;
        }
        
        .offers-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .offers-slider {
            position: relative;
            min-height: 250px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            margin: 0 auto;
            max-width: 98%;
        }
        
        .offer-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: stretch;
            background: rgba(17, 34, 64, 0.8);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        
        .offer-slide.active {
            opacity: 1;
            position: relative;
        }
        
        .offer-image {
            width: 45%;
            height: 100%;
            min-height: 250px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .offer-image::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, rgba(10, 25, 47, 0.9) 0%, transparent 100%);
            transition: all 0.3s ease;
        }
        
        .offer-content {
            width: 55%;
            padding: 25px;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .offer-type {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }
        
        .offer-type.umrah {
            background: #ffd700;
            color: #0a192f;
        }
        
        .offer-type.flight {
            background: #1e90ff;
            color: white;
        }
        
        .flight-route {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 10px 0 15px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-color);
            background: rgba(30, 144, 255, 0.1);
            padding: 8px 15px;
            border-radius: 30px;
            border: 1px solid rgba(30, 144, 255, 0.3);
        }
        
        .flight-route .city {
            font-weight: 700;
            color: var(--secondary-color);
            min-width: 80px;
            text-align: center;
        }
        
        .flight-route i {
            color: var(--primary-color);
            font-size: 1.3rem;
            animation: planeFloat 3s ease-in-out infinite;
        }
        
        @keyframes planeFloat {
            0%, 100% { transform: translateX(0) rotate(90deg); }
            50% { transform: translateX(5px) rotate(90deg); }
        }
        
        .flight-info {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
            justify-content: center;
        }
        
        .star:hover {
            transform: scale(1.2);
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(30, 144, 255, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(30, 144, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .info-item:hover {
            background: rgba(30, 144, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .info-item i {
            color: #1e90ff;
            font-size: 1rem;
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #ff4757, #ff6b81);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .offer-title {
            font-size: 1.9rem;
            margin: 5px 0 12px;
            color: var(--secondary-color);
            line-height: 1.4;
            font-weight: 800;
            font-family: 'Amiri', serif;
            transition: color 0.3s ease;
        }
        
        .offer-slide:hover .offer-title {
            color: #64ffda;
        }

        .offer-cta-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 22px;
            background: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
            align-self: flex-start;
        }

        .offer-cta-btn:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(100, 255, 218, 0.4);
        }

        .offer-cta-btn i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .offer-cta-btn:hover i {
            transform: translateX(-4px);
        }

        
        .offer-description {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: 0 0 20px;
            line-height: 1.8;
            font-weight: 400;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-clamp: 3;
            text-overflow: ellipsis;
            max-height: 5.4em;
        }
        
        .logo {
            font-family: 'Tajawal', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary-color);
            text-decoration: none;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding: 5px 0;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
            line-height: 1.2;
            -webkit-text-stroke: 0.5px rgba(100, 255, 218, 0.3);
            text-stroke: 0.5px rgba(100, 255, 218, 0.3);
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .logo:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .logo:hover::after {
            width: 100%;
            left: 0;
            right: auto;
        }
        
        .offer-slide:hover .offer-price {
            opacity: 1;
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
            transform: translateX(5px);
        }
        
        .offers-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 25px auto 0;
            max-width: 95%;
            gap: 15px;
        }
        
/* تصغير الصفحة إلى 77% على شاشات اللابتوب */
@media
  (min-width: 1024px)
  and (max-width: 1920px)
  and (hover: hover)
  and (pointer: fine) {

    html {
        zoom: 0.73;
    }

    body {
        min-height: 129.87vh;
    }

    /* تعويض التصغير حتى تملأ الواجهة كامل الشاشة */
    .main {
        height: 129.87vh;
        min-height: 129.87vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}
        .offer-nav-btn {
            background: rgba(100, 255, 218, 0.08);
            border: 2px solid rgba(100, 255, 218, 0.3);
            color: var(--secondary-color);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0;
            font-size: 1.1rem;
            backdrop-filter: blur(5px);
        }
        
        .offer-nav-btn:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: scale(1.1);
            box-shadow: 0 0 15px var(--glow);
        }
        
        .offers-dots {
            display: flex;
            gap: 10px;
            padding: 5px 10px;
            border-radius: 50px;
            background: rgba(10, 25, 47, 0.5);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(100, 255, 218, 0.1);
            max-width: 90%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .offers-dots::-webkit-scrollbar {
            display: none;
        }
        
        .offer-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(100, 255, 218, 0.2);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .offer-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--secondary-color);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50%;
        }
        
        .offer-dot.active {
            transform: scale(1.2);
        }
        
        .offer-dot.active::before {
            opacity: 1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(100, 255, 218, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(100, 255, 218, 0);
            }
        }
        
        /* Tablet and Mobile Responsive Styles */
        @media (max-width: 1024px) {
            .offer-slide {
                flex-direction: column;
                height: auto;
                border-radius: 10px;
            }
            
            .offer-image, .offer-content {
                width: 100%;
            }
            
            .offer-image {
                height: 220px;
                min-height: 220px;
            }
            
            .offer-content {
                padding: 20px 25px 25px;
            }
            
            .offer-title {
                font-size: 1.7rem;
                margin: 10px 0 15px;
            }
            
            .offer-description {
                font-size: 1rem;
                margin-bottom: 15px;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }
            
            .offer-price {
                font-size: 1.6rem;
                margin: 10px 0 5px;
            }
            
            .offer-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .offers-dots {
                max-width: 85%;
            }
            
            .offer-dot {
                width: 10px;
                height: 10px;
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .dynamic-offers {
                padding: 15px 10px;
            }
            
            .offers-slider {
                border-radius: 8px;
                box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
            }
            
            .offer-slide {
                border-radius: 8px;
            }
            
            .offer-image {
                height: 180px;
                min-height: 180px;
            }
            
            .offer-content {
                padding: 15px 20px 20px;
            }
            
            .offer-title {
                font-size: 1.5rem;
                margin: 8px 0 12px;
            }
            
            .offer-description {
                font-size: 0.95rem;
                margin-bottom: 12px;
                line-height: 1.6;
            }
            
            .offer-price {
                font-size: 1.4rem;
            }
            
            .offer-type {
                font-size: 0.8rem;
                padding: 3px 10px;
                margin-bottom: 8px;
            }
            
            .offers-nav {
                margin-top: 20px;
                gap: 10px;
            }
            
            .offer-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
            
            .offers-dots {
                max-width: 80%;
                padding: 4px 8px;
            }
        }
        
        /* Very Small Screens */
        @media (max-width: 360px) {
            .offer-image {
                height: 160px;
                min-height: 160px;
            }
            
            .offer-content {
                padding: 12px 15px 15px;
            }
            
            .offer-title {
                font-size: 1.4rem;
            }
            
            .offer-description {
                font-size: 0.9rem;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }
            
            .offer-price {
                font-size: 1.3rem;
            }
            
            .offer-type {
                font-size: 0.75rem;
            }
        }
        
        @media (max-width: 768px) {
            /* تنسيقات القائمة المنسدلة للهواتف */
            .menu-toggle {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background-color: rgba(10, 25, 47, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 80px 20px 40px;
                transition: right 0.3s ease-in-out;
                overflow-y: auto;
                z-index: 1000;
                gap: 15px;
            }
            
            .main-nav[data-visible="true"] {
                right: 0;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }
            
            .main-nav a {
                width: 100%;
                margin: 5px 0;
                padding: 12px 15px;
                border-radius: 6px;
                text-align: right;
                font-size: 1.1rem;
                transition: all 0.3s ease;
            }
            
            .main-nav a:hover {
                background-color: rgba(100, 255, 218, 0.1);
                transform: translateX(-5px);
            }
            
            /* تعديلات إضافية للهواتف */
            .header-container {
                padding: 10px 15px;
            }
            
            .logo {
                font-size: 2rem;
                padding: 3px 0;
                text-shadow: 0 0 8px rgba(100, 255, 218, 0.4);
                font-weight: 800;
            }
            
            .logo::after {
                height: 1.5px;
            }

            /* Main Hero Section Mobile */
            .main {
                height: 100vh;
                padding: 0 15px;
                margin-top: 80px;
            }
            
            .main-content {
                padding: 25px 20px;
                max-width: 95%;
            }
            
            .main h2 {
                font-size: 2rem;
                margin-bottom: 10px;
                letter-spacing: 1px;
            }
            
            .main span {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .main h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 1.1rem;
            }

            /* Sections Mobile */
            section {
                padding: 60px 15px;
            }
            
            section h2 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            section p {
                font-size: 1.1rem;
                margin-bottom: 20px;
                line-height: 1.7;
            }

            /* Services Mobile */
            .services {
                gap: 20px;
            }
            
            .service-card {
                width: 100%;
                max-width: 320px;
                padding: 25px 20px;
                margin: 0 auto;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
                margin-bottom: 15px;
            }
            
            .service-card h3 {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }
            
            .service-card p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Tourism Section Mobile */
            .tourism {
                padding: 25px 20px;
                margin: 20px 10px;
            }
            
            .tourism h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .tourism p {
                font-size: 1.05rem;
                line-height: 1.7;
            }

            /* Image Slideshow Mobile */
            .image-slideshow {
                height: 250px;
                width: 95%;
                margin: 20px auto;
            }
            
            .slideshow-arrow {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .slideshow-arrow.prev {
                left: 10px;
            }
            
            .slideshow-arrow.next {
                right: 10px;
            }
            
            .slideshow-controls {
                bottom: 10px;
                gap: 8px;
            }
            
            .slideshow-dot {
                width: 10px;
                height: 10px;
            }
            

            /* Book Online Mobile */
            .book-online-container {
                gap: 10px;
                margin-top: 30px;
            }
            
            .book-online {
                width: calc(33.333% - 7px);
                padding: 15px 5px;
            }

            .book-online .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
                margin-bottom: 10px;
            }
            
            .book-online h3 {
                font-size: 1.1rem;
                margin: 0;
            }

            .book-online h3 a {
                font-size: 1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                padding: 5px;
            }

            /* Contact Form Mobile */
            .contact-form {
                padding: 25px 20px;
                margin: 0 10px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-group label {
                font-size: 1.05rem;
                margin-bottom: 6px;
            }
            
            .form-group input,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 1rem;
            }
            
            .form-group textarea {
                height: 120px;
            }
            
            .form-submit {
                padding: 10px 20px;
                font-size: 1.05rem;
                width: 100%;
            }

            /* Footer Mobile */
            footer {
                padding: 30px 15px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .contact-item {
                margin: 5px 0;
                font-size: 1rem;
            }
            
            .branches h3 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            
            .branch-list {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .branch {
                width: 100%;
                max-width: 300px;
                padding: 20px;
                min-width: auto;
            }
            
            .branch h4 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .branch p {
                font-size: 0.95rem;
                margin: 3px 0;
            }
            
            .social-icons {
                margin-top: 20px;
            }
            
            .social-icons a {
                margin: 0 10px;
                font-size: 1.5rem;
            }

            /* WhatsApp Popup Mobile */
            .whatsapp-popup-content {
                padding: 25px 20px;
                width: 95%;
                max-width: 350px;
            }
            
            .whatsapp-popup-content h3 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            
            .whatsapp-options {
                gap: 15px;
            }
            
            .whatsapp-option {
                padding: 12px;
                gap: 12px;
                font-size: 1.05rem;
            }
            
            .whatsapp-option i {
                font-size: 1.5rem;
            }

            /* Fixed Buttons Mobile */
            .dark-mode-toggle,
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .dark-mode-toggle {
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-top {
                bottom: 20px;
                left: 20px;
            }

            /* Custom Cursor - Hide on Mobile */
            .custom-cursor {
                display: none;
            }

            /* Particles - Reduce on Mobile */
            .particles-container {
                opacity: 0.3;
            }
        }

        /* Tablet Responsive Styles */
        @media (min-width: 481px) and (max-width: 768px) {
            header {
                padding: 12px 20px;
                flex-direction: column;
            }
            
            header nav {
                margin-top: 12px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
            
            header a {
                margin: 6px;
                font-size: 1.05rem;
                padding: 6px 10px;
            }
            
            .logo {
                font-size: 1.9rem;
            }

            .main {
                margin-top: 100px;
                padding: 0 20px;
            }
            
            .main-content {
                padding: 30px 25px;
                max-width: 90%;
            }
            
            .main h2 {
                font-size: 2.4rem;
                margin-bottom: 12px;
            }
            
            .main span {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }
            
            .main h3 {
                font-size: 1.3rem;
                margin-bottom: 22px;
            }

            section {
                padding: 70px 20px;
            }
            
            section h2 {
                font-size: 2.2rem;
                margin-bottom: 35px;
            }

            .service-card,
            .book-online {
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
            }

            .image-slideshow {
                height: 350px;
                width: 95%;
            }
            
            .slideshow-arrow {
                width: 40px;
                height: 40px;
            }

            .contact-form {
                padding: 30px 25px;
                margin: 0 15px;
            }

            .branch {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* Large Mobile Landscape */
        /* Mobile styles for service card hints */
        @media (max-width: 768px) {
            .service-card-link::after {
                content: 'انقر لعرض كل التفاصيل';
                background: rgba(10, 24, 48, 0.9);
                color: var(--secondary-color);
                font-size: 0.80rem;
                font-weight: 600;
                padding: 10px;
                border-radius: 8px;
                top: auto;
                bottom: 10px;
                left: 50%;
                right: auto;
                width: auto;
                height: auto;
                transform: translateX(-50%);
                opacity: 1;
                box-shadow: 0 2px 10px rgba(0,0,0,0.3);
                white-space: nowrap;
            }
            
            .service-card {
                position: relative;
                padding-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) and (orientation: landscape) {
            .main {
                height: 100vh;
                margin-top: 60px;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .main h2 {
                font-size: 1.8rem;
            }
            
            .main span {
                font-size: 1.05rem;
            }
            
            .main h3 {
                font-size: 1.1rem;
            }
            
            section {
                padding: 50px 15px;
            }
            
            .image-slideshow {
                height: 200px;
            }
        }
        .faq-section {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            width: 100%;
        }
        .faq-section h2 {
            width: 100%;
            margin: 0 auto;
            text-align: center;
        }
        .faq-title-link {
            display: inline-block;
            text-decoration: none;
            color: var(--text-color);
            font-size: 2.2rem;
            font-weight: 700;
            font-family: 'Amiri', serif;
            text-align: center;
            padding: 1rem 2rem;
            border-radius: 10px;
            transition: var(--transition);
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid rgba(100, 255, 218, 0.2);
            letter-spacing: 0.5px;
        }

        .faq-title-link:hover {
            color: var(--secondary-color);
            background: rgba(100, 255, 218, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .faq-link-btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.8rem 1.5rem;
            background: var(--secondary-color);
            color: #0a192f;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .faq-link-btn:hover {
            background: #00e5c4;
            transform: scale(1.05);
            box-shadow: var(--glow);
        }
        
        /* Offers Explanation Section */
        .offers-explanation {
            padding: 60px 5%;
            text-align: center;
            background: rgba(10, 25, 47, 0.3);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .offers-explanation-title {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 800;
            font-family: 'Amiri', serif;
            letter-spacing: 1px;
        }
        
        .offers-explanation-text {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.9;
            font-weight: 400;
        }
        /* شبكة الخدمات — الوضع الافتراضي لِسطح المكتب/التابلت */
#services .services{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* مثلاً 3 أعمدة على الكبير */
  gap: 16px;
}

/* الجوال: خليها عمودين */
@media (max-width: 768px){
  #services .services{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  #services .service-card{
    padding: 12px;              /* تقليل الحشوة للجوال */
  }
  #services .service-icon{
    width: 48px; height: 48px;  /* أيقونة أصغر */
  }
  #services .service-icon i{
    font-size: 1.25rem;
  }
  #services h3{ font-size: 1rem; }
  #services p{  font-size: .85rem; }
}

/* تأكد الروابط تحتل مساحة البطاقة بالكامل وتكون كل البطاقات متساوية الارتفاع */
.service-card-link{ display: block; height: 100%; text-decoration: none; color: inherit; }
.service-card{ height: 100%; display: flex; flex-direction: column; }

/* زر استعلام التأشيرات العائم */
.inquiry-float-btn {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 998;
    background: linear-gradient(135deg, #64ffda, #00e5c4);
    color: #0a192f;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(100, 255, 218, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse-inquiry 2s infinite;
    border: 3px solid rgba(100, 255, 218, 0.4);
    writing-mode: horizontal-tb;
}

.inquiry-float-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(100, 255, 218, 0.8);
    background: linear-gradient(135deg, #00e5c4, #64ffda);
}

@media (max-width: 768px) {
    .inquiry-float-btn:hover {
        transform: translateY(-5px) scale(1.05);
    }
}

.inquiry-float-btn i {
    font-size: 1.4rem;
    animation: bounce-icon 1s infinite;
}

@keyframes pulse-inquiry {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(100, 255, 218, 0.6);
    }
    50% {
        box-shadow: 0 8px 40px rgba(100, 255, 218, 0.9), 0 0 30px rgba(100, 255, 218, 0.7);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* زر استعلام في القائمة */
.nav-inquiry-btn {
    background: linear-gradient(135deg, #64ffda, #00e5c4) !important;
    color: #0a192f !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.5) !important;
}

.nav-inquiry-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(100, 255, 218, 0.7) !important;
    background: linear-gradient(135deg, #00e5c4, #64ffda) !important;
}

.nav-inquiry-btn::after {
    display: none !important;
}

@media (max-width: 768px) {
    .inquiry-float-btn {
        position: fixed;
        top: 20px;
        left: 40%;
        right: auto;
        transform: translateX(-50%);
        padding: 8px 14px;
        font-size: 0.95rem;
        border-radius: 20px;
        z-index: 1001;
        gap: 6px;
        animation: none;
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.85), rgba(0, 229, 196, 0.85));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .inquiry-float-btn span {
        display: inline;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .inquiry-float-btn i {
        font-size: 1rem;
        animation: none;
    }
    
    .inquiry-float-btn:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
    }
}

@media (max-width: 480px) {
    .inquiry-float-btn {
        top: 16px;
        padding: 6px 10px;
        font-size: 0.85rem;
        box-shadow: 0 3px 12px rgba(100, 255, 218, 0.35);
        background: linear-gradient(135deg, rgba(100, 255, 218, 0.8), rgba(0, 229, 196, 0.8));
    }
    
    .inquiry-float-btn span {
        font-size: 0.8rem;
    }
    
    .inquiry-float-btn i {
        font-size: 0.9rem;
    }
    
    .inquiry-float-btn:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 5px 18px rgba(100, 255, 218, 0.45);
    }
}

/* رسالة الترحيب */
.welcome-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95), rgba(10, 25, 47, 0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(100, 255, 218, 0.2);
    z-index: 9999;
    animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s ease;
}

.welcome-notification.hide {
    animation: slideOutRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateX(450px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(450px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(450px);
    }
}

.welcome-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.welcome-notification-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #64ffda, #00e5c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a192f;
    animation: pulse 2s infinite;
}

.welcome-notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.welcome-notification-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-family: 'Tajawal', sans-serif;
}

.welcome-notification-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.welcome-notification-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #64ffda, #00e5c4);
    color: #0a192f;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.welcome-notification-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
    background: linear-gradient(135deg, #00e5c4, #64ffda);
}

.welcome-notification-cta i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .welcome-notification {
        top: 60px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px;
    }
    
    .welcome-notification-title {
        font-size: 1.1rem;
    }
    
    .welcome-notification-text {
        font-size: 0.95rem;
    }
    
    .welcome-notification-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .welcome-notification {
        padding: 12px;
    }
    
    .welcome-notification-title {
        font-size: 1rem;
    }
    
    .welcome-notification-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .welcome-notification-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
        
/* إظهار الزر افتراضياً */
.inquiry-float-btn {
  display: flex;
}

/* إخفاؤه على الشاشات الكبيرة فقط */
@media (min-width: 1024px) {
  .inquiry-float-btn {
    display: none !important;
  }
}
  
 

/* ==========================================================
   AL-YAMAMAH UI RESPONSIVE + LIGHT/DARK THEME PATCH
   يحافظ على كل الوظائف الحالية ويعيد ضبط الواجهة بشكل أهدأ وأسلس
   ========================================================== */

:root,
html[data-theme="dark"],
body[data-theme="dark"] {
  --primary-color: #0b1728;
  --secondary-color: #2dd4bf;
  --accent-color: #f5c542;
  --text-color: #eef6ff;
  --text-secondary: #a6b5c8;
  --bg-color: #07111f;
  --card-bg: rgba(14, 28, 48, 0.72);
  --card-bg-solid: #101f34;
  --header-bg: rgba(8, 18, 32, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --border-color: rgba(148, 163, 184, 0.22);
  --card-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  --glow: rgba(45, 212, 191, 0.20);
  --input-bg: rgba(7, 17, 31, 0.64);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1220px;
}

html[data-theme="light"],
body[data-theme="light"] {
  --primary-color: #0f172a;
  --secondary-color: #0f8f96;
  --accent-color: #c88716;
  --text-color: #102033;
  --text-secondary: #526173;
  --bg-color: #f6f8fb;
  --card-bg: rgba(255, 255, 255, 0.80);
  --card-bg-solid: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.82);
  --surface-soft: rgba(15, 143, 150, 0.075);
  --border-color: rgba(15, 31, 48, 0.12);
  --card-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --glow: rgba(15, 143, 150, 0.16);
  --input-bg: rgba(255, 255, 255, 0.76);
}

/* أساس عام أكثر هدوءًا */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 15% 5%, var(--surface-soft), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(45, 212, 191, 0.08), transparent 28rem),
    var(--bg-color) !important;
  color: var(--text-color) !important;
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.75;
  transition: background-color .28s ease, color .28s ease;
}

::selection {
  background: rgba(45, 212, 191, .24);
  color: var(--text-color);
}

img {
  max-width: 100%;
  height: auto;
}

a, button, input, textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(45, 212, 191, .36);
  outline-offset: 3px;
}

/* تخفيف المؤثرات الثقيلة */
.particles-container {
  opacity: .38;
}

.fog {
  opacity: .22 !important;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-color) 82%) !important;
}

html[data-theme="light"] .fog,
body[data-theme="light"] .fog {
  opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Header */
header {
  background: var(--header-bg) !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .10);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.header-container {
  max-width: var(--container) !important;
  width: 100%;
  min-height: 72px;
  padding: 10px clamp(14px, 4vw, 34px) !important;
  gap: 16px;
}

.logo {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem) !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.main-nav {
  gap: 8px !important;
  align-items: center;
}

.main-nav a {
  min-width: auto !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  color: var(--text-color) !important;
  font-size: clamp(.9rem, .95vw, 1rem) !important;
}

.main-nav a:hover {
  color: var(--secondary-color) !important;
  background: var(--surface-soft) !important;
  transform: translateY(-1px) !important;
}

.nav-inquiry-btn,
.inquiry-float-btn,
.modal-btn,
.form-submit,
.btn {
  border-radius: 999px !important;
}

.nav-inquiry-btn {
  color: #07111f !important;
  background: linear-gradient(135deg, #5eead4, #f6d36b) !important;
  box-shadow: 0 10px 26px rgba(45, 212, 191, .20) !important;
}

/* Hero */
.main {
  min-height: 100svh !important;
  height: auto !important;
  padding: 112px 16px 60px !important;
  background:
    linear-gradient(rgba(7, 17, 31, .72), rgba(7, 17, 31, .86)),
    url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover !important;
}

html[data-theme="light"] .main,
body[data-theme="light"] .main {
  background:
    linear-gradient(rgba(246, 248, 251, .74), rgba(238, 246, 249, .90)),
    url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover !important;
}

.main::before {
  opacity: .45 !important;
  animation-duration: 12s !important;
}

.main-content {
  width: min(720px, 94vw) !important;
  max-width: 720px !important;
  padding: clamp(24px, 4.2vw, 48px) !important;
  border-radius: var(--radius-xl) !important;
  background: var(--card-bg) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--card-shadow) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  animation: fadeIn .8s ease-out !important;
}

.main-content:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18), 0 0 0 1px var(--glow) !important;
}

.main h2 {
  font-size: clamp(2rem, 6vw, 3.35rem) !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
}

.main span {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem) !important;
  color: var(--secondary-color) !important;
  text-shadow: none !important;
}

.main h3 {
  font-size: clamp(1.02rem, 2.3vw, 1.45rem) !important;
  color: var(--text-secondary) !important;
}

/* Sections */
section {
  padding: clamp(58px, 8vw, 100px) clamp(16px, 4vw, 40px) !important;
}

section h2 {
  font-size: clamp(1.75rem, 4.4vw, 2.65rem) !important;
  margin-bottom: clamp(28px, 5vw, 46px) !important;
}

section p {
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
  color: var(--text-secondary) !important;
}

/* Cards and panels */
.service-card,
.book-online,
.tourism,
.contact-form,
.branch,
.whatsapp-popup-content,
.modal-content,
#chat-box,
.offer-slide,
.welcome-notification {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--card-shadow) !important;
  color: var(--text-color) !important;
}

.service-card,
.book-online,
.branch,
.tourism,
.contact-form {
  border-radius: var(--radius-lg) !important;
}

.service-card:hover,
.book-online:hover,
.branch:hover,
.tourism:hover,
.contact-form:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(45, 212, 191, .36) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .16), 0 0 0 1px var(--glow) !important;
}

.service-icon {
  background: var(--surface-soft) !important;
  color: var(--secondary-color) !important;
  border-color: var(--border-color) !important;
}

/* Responsive grids */
.services,
#services .services {
  width: min(var(--container), 100%) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(245px, 100%), 1fr)) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  align-items: stretch !important;
}

.service-card {
  width: 100% !important;
  min-height: 100% !important;
  padding: clamp(20px, 3vw, 32px) !important;
}

.book-online-container {
  width: min(980px, 100%) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  overflow: visible !important;
}

.book-online {
  width: 100% !important;
  padding: clamp(20px, 3vw, 32px) !important;
}

.branch-list,
.contact-info {
  width: min(var(--container), 100%) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)) !important;
  gap: clamp(14px, 2vw, 24px) !important;
}

.branch {
  min-width: 0 !important;
}

/* Tourism image slider */
.image-slideshow {
  width: min(1100px, 94vw) !important;
  height: clamp(240px, 50vw, 500px) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border-color) !important;
}

.image-slideshow img {
  border-radius: var(--radius-lg) !important;
}

.slideshow-arrow {
  background: var(--card-bg) !important;
  border-color: var(--border-color) !important;
  color: var(--text-color) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Dynamic offers */
.dynamic-offers {
  background: transparent !important;
  border-bottom: 1px solid var(--border-color) !important;
  padding: clamp(16px, 3vw, 30px) 12px !important;
}

.offers-container {
  max-width: var(--container) !important;
}

.offers-slider {
  min-height: clamp(360px, 36vw, 460px) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--card-shadow) !important;
}

.offer-slide {
  display: grid !important;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr) !important;
  align-items: stretch !important;
  overflow: hidden !important;
}

.offer-image {
  width: 100% !important;
  min-height: clamp(260px, 34vw, 460px) !important;
}

.offer-content {
  background: var(--card-bg-solid) !important;
  color: var(--text-color) !important;
  padding: clamp(20px, 3vw, 34px) !important;
}

.offer-description,
.feature-item,
.original-price {
  color: var(--text-secondary) !important;
}

/* Forms */
.form-group input,
.form-group textarea,
#chat-input {
  background: var(--input-bg) !important;
  color: var(--text-color) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 14px !important;
}

.form-group input:focus,
.form-group textarea:focus,
#chat-input:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 4px var(--glow) !important;
}

/* Floating buttons: بدون تداخل */
.chat-bot-button {
  right: 24px !important;
  bottom: 24px !important;
  width: 58px !important;
  height: 58px !important;
  background: linear-gradient(135deg, #5eead4, #f6d36b) !important;
  color: #07111f !important;
  box-shadow: 0 16px 35px rgba(15, 143, 150, .22) !important;
}

.dark-mode-toggle {
  right: 24px !important;
  bottom: 94px !important;
  width: 52px !important;
  height: 52px !important;
  background: var(--card-bg) !important;
  color: var(--text-color) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--card-shadow) !important;
}

.back-to-top {
  left: 24px !important;
  bottom: 24px !important;
  width: 52px !important;
  height: 52px !important;
  background: var(--card-bg) !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
}

.dark-mode-toggle:hover,
.back-to-top:hover,
.chat-bot-button:hover {
  transform: translateY(-3px) !important;
}

/* Chat box */
#chat-box {
  right: 24px !important;
  bottom: 24px !important;
  width: min(390px, calc(100vw - 32px)) !important;
  height: min(560px, calc(100svh - 48px)) !important;
  border-radius: var(--radius-lg) !important;
}

.chat-header,
.chat-input-container {
  background: var(--card-bg-solid) !important;
  border-color: var(--border-color) !important;
}

#chat-log {
  height: calc(100% - 136px) !important;
  background: transparent !important;
}

#chat-log p:nth-child(odd),
#chat-log p:nth-child(even) {
  background: var(--surface-soft) !important;
  color: var(--text-color) !important;
}

/* Footer */
footer {
  background: var(--header-bg) !important;
  border-top: 1px solid var(--border-color) !important;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .header-container {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--surface-soft) !important;
    border: 1px solid var(--border-color);
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    background-color: var(--text-color) !important;
  }

  .menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent !important;
  }

  .main-nav {
    position: fixed !important;
    inset: 72px 12px auto 12px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: calc(100svh - 88px) !important;
    overflow-y: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 14px !important;
    border-radius: 22px !important;
    background: var(--card-bg-solid) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .20) !important;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
    z-index: 1200 !important;
  }

  .main-nav[data-visible="true"] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    right: 12px !important;
  }

  .main-nav a {
    width: 100% !important;
    justify-content: flex-start !important;
    text-align: right !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
  }

  .main {
    padding-top: 96px !important;
  }

  .main-content {
    width: min(94vw, 560px) !important;
  }

  .services,
  #services .services,
  .book-online-container,
  .branch-list,
  .contact-info {
    grid-template-columns: 1fr !important;
  }

  .offer-slide {
    grid-template-columns: 1fr !important;
  }

  .offer-image {
    min-height: 220px !important;
  }

  .feature-item {
    font-size: .95rem !important;
  }

  .offer-features {
    grid-template-columns: 1fr !important;
  }

  .contact-form {
    padding: 22px !important;
  }

  .slideshow-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  .chat-bot-button {
    right: 16px !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
  }

  .dark-mode-toggle {
    right: 16px !important;
    bottom: 84px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .back-to-top {
    left: 16px !important;
    bottom: 18px !important;
    width: 48px !important;
    height: 48px !important;
  }

  #chat-box {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    height: min(520px, calc(100svh - 24px)) !important;
  }

  .inquiry-float-btn {
    top: auto !important;
    right: 14px !important;
    left: 14px !important;
    bottom: 146px !important;
    transform: none !important;
    justify-content: center !important;
    width: auto !important;
    padding: 9px 12px !important;
    border-radius: 16px !important;
    z-index: 997 !important;
  }

  .welcome-notification {
    top: 76px !important;
    right: 12px !important;
    left: 12px !important;
    max-width: none !important;
  }
}

@media (max-width: 420px) {
  section {
    padding-inline: 12px !important;
  }

  .main-content {
    padding: 22px 16px !important;
    border-radius: 22px !important;
  }

  .service-card,
  .book-online,
  .tourism,
  .contact-form,
  .branch {
    border-radius: 18px !important;
  }

  .logo {
    font-size: 1.45rem !important;
  }

  .chat-bot-tooltip {
    display: none !important;
  }
}

/* Light mode specific hard-coded cleanup */
html[data-theme="light"] .modal-overlay,
body[data-theme="light"] .modal-overlay,
html[data-theme="light"] .whatsapp-popup,
body[data-theme="light"] .whatsapp-popup {
  background-color: rgba(15, 23, 42, .32) !important;
}

html[data-theme="light"] .social-icons a,
body[data-theme="light"] .social-icons a,
html[data-theme="light"] footer p,
body[data-theme="light"] footer p,
html[data-theme="light"] .branch p,
body[data-theme="light"] .branch p,
html[data-theme="light"] .service-card p,
body[data-theme="light"] .service-card p,
html[data-theme="light"] .book-online a,
body[data-theme="light"] .book-online a {
  color: var(--text-secondary) !important;
}

html[data-theme="light"] .book-online a:hover,
body[data-theme="light"] .book-online a:hover,
html[data-theme="light"] .social-icons a:hover,
body[data-theme="light"] .social-icons a:hover {
  color: var(--secondary-color) !important;
}


/* ==========================================================
   BOT CTA + MOBILE SIZE + LIGHT HERO SOLID PATCH
   تطبيق شكل بوت واضح وفقاعة "اسأل البوت الذكي"
   وتصغير عناصر الجوال وإزالة شفافية واجهة البداية في الوضع الفاتح
   ========================================================== */

/* إزالة الشفافية من واجهة البداية عند الوضع الفاتح */
html[data-theme="light"] header,
body[data-theme="light"] header {
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}

html[data-theme="light"] .main,
body[data-theme="light"] .main {
  background:
    linear-gradient(135deg, #f7fafc 0%, #eef7f8 52%, #ffffff 100%) !important;
}

html[data-theme="light"] .main::before,
body[data-theme="light"] .main::before,
html[data-theme="light"] .main-content::before,
body[data-theme="light"] .main-content::before {
  display: none !important;
}

html[data-theme="light"] .main-content,
body[data-theme="light"] .main-content {
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: 1px solid rgba(15, 143, 150, 0.18) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10) !important;
}

html[data-theme="light"] .main h2,
body[data-theme="light"] .main h2,
html[data-theme="light"] .main h3,
body[data-theme="light"] .main h3 {
  text-shadow: none !important;
}

/* شكل البوت الجديد: واضح كأداة مساعدة ذكية */
.chat-bot-button {
  right: 24px !important;
  bottom: 26px !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  padding: 0 !important;
  border-radius: 22px !important;
  overflow: visible !important;
  border: 1px solid rgba(45, 212, 191, 0.55) !important;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.55), transparent 16px),
    linear-gradient(135deg, #5eead4 0%, #14b8a6 58%, #f6d36b 100%) !important;
  color: #061321 !important;
  box-shadow:
    0 16px 38px rgba(20, 184, 166, 0.30),
    0 0 0 8px rgba(45, 212, 191, 0.08) !important;
  animation: chatPulseSoft 3s ease-in-out infinite !important;
}

.chat-bot-button i {
  position: relative;
  z-index: 2;
  font-size: 1.65rem !important;
  line-height: 1;
}

.chat-bot-button::before {
  border-radius: 22px !important;
  opacity: 1 !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), transparent 55%) !important;
}

.chat-bot-button::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 26px;
  border: 1px solid rgba(45, 212, 191, 0.30);
  pointer-events: none;
}

.chat-bot-button:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow:
    0 20px 46px rgba(20, 184, 166, 0.40),
    0 0 0 10px rgba(45, 212, 191, 0.10) !important;
}

@keyframes chatPulseSoft {
  0%, 100% {
    box-shadow:
      0 16px 38px rgba(20, 184, 166, 0.28),
      0 0 0 7px rgba(45, 212, 191, 0.07);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(20, 184, 166, 0.40),
      0 0 0 12px rgba(45, 212, 191, 0.10);
  }
}

/* فقاعة الإشارة بجانب البوت */
.chat-bot-tooltip {
  position: absolute !important;
  right: calc(100% + 14px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: var(--card-bg-solid, #101f34) !important;
  color: var(--text-color, #eef6ff) !important;
  padding: 10px 16px !important;
  min-width: max-content !important;
  border-radius: 18px 18px 6px 18px !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  border: 1px solid rgba(45, 212, 191, 0.42) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 0 18px rgba(45, 212, 191, 0.13) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  pointer-events: none !important;
}

.chat-bot-tooltip::after {
  content: '' !important;
  position: absolute !important;
  left: 100% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border: 8px solid transparent !important;
  border-left-color: var(--card-bg-solid, #101f34) !important;
}

html[data-theme="light"] .chat-bot-tooltip,
body[data-theme="light"] .chat-bot-tooltip {
  background: #ffffff !important;
  color: #102033 !important;
  border-color: rgba(15, 143, 150, 0.30) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12) !important;
}

html[data-theme="light"] .chat-bot-tooltip::after,
body[data-theme="light"] .chat-bot-tooltip::after {
  border-left-color: #ffffff !important;
}

/* تحسين وتصغير الجوال حتى لا تظهر العناصر كبيرة */
@media (max-width: 768px) {
  body {
    font-size: 13px !important;
  }

  .header-container {
    min-height: 56px !important;
    padding: 7px 12px !important;
  }

  .logo {
    font-size: clamp(1.25rem, 6vw, 1.55rem) !important;
  }

  .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }

  .main-nav {
    inset: 62px 10px auto 10px !important;
    max-height: calc(100svh - 76px) !important;
    padding: 10px !important;
    border-radius: 18px !important;
  }

  .main-nav a {
    font-size: 0.92rem !important;
    padding: 9px 12px !important;
    min-height: 40px !important;
  }

  .main {
    min-height: 100svh !important;
    padding: 76px 12px 42px !important;
    margin-top: 0 !important;
  }

  .main-content {
    width: min(92vw, 430px) !important;
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .main h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .main span {
    font-size: clamp(0.88rem, 4.1vw, 1rem) !important;
    margin-bottom: 8px !important;
    line-height: 1.65 !important;
  }

  .main h3 {
    font-size: clamp(0.88rem, 3.7vw, 0.98rem) !important;
    line-height: 1.75 !important;
    margin-bottom: 14px !important;
  }

  .btn {
    padding: 8px 16px !important;
    font-size: 0.92rem !important;
  }

  section {
    padding: 40px 12px !important;
  }

  section h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
    margin-bottom: 22px !important;
  }

  section p {
    font-size: 0.92rem !important;
    line-height: 1.75 !important;
  }

  #services .services,
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .service-card {
    padding: 13px 10px 34px !important;
    border-radius: 15px !important;
  }

  .service-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
  }

  .service-card h3 {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    margin-bottom: 7px !important;
  }

  .service-card p {
    font-size: 0.76rem !important;
    line-height: 1.55 !important;
    margin-bottom: 6px !important;
  }

  .service-card-link::after {
    font-size: 0.68rem !important;
    padding: 6px 8px !important;
    bottom: 8px !important;
    max-width: calc(100% - 16px) !important;
    white-space: nowrap !important;
  }

  .book-online-container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .book-online {
    padding: 12px 6px !important;
    border-radius: 14px !important;
  }

  .book-online .service-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
  }

  .book-online h3,
  .book-online h3 a {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .tourism,
  .contact-form,
  .branch {
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  .tourism h1 {
    font-size: 1.35rem !important;
  }

  .image-slideshow {
    width: 94vw !important;
    height: clamp(180px, 54vw, 260px) !important;
  }

  .slideshow-arrow,
  .dark-mode-toggle,
  .back-to-top {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }

  .offers-slider {
    min-height: auto !important;
    border-radius: 15px !important;
  }

  .offer-image {
    min-height: 150px !important;
  }

  .offer-content {
    padding: 12px !important;
  }

  .offer-title {
    font-size: 1.12rem !important;
    line-height: 1.5 !important;
  }

  .offer-description {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
  }

  .offer-features {
    gap: 7px !important;
    margin: 9px 0 !important;
  }

  .feature-item {
    font-size: 0.76rem !important;
    padding: 5px 8px !important;
  }

  .offer-price {
    font-size: 1.05rem !important;
  }

  .offer-cta-btn {
    padding: 7px 10px !important;
    font-size: 0.78rem !important;
  }

  .welcome-notification {
    top: 64px !important;
    padding: 11px !important;
    border-radius: 14px !important;
  }

  .welcome-notification-title {
    font-size: 0.98rem !important;
  }

  .welcome-notification-text {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }

  .chat-bot-button {
    right: 10px !important;
    bottom: 48px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 16px !important;
  }

  .chat-bot-button i {
    font-size: 1.2rem !important;
  }

  .chat-bot-button::after {
    inset: -3px !important;
    border-radius: 18px !important;
  }

  .chat-bot-tooltip {
    right: calc(100% + 8px) !important;
    padding: 6px 9px !important;
    border-radius: 13px 13px 5px 13px !important;
    font-size: 0.72rem !important;
    max-width: 110px !important;
    min-width: 0 !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .chat-bot-tooltip::after {
    border-width: 6px !important;
  }

  .dark-mode-toggle {
    right: 10px !important;
    bottom: 108px !important;
  }

  .back-to-top {
    left: 10px !important;
    bottom: 48px !important;
  }

  #chat-box {
    left: 8px !important;
    right: 8px !important;
    bottom: 42px !important;
    width: auto !important;
    height: min(430px, calc(100svh - 56px)) !important;
    border-radius: 16px !important;
  }

  .chat-header {
    padding: 10px 12px !important;
  }

  .chat-header h3 {
    font-size: 0.95rem !important;
  }

  #chat-log {
    height: calc(100% - 116px) !important;
    padding: 10px !important;
  }

  #chat-log p {
    font-size: 0.82rem !important;
    padding: 7px 9px !important;
  }

  .chat-input-container {
    padding: 10px !important;
  }

  #chat-input {
    font-size: 0.84rem !important;
    padding: 8px 12px !important;
  }

  #chat-send {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 380px) {
  .main-content {
    width: 93vw !important;
    padding: 16px 12px !important;
  }

  #services .services,
  .services {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    max-width: 285px !important;
    margin-inline: auto !important;
  }

  .book-online-container {
    grid-template-columns: 1fr !important;
    max-width: 280px !important;
  }

  .chat-bot-tooltip {
    font-size: 0.68rem !important;
    max-width: 96px !important;
    padding: 5px 8px !important;
  }
}



/* ==========================================================
   FINAL PATCH: إظهار فقاعة البوت على الجوال + صورة الوضع الفاتح الأصلية
   ========================================================== */

/* الوضع الفاتح: إظهار صورة الهيرو الأصلية بدون غبششة أو طبقة لون */
html[data-theme="light"] .main,
body[data-theme="light"] .main {
  background: url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover !important;
  background-blend-mode: normal !important;
  filter: none !important;
}

html[data-theme="light"] .main::before,
body[data-theme="light"] .main::before {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}

html[data-theme="light"] .fog,
body[data-theme="light"] .fog {
  display: none !important;
  opacity: 0 !important;
}

html[data-theme="light"] .main-content,
body[data-theme="light"] .main-content {
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* إظهار نص: اسأل البوت الذكي دائمًا، حتى على شاشات الجوال */
.chat-bot-tooltip {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .chat-bot-button {
    right: 10px !important;
    bottom: 50px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 15px !important;
  }

  .chat-bot-button i {
    font-size: 1.12rem !important;
  }

  .chat-bot-tooltip {
    display: block !important;
    right: calc(100% + 7px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: max-content !important;
    max-width: 116px !important;
    min-width: 0 !important;
    padding: 6px 9px !important;
    border-radius: 12px 12px 5px 12px !important;
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-align: center !important;
    pointer-events: none !important;
  }

  .chat-bot-tooltip::after {
    display: block !important;
    border-width: 6px !important;
  }
}

@media (max-width: 380px) {
  .chat-bot-button {
    right: 8px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .chat-bot-tooltip {
    display: block !important;
    max-width: 94px !important;
    padding: 5px 7px !important;
    font-size: 0.66rem !important;
    line-height: 1.3 !important;
  }
}


/* ==========================================================
   OFFICE GALLERY
   صور مكاتب اليمامة — بطاقات طولية
   ========================================================== */
.office-gallery-section {
    position: relative;
    z-index: 2;
    padding: 90px 5%;
    overflow: hidden;
}

.office-gallery-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.office-gallery-heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
}

.office-gallery-heading h2 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.office-gallery-heading p {
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.9;
}

.office-slider-wrapper {
    position: relative;
    width: min(1350px, 100%);
    margin: 0 auto;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.office-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(17, 34, 64, 0.78);
    border: 1px solid rgba(100, 255, 218, 0.14);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 22px rgba(100, 255, 218, 0.12);
}

.office-card-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: rgba(10, 25, 47, 0.8);
}

.office-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 12, 27, 0.78), transparent 48%);
    pointer-events: none;
}

.office-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.office-card:hover .office-card-image img {
    transform: scale(1.06);
}

.office-card-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(10, 25, 47, 0.84);
    border: 1px solid rgba(100, 255, 218, 0.28);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
    font-weight: 700;
}

.office-card-badge i {
    color: var(--secondary-color);
}

.office-card-content {
    padding: 20px 18px 22px;
    text-align: right;
}

.office-card-content h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.office-card-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: right;
}

.office-slider-arrow,
.office-slider-dots,
.office-swipe-hint {
    display: none;
}

html[data-theme="light"] .office-card,
body[data-theme="light"] .office-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 143, 150, 0.16);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}


/* =========================================
   صور المكاتب - نسخة بطابع السفر والطيران
========================================= */

.travel-office-style {
    position: relative;
    z-index: 2;
    padding: 90px 5%;
    overflow: hidden;
}

.travel-office-style::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(100, 255, 218, 0.08), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05), transparent 18%);
    pointer-events: none;
}

.travel-office-style .office-gallery-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.travel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #dffcf7;
    background: linear-gradient(135deg, rgba(35, 215, 195, 0.18), rgba(255, 215, 0, 0.16));
    border: 1px solid rgba(100, 255, 218, 0.25);
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.travel-kicker i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.travel-office-style .office-gallery-heading h2 {
    margin-bottom: 14px;
    color: var(--text-color);
    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.35;
    position: relative;
}

.travel-office-style .office-gallery-heading h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 50px;
    background: linear-gradient(to left, var(--secondary-color), rgba(255, 215, 0, 0.8));
    box-shadow: 0 0 14px rgba(100, 255, 218, 0.2);
}

.travel-office-style .office-gallery-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-family: "Tajawal", sans-serif;
    font-size: 1.06rem;
    line-height: 1.95;
}

.travel-office-style .office-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.travel-office-style .office-card {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(13, 30, 56, 0.94), rgba(10, 23, 43, 0.98));
    border: 1px solid rgba(100, 255, 218, 0.16);
    border-radius: 22px;
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    position: relative;
}

.travel-office-style .office-card::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -38px;
    width: 110px;
    height: 2px;
    background: linear-gradient(to left, transparent, rgba(100, 255, 218, 0.55), transparent);
    transform: rotate(-28deg);
    opacity: 0.65;
    pointer-events: none;
}

.travel-office-style .office-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.36);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(100, 255, 218, 0.10);
}

.travel-office-style .office-card-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.travel-office-style .office-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(2, 12, 27, 0.82), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.travel-office-style .office-card-image::after {
    content: "\f072";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a192f;
    background: linear-gradient(135deg, var(--secondary-color), #ffe27a);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
}

.travel-office-style .office-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.travel-office-style .office-card:hover .office-card-image img {
    transform: scale(1.06);
}

.travel-office-style .office-card-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    color: #ffffff;
    background: rgba(6, 24, 46, 0.84);
    border: 1px solid rgba(100, 255, 218, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-family: "Tajawal", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.travel-office-style .office-card-badge i {
    color: var(--secondary-color);
}

.travel-office-style .office-card-content {
    padding: 20px 18px 24px;
    text-align: right;
}

.travel-office-style .office-card-content h3 {
    margin-bottom: 9px;
    color: #eaf9ff;
    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.5;
}

.travel-office-style .office-card-content p {
    margin: 0;
    color: #aebfd3;
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
}
/* ==================================================
   توحيد لون الفوتر العلوي مع شريط الحقوق والمبرمج
================================================== */

footer.site-footer-compact .compact-footer-main {
    background: rgba(5, 18, 35, 0.97) !important;
    border: 1px solid rgba(100, 255, 218, 0.18) !important;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

/* إزالة أي خلفية فاتحة من الحاوية الخارجية */
footer.site-footer-compact .compact-footer-inner {
    background: transparent !important;
}

/* جعل بطاقات الفروع متناسقة مع اللون الغامق */
footer.site-footer-compact .branch-chip {
    background: rgba(11, 29, 52, 0.88) !important;
    border-color: rgba(100, 255, 218, 0.17) !important;
    color: var(--text-secondary, #a8b2c8) !important;
}

footer.site-footer-compact .branch-chip:hover {
    background: rgba(18, 43, 70, 0.96) !important;
    border-color: rgba(100, 255, 218, 0.42) !important;
    color: var(--secondary-color, #64ffda) !important;
}

/* خلفية أيقونات التواصل */
footer.site-footer-compact .social-icons a {
    background: rgba(11, 29, 52, 0.88) !important;
    border: 1px solid rgba(100, 255, 218, 0.15) !important;
}

footer.site-footer-compact .social-icons a:hover {
    background: rgba(100, 255, 218, 0.14) !important;
    border-color: rgba(100, 255, 218, 0.42) !important;
}









/* ==================================================
   إصلاح الفوتر الداكن أثناء تشغيل الوضع الفاتح
================================================== */

html[data-theme="light"] footer.site-footer-compact,
html[data-theme="light"] footer.site-footer-compact .compact-footer-main,
html[data-theme="light"] footer.site-footer-compact .compact-footer-bottom,
body[data-theme="light"] footer.site-footer-compact,
body[data-theme="light"] footer.site-footer-compact .compact-footer-main,
body[data-theme="light"] footer.site-footer-compact .compact-footer-bottom {
    background: #051223 !important;
    color: #cbd5e1 !important;
}

/* عناوين تواصل معنا، مكاتبنا، تابعنا */
html[data-theme="light"] footer.site-footer-compact h3,
body[data-theme="light"] footer.site-footer-compact h3 {
    color: #20e0d0 !important;
}

/* البريد وبقية الروابط */
html[data-theme="light"] footer.site-footer-compact a,
html[data-theme="light"] footer.site-footer-compact span,
html[data-theme="light"] footer.site-footer-compact small,
body[data-theme="light"] footer.site-footer-compact a,
body[data-theme="light"] footer.site-footer-compact span,
body[data-theme="light"] footer.site-footer-compact small {
    color: #aebbd0 !important;
    opacity: 1 !important;
}

/* اسم المبرمج */
html[data-theme="light"] footer.site-footer-compact strong,
body[data-theme="light"] footer.site-footer-compact strong {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* رقم الهاتف وأيقونة الهاتف */
html[data-theme="light"] footer.site-footer-compact .compact-footer-bottom a,
html[data-theme="light"] footer.site-footer-compact .compact-footer-bottom a i,
body[data-theme="light"] footer.site-footer-compact .compact-footer-bottom a,
body[data-theme="light"] footer.site-footer-compact .compact-footer-bottom a i {
    color: #20e0d0 !important;
    opacity: 1 !important;
}

/* الفواصل | */
html[data-theme="light"] footer.site-footer-compact .compact-footer-separator,
body[data-theme="light"] footer.site-footer-compact .compact-footer-separator {
    color: rgba(255, 255, 255, 0.35) !important;
    opacity: 1 !important;
}

/* بطاقات الفروع */
html[data-theme="light"] footer.site-footer-compact .branch-chip,
body[data-theme="light"] footer.site-footer-compact .branch-chip {
    background: #0b1d34 !important;
    border-color: rgba(32, 224, 208, 0.25) !important;
    color: #b8c5d8 !important;
}

html[data-theme="light"] footer.site-footer-compact .branch-chip span,
html[data-theme="light"] footer.site-footer-compact .branch-chip small,
body[data-theme="light"] footer.site-footer-compact .branch-chip span,
body[data-theme="light"] footer.site-footer-compact .branch-chip small {
    color: #b8c5d8 !important;
}

/* أيقونات التواصل الاجتماعي */
html[data-theme="light"] footer.site-footer-compact .social-icons a,
body[data-theme="light"] footer.site-footer-compact .social-icons a {
    background: #0b1d34 !important;
    border-color: rgba(32, 224, 208, 0.22) !important;
    color: #9fb0c8 !important;
}

html[data-theme="light"] footer.site-footer-compact .social-icons a i,
body[data-theme="light"] footer.site-footer-compact .social-icons a i {
    color: #9fb0c8 !important;
}

/* أيقونة البريد والموقع */
html[data-theme="light"] footer.site-footer-compact .compact-contact i,
html[data-theme="light"] footer.site-footer-compact .branch-chip i,
body[data-theme="light"] footer.site-footer-compact .compact-contact i,
body[data-theme="light"] footer.site-footer-compact .branch-chip i {
    color: #20e0d0 !important;
}