        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        :root {
            --primary: #1a365d;
            --primary-light: #2c5282;
            --secondary: #c9a227;
            --accent: #e8b923;
            --dark: #0d1b2a;
            --light: #f7fafc;
            --gradient-1: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
            --gradient-2: linear-gradient(135deg, #c9a227 0%, #e8b923 100%);
            --gradient-3: linear-gradient(180deg, rgba(26, 54, 93, 0.95) 0%, rgba(13, 27, 42, 0.98) 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .preloader-logo {
            font-size: 3rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 30px;
            animation: pulse 1.5s infinite;
        }

        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(201, 162, 39, 0.3);
            border-top-color: var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 5%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }


        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--secondary);
            font-size: 2rem;
        }

        .logo span {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
		
		.logo-img {
			height: 50px;
			width: auto;
			transition: all 0.3s ease;
		}

		.navbar.scrolled .logo-img {
			height: 40px;
		}

		.logo-img:hover {
			transform: scale(1.05);
		}

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-2);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.6);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                var(--gradient-3),
                url('https://images.unsplash.com/photo-1513326738677-b964603b136d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 20px;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201, 162, 39, 0.2);
            border: 1px solid var(--secondary);
            color: var(--secondary);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero h1 span {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--gradient-2);
            color: var(--dark);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--dark);
            transform: translateY(-5px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
        }

        .hero-scroll i {
            font-size: 1.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(201, 162, 39, 0.1);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg);
            background: var(--gradient-2);
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            font-size: 0.95rem;
        }
		
		.service-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-media{
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.service-card:hover .service-media img{
  transform: scale(1.08);
}

/* لو عندك service-icon قديم، خليه ما يظهرش في الخدمات الجديدة */
.service-card .service-icon{
  display: none;
}


        /* Destinations Section */
        .destinations {
            background: white;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .destination-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            transform: translateY(30px);
            transition: transform 0.4s ease;
        }

        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }

        .destination-overlay h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .destination-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 15px;
        }

        .destination-price {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* Stats Section */
        .stats {
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
            background-size: 100px 100px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 10px;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Why Us Section */
        .why-us {
            background: var(--light);
        }

        .why-us-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-image {
            position: relative;
        }

        .why-us-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .why-us-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 20px;
            z-index: -1;
        }

        .why-us-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 25px;
            background: white;
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .feature-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .feature-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            background: white;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            text-align: center;
            padding: 40px;
			transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .testimonial-quote {
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.3rem;
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }

        .testimonial-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .testimonial-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .testimonial-stars {
            color: var(--secondary);
            margin-bottom: 20px;
        }
		
		/* Testimonial Navigation Arrows */
		.testimonial-nav {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background: var(--gradient-2);
			border: none;
			width: 45px;
			height: 45px;
			border-radius: 50%;
			color: var(--dark);
			font-size: 1.2rem;
			cursor: pointer;
			transition: all 0.3s ease;
			box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
			z-index: 10;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.testimonial-nav:hover {
			transform: translateY(-50%) scale(1.1);
			box-shadow: 0 8px 20px rgba(201, 162, 39, 0.5);
		}

		.testimonial-prev {
			right: -60px;
		}

		.testimonial-next {
			left: -60px;
		}

		/* Testimonial Dots */
		.testimonial-dots {
			display: flex;
			justify-content: center;
			gap: 10px;
			margin-top: 30px;
		}

		.testimonial-dot {
			width: 12px;
			height: 12px;
			border-radius: 50%;
			background: #ddd;
			border: none;
			cursor: pointer;
			transition: all 0.3s ease;
		}

		.testimonial-dot.active {
			background: var(--secondary);
			width: 30px;
			border-radius: 6px;
		}

		.testimonial-dot:hover {
			background: var(--accent);
		}
		
        /* CTA Section */
        .cta {
            background: var(--gradient-1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-primary {
            font-size: 1.2rem;
            padding: 18px 50px;
        }

        /* Contact Section */
        .contact {
            background: var(--light);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            padding: 40px;
            background: var(--gradient-1);
            border-radius: 20px;
            color: white;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .contact-info p {
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--secondary);
        }

        .contact-item span {
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
			flex-wrap: wrap;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .contact-form .btn {
            width: 100%;
            justify-content: center;
        }
		
		/* Map Section */
		.map-section {
			background: var(--light);
			padding: 100px 5%;
		}

		.map-container {
			display: grid;
			grid-template-columns: 1fr 1.5fr;
			gap: 0;
			max-width: 1400px;
			margin: 0 auto;
			border-radius: 20px;
			overflow: hidden;
			box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
		}

		.map-info {
			background: var(--gradient-1);
			padding: 60px 50px;
			display: flex;
			align-items: center;
		}

		.map-info-content {
			width: 100%;
		}

		.map-info h3 {
			font-size: 2rem;
			font-weight: 800;
			color: white;
			margin-bottom: 30px;
		}

		.map-details {
			display: flex;
			flex-direction: column;
			gap: 25px;
			margin-bottom: 40px;
		}

		.map-detail-item {
			display: flex;
			gap: 20px;
			align-items: flex-start;
		}

		.map-detail-item i {
			width: 50px;
			height: 50px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.3rem;
			color: var(--secondary);
			flex-shrink: 0;
		}

		.map-detail-item div {
			flex: 1;
			min-width: 0;
		}

		.map-detail-item h4 {
			font-size: 1.1rem;
			font-weight: 700;
			color: var(--secondary);
			margin-bottom: 5px;
		}

		.map-detail-item p {
			text-align: right;
			color: rgba(255, 255, 255, 0.9);
			font-size: 0.95rem;
			line-height: 1.6;
			margin: 0;
			word-wrap: break-word;
		}

		.map-embed {
			position: relative;
			height: 600px;
			background: #e2e8f0;
		}

		.map-embed iframe {
			width: 100%;
			height: 100%;
			display: block;
		}

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
			justify-content: center;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul a:hover {
            color: var(--secondary);
            padding-right: 10px;
        }

        .footer-bottom {
			direction: ltr;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
		.footer-bottom p {
		  letter-spacing: 0.2px;
		}

		.dev-link {
		  color: #1e90ff;
		  font-weight: 600;
		  text-decoration: none;
		  transition: all 0.3s ease;
		}

		.dev-link:hover {
		  opacity: 0.85;
		  text-decoration: underline;
		}



        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .why-us-content {
                grid-template-columns: 1fr;
            }

            .why-us-image {
                order: -1;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
			
			.testimonial-prev {
				right: -50px;
			}
			
			.testimonial-next {
				left: -50px;
			}
			
			.map-container {
				grid-template-columns: 1fr;
			}
			
			.map-embed {
				height: 450px;
				order: 2;
			}
			
			.map-info {
				padding: 50px 40px;
				order: 1;
			}
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
            }
            
            section {
                padding: 60px 5%;
            }

            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
                padding: 0 10px;
            }

            .destinations-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .destination-card {
                height: 350px;
                max-width: 100%;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .why-us-content {
                gap: 40px;
            }
            
            .feature-item {
                padding: 20px;
            }
			
			.testimonial-nav {
				width: 40px;
				height: 40px;
				font-size: 1rem;
			}
			
			.testimonial-prev {
				right: 10px;
			}
			
			.testimonial-next {
				left: 10px;
			}
			
			.testimonials-slider {
				padding: 0 50px;
			}
            
            .testimonial-text {
                font-size: 1.1rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .cta p {
                font-size: 1rem;
            }
            
            .contact-wrapper {
                gap: 30px;
            }
            
            .contact-info,
            .contact-form {
                padding: 30px 20px;
            }
			
			.map-section {
				padding: 60px 20px;
			}
			
			.map-container {
				border-radius: 15px;
			}
			
			.map-info {
				padding: 40px 25px;
			}
			
			.map-info h3 {
				font-size: 1.5rem;
				margin-bottom: 25px;
			}
			
			.map-embed {
				height: 350px;
			}
			
			.map-details {
				gap: 20px;
				margin-bottom: 30px;
			}
			
			.map-detail-item {
				gap: 12px;
			}
			
			.map-detail-item i {
				width: 40px;
				height: 40px;
				font-size: 1rem;
			}
			
			.map-detail-item h4 {
				font-size: 1rem;
			}
			
			.map-detail-item p {
				font-size: 0.85rem;
				display: contents;
			}

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
            }

            .social-links {
                justify-content: center;
            }

            .preloader-logo {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 1.7rem;
            }
            
            .destination-card {
                height: 300px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .cta h2 {
                font-size: 1.7rem;
            }
            
            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
			
			.map-section {
				padding: 50px 15px;
			}
			
			.map-info {
				padding: 30px 20px;
			}
			
			.map-info h3 {
				font-size: 1.3rem;
			}
			
			.map-embed {
				height: 300px;
			}
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--dark);
            padding: 100px 40px;
            transition: right 0.4s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu ul li {
            margin-bottom: 20px;
        }

        .mobile-menu ul a {
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-menu ul a:hover {
            color: var(--secondary);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
		
		

		.header-video {
			padding: 0 5% 80px;
			background: var(--light);
		}

		.video-wrapper {
			position: relative;
			width: 100%;
			max-width: 1400px;
			margin: -80px auto 0; /* يطلع شوية فوق ويدخل تحت الهيدر */
			border-radius: 25px;
			overflow: hidden;
			box-shadow: 0 30px 80px rgba(0,0,0,0.25);
		}

		.video-wrapper video {
			width: 100%;
			height: 520px;
			object-fit: cover;
			display: block;
		}

		/* Overlay */
		.video-overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(
				to bottom,
				rgba(0,0,0,0.15),
				rgba(0,0,0,0.55)
			);
		}

		/* Text over video */
		.video-content {
			position: absolute;
			bottom: 40px;
			right: 40px;
			color: white;
			max-width: 500px;
		}

		.video-content h2 {
			font-size: 2.4rem;
			font-weight: 800;
			margin-bottom: 10px;
		}

		.video-content p {
			font-size: 1.1rem;
			opacity: 0.9;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.video-wrapper video {
				height: 380px;
			}

			.video-content {
				right: 20px;
				bottom: 25px;
			}

			.video-content h2 {
				font-size: 1.8rem;
			}

			.video-content p {
				font-size: 1rem;
			}
		}

		@media (max-width: 480px) {
			.video-wrapper video {
				height: 300px;
			}

			.video-content h2 {
				font-size: 1.5rem;
			}
		}
		
/* ===== Google Translate visibility ===== */
.lang-desktop { display: inline-block; }
.lang-mobile { display: none; }

@media (max-width: 768px) {
  .lang-desktop { display: none !important; }
  .lang-mobile { display: inline-block !important; }
  .mobile-lang { padding: 12px 16px; text-align: center; }
}

/* Clean Google Translate look */
.goog-te-gadget {
  font-family: 'Cairo', sans-serif !important;
  font-size: 13px !important;
}
.goog-logo-link,
.goog-te-banner-frame {
  display: none !important;
}
body { top: 0 !important; }



