/* Custom Styles */
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Hero Background Animation */
        .hero-bg {
            background: linear-gradient(135deg, #020617 0%, #0F172A 50%, #1E293B 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }
        
        /* Floating Particles */
        .particle {
            position: absolute;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }
        
        /* Button Hover Effects */
        .btn-primary {
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline {
            border: 2px solid #D4AF37;
            color: #D4AF37;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: #D4AF37;
            color: #020617;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }
        
        /* Card Hover */
        .service-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .service-card:hover .icon-wrapper {
            background: linear-gradient(135deg, #D4AF37 0%, #dfc16062 100%);
            color: rgb(245, 244, 244);
        }
        
        /* Form Styling */
        .form-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: #D4AF37;
            background: rgba(255, 255, 255, 0.08);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        
        /* Testimonial Card */
        .testimonial-card {
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.9));
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        /* Metric Counter */
        .metric-value {
            background: linear-gradient(135deg, #D4AF37 0%, #F0E68C 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Navigation */
        .nav-scrolled {
            background: rgba(2, 6, 23, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #020617;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #D4AF37;
            border-radius: 4px;
        }
        
        /* Selection */
        ::selection {
            background: rgba(212, 175, 55, 0.3);
            color: rgb(238, 235, 235);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        /* Loading Animation */
        .loader {
            border: 3px solid rgba(212, 175, 55, 0.1);
            border-top: 3px solid #D4AF37;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Calendar Grid */
        .calendar-day {
            transition: all 0.2s ease;
        }
        
        .calendar-day:hover:not(.disabled):not(.selected) {
            background: rgba(212, 175, 55, 0.1);
            color: #D4AF37;
        }
        
        .calendar-day.selected {
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
            color: white;
            font-weight: 600;
        }
        
        .calendar-day.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        /* Time Slot */
        .time-slot {
            transition: all 0.2s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .time-slot:hover:not(.disabled) {
            border-color: #D4AF37;
            background: rgba(212, 175, 55, 0.1);
        }
        
        .time-slot.selected {
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
            border-color: #D4AF37;
            color: rgb(245, 241, 241);
        }
        
        .time-slot.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            text-decoration: line-through;
        }
        
        /* Progress Bar for Multi-step Form */
        .progress-step {
            transition: all 0.3s ease;
        }
        
        .progress-step.active {
            background: #D4AF37;
        }
        
        .progress-step.completed {
            background: #D4AF37;
        }
        
        /* Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }