 :root {
            --primary: #d4af37;
            --secondary: #9c27b0;
            --accent: #F9D648;
            --light: #FFF9FC;
            --dark: #333333;
            --text: #444444;
            --background: var(--light);
            --foreground: var(--dark);
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --radius: 12px;
            --max-width: 1200px;
            --nav-height: 80px;
            --section-spacing: 5rem;
        }

        .dark-mode {
            --background: #222222;
            --foreground: #F0F0F0;
            --text: #E0E0E0;
            --shadow: 0 4px 12px rgba(0,0,0,0.3);
            --light: #2a2a2a;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            transition: var(--transition);
            padding-top: var(--nav-height);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        p {
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 2rem 0;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }

        .btn-secondary {
            background: var(--secondary);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--dark);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        /* Header and Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--background);
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            height: 60px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }

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

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

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--foreground);
        }

        .mode-toggle {
            background: none;
            border: none;
            color: var(--foreground);
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 1.5rem;
            transition: var(--transition);
        }

        .mode-toggle:hover {
            color: var(--primary);
        }

        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.4);
            color: white;
            text-align: center;
            padding: 2rem;
        }
        
        .video-overlay h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .video-overlay p {
            font-size: 1.2rem;
            max-width: 600px;
            color: white;
        }
        
        .video-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        
        /* Services Content */
        .services-content {
            padding: 2rem 0;
        }
        
        .section-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }
        
        /* Package Highlights */
        .package-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .highlight-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .highlight-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--foreground);
        }
        
        /* Package Comparison */
        .package-comparison {
            margin-bottom: 4rem;
            overflow-x: auto;
        }
        
        .package-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--light);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .package-table th, .package-table td {
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .package-table thead {
            background-color: var(--primary);
            color: white;
        }
        
        .package-table th {
            padding: 1.5rem;
            font-weight: 600;
        }
        
        .package-name {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .popular {
            position: relative;
            background-color: var(--accent);
            color: var(--dark);
        }
        
        .feature {
            text-align: left;
            font-weight: 600;
            color: var(--foreground);
            width: 25%;
        }
        
        .feature-details {
            display: block;
            font-weight: normal;
            font-size: 0.85rem;
            color: var(--text);
            margin-top: 5px;
        }
        
        .package-table .fas.fa-check {
            color: #4caf50;
            font-size: 1.2rem;
        }
        
        .package-table .fas.fa-times {
            color: #f44336;
            font-size: 1.2rem;
        }
        
        .price {
            font-weight: bold;
            font-size: 1.3rem;
            color: var(--foreground);
        }
        
        .price-note {
            display: block;
            font-weight: normal;
            font-size: 0.8rem;
            color: var(--text);
            margin-top: 5px;
        }
        
        /* Additional Info */
        .additional-info {
            text-align: center;
            padding: 3rem;
            background: var(--light);
            border-radius: var(--radius);
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
        }
        
        .info-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--foreground);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--primary);
            padding: 3rem 0;
            margin-top: 4rem;
            width: 100%;
        }

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

        .footer-section h3, p {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .design a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .design a:hover {
            color: var(--primary);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .package-table {
                font-size: 0.9rem;
            }
            
            .feature {
                width: 30%;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: var(--nav-height);
                left: -100%;
                width: 100%;
                height: calc(100vh - var(--nav-height));
                background: var(--background);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 1.5rem 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .video-container {
                height: 400px;
            }
            
            .video-overlay h2 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .package-table {
                font-size: 0.8rem;
            }
            
            .feature {
                width: 35%;
            }
        }
        
        @media (max-width: 576px) {
            .video-container {
                height: 300px;
            }
            
            .video-overlay h2 {
                font-size: 1.8rem;
            }
            
            .video-overlay p {
                font-size: 1rem;
            }
            
            .package-table th, 
            .package-table td {
                padding: 0.8rem 0.5rem;
            }
            
            .feature {
                width: 40%;
            }
            
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .additional-info {
                padding: 2rem 1rem;
            }
        }