* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch; /* Add this for momentum scrolling on iOS */
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 50px;
            width: auto;
            object-fit: contain;
            mix-blend-mode: lighten;
            filter: drop-shadow(0 2px 8px rgba(10, 132, 255, 0.3));
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #0A84FF;
        }

        .cta-button {
            background: var(--primary-red);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #0040DD;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--light-text) 0%, #0A84FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--gray-text);
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #0A84FF;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 2px solid #0A84FF;
        }

        .btn-primary:hover {
            background: transparent;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(10, 132, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 2px solid var(--light-text);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: var(--dark-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.4s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(227, 24, 55, 0.1), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #0A84FF;
            box-shadow: 0 20px 50px rgba(10, 132, 255, 0.2);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #0A84FF;
        }

        .service-card p {
            color: var(--gray-text);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--gray-text);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li::before {
            content: '✓';
            color: #0A84FF;
            font-weight: bold;
            margin-right: 0.75rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 5rem 2rem;
            background: var(--darker-bg);
        }

        .pricing-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.4s;
            text-align: center;
        }

        .pricing-card.featured {
            border: 2px solid #0A84FF;
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(10, 132, 255, 0.3);
        }

        .pricing-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .pricing-card .price {
            font-size: 3rem;
            color: #0A84FF;
            font-weight: 800;
            margin: 1.5rem 0;
        }

        .pricing-card .price span {
            font-size: 1.2rem;
            color: var(--gray-text);
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--gray-text);
        }

        .pricing-features li::before {
            content: '✓';
            color: #0A84FF;
            font-weight: bold;
            margin-right: 1rem;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 5rem 2rem;
            background: var(--dark-bg);
        }

        .portfolio-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            height: 350px;
            background: var(--card-bg);
        }

        .portfolio-item:nth-child(1) {
            background: url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item:nth-child(2) {
            background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item:nth-child(3) {
            background: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item:nth-child(4) {
            background: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item:nth-child(5) {
            background: url('https://images.unsplash.com/photo-1496284427489-f59461d8a8e6?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item:nth-child(6) {
            background: url('https://images.unsplash.com/photo-1537633552985-df8429e8048b?w=600&h=400&fit=crop') center/cover;
        }

        .portfolio-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-item:hover::after {
            opacity: 1;
        }

        .portfolio-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s;
            z-index: 2;
        }

        .portfolio-item:hover .portfolio-info {
            transform: translateY(0);
        }

        .portfolio-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-info p {
            color: var(--gray-text);
        }

        /* E-commerce Section */
        .ecommerce {
            padding: 5rem 2rem;
            background: var(--darker-bg);
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(10, 132, 255, 0.2);
        }

        .product-image {
            width: 100%;
            height: 250px;
            background: var(--dark-bg);
            object-fit: cover;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .product-info p {
            color: var(--gray-text);
            margin-bottom: 1rem;
        }

        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price span {
            font-size: 1.5rem;
            color: #0A84FF;
            font-weight: 700;
        }

        /* Booking Section */
        .booking {
            padding: 5rem 2rem;
            background: var(--dark-bg);
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--light-text);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--light-text);
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0A84FF;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #0A84FF;
        }

        .footer-section p,
        .footer-section a {
            color: var(--gray-text);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: #0A84FF;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #0A84FF;
            border-color: #0A84FF;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--gray-text);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .services-grid,
            .pricing-grid,
            .portfolio-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Success Message */
        .success-message {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            display: none;
        }

        .success-message.show {
            display: block;
        }
        body {
            background-color: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }
        
        .glass-nav {
            background: rgba(17, 17, 22, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .text-gradient {
            background: linear-gradient(to right, #ffffff, #999999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .text-gradient-gold {
            background: linear-gradient(to right, #D4AF37, #FEE581, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 4s linear infinite;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-hover:hover {
            transform: translateY(-10px);
            border-color: #0A84FF;
            box-shadow: 0 20px 40px -15px rgba(10, 132, 255, 0.2);
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(10, 132, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }

        .royal-pattern {
            background-color: #000000;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
                url('https://www.transparenttextures.com/patterns/cubes.png');
        }
        
        .wedding-card-bg {
             background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,1) 100%);
        }

        .gold-border-gradient {
            position: relative;
            background: #121212;
            padding: 1px;
            border-radius: 1.5rem;
        }
        .gold-border-gradient::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 1.5rem;
            padding: 1px;
            background: linear-gradient(45deg, transparent, #D4AF37, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.5;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #000000; 
        }
        ::-webkit-scrollbar-thumb {
            background: #333; 
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0A84FF; 
        }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .fade-text {
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }
        .fade-text.hidden-text {
            opacity: 0;
        }

        /* --- DRONE 3D CSS --- */
        .drone-animate {
            animation: drone-fly-in 1.5s ease-out forwards, 
                        droneHover 3s ease-in-out 1.5s infinite alternate;
        }
        
        .drone-wrapper { opacity: 0; }

        @keyframes droneFlyIn {
            0% { opacity: 0; transform: translate(400px, -150px) scale(0.6); }
            100% { opacity: 1; transform: translate(0, 0) scale(1); }
        }

        @keyframes droneHover {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-15px); }
        }

        @keyframes propellerSpin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes blinkBlue {
            0%, 100% { opacity: 1; box-shadow: 0 0 15px #3B82F6; }
            50% { opacity: 0.3; box-shadow: none; }
        }

        @keyframes beamScan {
            0% { transform: translateX(-50%) rotate(55deg); opacity: 0.4; }
            100% { transform: translateX(-50%) rotate(105deg); opacity: 0.8; }
        }

        .drone-container {
            position: relative;
            width: 280px;
            height: 140px;
            perspective: 1000px;
            transform-style: preserve-3d;
        }
        
        .drone-body {
            width: 140px;
            height: 35px;
            background: linear-gradient(180deg, #2a2a2a, #000000);
            border-radius: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 15px 35px rgba(0,0,0,0.8), inset 0 2px 5px rgba(255,255,255,0.1);
            z-index: 20;
            border: 1px solid #333;
        }
        
        .drone-body::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: radial-gradient(circle at 30% 30%, #444, #000);
            border-radius: 50%;
            border: 2px solid #222;
            box-shadow: 0 5px 10px rgba(0,0,0,0.5);
        }

        .drone-arm {
            position: absolute;
            width: 140px;
            height: 10px;
            background: linear-gradient(90deg, #333, #111);
            top: 50%;
            left: 50%;
            z-index: 10;
            border-radius: 5px;
        }
        .arm-1 { transform: translate(-50%, -50%) rotate(45deg); }
        .arm-2 { transform: translate(-50%, -50%) rotate(-45deg); }
        
        .drone-motor {
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: 5;
        }
        
        .propeller-blade {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 50%);
            border-radius: 50%;
            animation: propellerSpin 0.08s linear infinite;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .motor-fl { top: -50px; left: -50px; }
        .motor-fr { top: -50px; right: -50px; }
        .motor-bl { bottom: -50px; left: -50px; }
        .motor-br { bottom: -50px; right: -50px; }

        .drone-light {
            position: absolute;
            top: 50%;
            left: 10px; 
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: #3B82F6;
            border-radius: 50%;
            animation: blinkBlue 0.5s infinite;
            box-shadow: 0 0 15px #3B82F6;
            z-index: 30;
        }

        .drone-light::after {
            content: '';
            position: absolute;
            top: 0px;
            left: 50%;
            transform-origin: top center;
            width: 80px;
            height: 250px;
            background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            filter: blur(8px);
            pointer-events: none;
            z-index: -1;
            animation: beamScan 2s ease-in-out infinite alternate;
        }