:root {
            --primary-color: #0d52ad;
            --primary-dark: #003882;
            --primary-light: #5984b6;
            --secondary-color: #ff9900;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-text: #f8f9fa;
            --dark-text: #212529;
            --gray-bg: #f5f5f5;
            --white: #ffffff;
            --black: #000000;
            --transition: all 0.3s ease;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --section-padding: 5rem 0;
            --container-padding: 0 1.5rem;
        }

        /* Dark Mode Variables */
        .dark-mode {
            --text-color: #f0f0f0;
            --dark-text: #f8f9fa;
            --white: #121212;
            --gray-bg: #1e1e1e;
            --light-text: #e0e0e0;
            --black: #ffffff;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
            line-height: 1.6;
            direction: rtl;
            overflow-x: hidden;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        body::-webkit-scrollbar {
            display: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--container-padding);
        }

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

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        /* ===== Dark Mode Toggle ===== */
        .dark-mode-toggle {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: var(--box-shadow);
            z-index: 100;
            transition: var(--transition);
        }

        .dark-mode-toggle:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }

        .dark-mode-toggle .fa-sun {
            display: none;
        }

        .dark-mode .dark-mode-toggle .fa-moon {
            display: none;
        }

        .dark-mode .dark-mode-toggle .fa-sun {
            display: block;
        }

        /* ===== Accessibility ===== */
        .skip-link {
            position: absolute;
            top: -40px;
            right: 0;
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 16px;
            z-index: 100;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 0;
        }

        /* ===== Header Styles ===== */
        .main-header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .main-header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.98);
        }

        .dark-mode .main-header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark-mode .main-header.scrolled {
            background-color: rgba(30, 30, 30, 0.98);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }

        .logo img {
            height: 80px;
            width: 70px;
            margin-left: 10px;
            vertical-align: middle;
        }

        /* ===== Navigation ===== */
        .main-nav {
            position: relative;
        }

        .nav-list {
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .nav-item {
            margin-right: 1.5rem;
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            font-weight: 500;
            color: var(--dark-text);
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        .contact-item .nav-link {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .contact-item .nav-link:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ===== Hamburger Menu ===== */
        .hamburger {
            display: none;
            width: 30px;
            height: 24px;
            flex-direction: column;
            justify-content: space-between;
            background: transparent;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
            transform-origin: right center;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        /* ===== Hero Section ===== */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/MainImage.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            margin-top: 70px;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--light-text);
            max-width: 600px;
            padding: 2rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            display: block;
            color: var(--secondary-color);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
            text-align: center;
        }

        .cta-button i {
            margin-left: 8px;
            font-size: 1rem;
        }

        .primary-btn {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
        }

        .primary-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(106, 13, 173, 0.4);
        }

        .secondary-btn {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .secondary-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .hero-features {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1.5rem;
            background: rgba(13, 37, 173, 0.8);
            z-index: 1;
            flex-wrap: wrap;
        }

        .feature-box {
            display: flex;
            align-items: center;
            color: var(--light-text);
            gap: 0.8rem;
            padding: 0.5rem 0;
        }

        .feature-box i {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        /* ===== Gallery Section ===== */
        .gallery-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -0.8rem;
            right: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 3px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }

        .gallery-slider {
            width: 100%;
            height: 500px;
            padding: 1.5rem 0;
            perspective: 1200px;
        }

        .swiper-wrapper {
            display: flex;
            align-items: center;
        }

        .gallery-slide {
            width: 70%;
            height: 80%;
            transition: transform 0.5s ease;
            transform-style: preserve-3d;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallery-slide img {
            width: auto;
            max-width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background: none;
        }

        /* ===== Videos Section ===== */
        .videos-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .videos-slider {
            width: 100%;
            padding: 2rem 0;
        }

        .video-slide {
            width: 100%;
            max-width: 800px;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.5rem;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .swiper-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 0.3s ease;
            z-index: 2;
            border-radius: 15px;
        }

        .video-thumbnail.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 1.2rem 1rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 3;
            transform: translateY(10px);
        }

        .video-wrapper:hover .video-controls, .video-wrapper.controls-visible .video-controls {
            opacity: 1;
            transform: translateY(0);
        }

        .video-controls button {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #333;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .video-controls button:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            margin: 0 0.8rem;
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color), #ff6b6b);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
        }

        .time-display {
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            min-width: 90px;
            text-align: center;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            font-family: 'Tajawal', sans-serif;
        }

        /* Fullscreen styles */
        .video-wrapper.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 10000;
            border-radius: 0;
            transform: none !important;
        }

        .video-wrapper.fullscreen .swiper-video {
            border-radius: 0;
            object-fit: contain;
            background: #000;
        }

        .video-wrapper.fullscreen .video-controls {
            padding: 1.5rem 1.2rem 1.2rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
        }

        .video-wrapper.fullscreen .video-controls button {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .video-wrapper.fullscreen .progress-bar {
            height: 8px;
            margin: 0 1rem;
        }

        .video-wrapper.fullscreen .time-display {
            font-size: 1rem;
            min-width: 110px;
        }

        .video-wrapper.fullscreen .fullscreen-btn i {
            transform: rotate(180deg);
        }

        /* Loading state */
        .video-wrapper.loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 4;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Swiper navigation adjustments for videos */
        .videos-slider .swiper-button-next, .videos-slider .swiper-button-prev {
            background: var(--primary-color);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .videos-slider .swiper-button-next:hover, .videos-slider .swiper-button-prev:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        .videos-slider .swiper-pagination-bullet {
            background: var(--primary-light);
            opacity: 0.6;
            width: 10px;
            height: 10px;
            transition: all 0.3s ease;
        }

        .videos-slider .swiper-pagination-bullet-active {
            background: var(--primary-color);
            opacity: 1;
            transform: scale(1.2);
        }

        /* ===== Stats Section ===== */
        .stats-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .stat-card:hover .stat-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .stat-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-color);
            font-size: 1rem;
        }

        /* ===== About Section ===== */
        .about-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .about-image img {
            display: block;
            transition: var(--transition);
            width: 100%;
            height: auto;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-list {
            margin-top: 1.5rem;
        }

        .about-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .about-list i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* ===== Services Section ===== */
        .services-section {
            padding: var(--section-padding);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: rotate(15deg);
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .service-card p {
            margin-bottom: 1.5rem;
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 3px;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .service-link:hover::after {
            width: 100%;
            left: 0;
        }

        .service-link i {
            margin-right: 5px;
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(-5px);
        }

        /* ===== Delivery Section ===== */
        .delivery-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .delivery-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .delivery-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .delivery-image img {
            display: block;
            transition: var(--transition);
            width: 100%;
            height: auto;
        }

        .delivery-image:hover img {
            transform: scale(1.05);
        }

        .delivery-info {
            flex: 1;
        }

        .delivery-feature {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .delivery-feature:hover .feature-icon {
            transform: scale(1.1);
            background-color: var(--primary-color);
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .feature-text h3 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature-text p {
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .delivery-areas {
            background-color: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-dark);
            padding: 0.5rem 0.8rem;
            background: rgba(106, 13, 173, 0.05);
            border-radius: 5px;
            transition: var(--transition);
        }

        .area:hover {
            background: rgba(106, 13, 173, 0.1);
            transform: translateX(-5px);
        }

        .area i {
            color: var(--primary-color);
        }

        /* ===== Testimonials Section ===== */
        .testimonials-section {
            padding: var(--section-padding);
            background-color: var(--primary-color);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section .section-title, .testimonials-section .section-subtitle {
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .testimonials-slider {
            padding: 1.5rem 0 3rem;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 0 0.8rem;
            transition: var(--transition);
            height: auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(106, 13, 173, 0.1));
            z-index: -1;
        }

        .testimonial-content {
            position: relative;
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.8;
        }

        .quote-icon {
            color: var(--secondary-color);
            opacity: 0.5;
            font-size: 1.5rem;
            position: absolute;
        }

        .quote-icon:first-child {
            top: -10px;
            right: -10px;
        }

        .quote-icon:last-child {
            bottom: -10px;
            left: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-info h4 {
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .rating {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .swiper-pagination-bullet {
            background: var(--white);
            opacity: 0.5;
            width: 12px;
            height: 12px;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background: var(--secondary-color);
            opacity: 1;
            transform: scale(1.2);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .swiper-button-next::after, .swiper-button-prev::after {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .swiper-button-next:hover, .swiper-button-prev:hover {
            background-color: var(--secondary-color);
            color: var(--primary-dark);
        }

        /* ===== Location Section ===== */
        .location-section {
            padding: var(--section-padding);
        }

        .location-content {
            display: flex;
            gap: 3rem;
        }

        .location-info {
            flex: 1;
        }

        .info-card {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .info-card:hover .info-icon {
            transform: rotate(15deg);
            background-color: var(--primary-color);
        }

        .info-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .info-text h3 {
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
        }

        .info-text p, .info-text a {
            color: var(--text-color);
            transition: var(--transition);
        }

        .info-text a:hover {
            color: var(--primary-color);
        }

        .map-container {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== Contact Section ===== */
        .contact-section {
            padding: var(--section-padding);
            background-color: var(--gray-bg);
        }

        .contact-content {
            display: flex;
            gap: 3rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 1.2rem;
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }

        .contact-text h3 {
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
        }

        .contact-text p, .contact-text a {
            color: var(--text-color);
        }

        .contact-text a:hover {
            color: var(--primary-color);
        }

        .contact-social {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .contact-social h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* ===== Footer ===== */
        .main-footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 4rem 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-links h3, .footer-services h3, .footer-contact h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
            color: var(--white);
        }

        .footer-links h3::after, .footer-services h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links ul li, .footer-services ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links a, .footer-services a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.8;
            transition: var(--transition);
            color: var(--light-text);
        }

        .footer-links a:hover, .footer-services a:hover {
            opacity: 1;
            color: var(--secondary-color);
            transform: translateX(-5px);
        }

        .footer-links i, .footer-services i {
            color: var(--secondary-color);
            font-size: 0.8rem;
        }

        .footer-contact ul li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            opacity: 0.8;
            color: var(--light-text);
        }

        .footer-contact i {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom p {
            opacity: 0.7;
            color: var(--white);
        }

        /* ===== Back to Top Button ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* ===== Responsive Styles ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .gallery-slider {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .about-content, .delivery-content, .location-content, .contact-content {
                flex-direction: column;
            }
            .about-image, .delivery-image, .map-container, .contact-info {
                width: 100%;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .gallery-section, .videos-section, .about-section, .services-section, .delivery-section, .testimonials-section, .location-section, .contact-section {
                padding: 4rem 0;
            }
            .testimonial-card {
                padding: 1.5rem;
            }
            .gallery-slider {
                height: 350px;
            }
            .video-slide {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 1.5rem 1.5rem;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
            }
            .nav-list.active {
                right: 0;
            }
            .nav-item {
                margin: 0 0 1.5rem;
                width: 100%;
            }
            .nav-link {
                padding: 0.8rem 0;
                width: 100%;
                color: var(--dark-text);
            }
            .contact-item .nav-link {
                justify-content: center;
                width: auto;
                margin-top: 1.5rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .hero-features {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
                justify-content: flex-start;
                align-items: flex-start;
            }
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .footer-about {
                max-width: 100%;
            }
            .gallery-slider {
                height: 300px;
            }
            .video-slide {
                height: 300px;
            }
            .video-controls {
                padding: 1rem 0.8rem 0.8rem;
                gap: 0.5rem;
            }
            .video-controls button {
                width: 35px;
                height: 35px;
            }
            .time-display {
                font-size: 0.75rem;
                min-width: 75px;
            }
            .progress-bar {
                margin: 0 0.5rem;
            }
            .dark-mode-toggle {
                width: 45px;
                height: 45px;
                bottom: 80px;
                left: 20px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .testimonial-card {
                padding: 1.2rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 20px;
                left: 20px;
            }
            .gallery-slider {
                height: 250px;
            }
            .video-slide {
                height: 250px;
            }
            .video-controls {
                padding: 0.8rem 0.5rem 0.5rem;
                gap: 0.4rem;
            }
            .video-controls button {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .time-display {
                font-size: 0.7rem;
                min-width: 65px;
            }
            .progress-bar {
                height: 4px;
                margin: 0 0.4rem;
            }
        }

        /* Animation keyframes for mobile menu */
        @keyframes slideIn {
            from { right: -100%; opacity: 0; }
            to { right: 0; opacity: 1; }
        }

        @keyframes slideOut {
            from { right: 0; opacity: 1; }
            to { right: -100%; opacity: 0; }
        }