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

        :root {
            --primary: #c9a36a;
            --dark: #0a0a0a;
            --light: #fefefe;
            --gray: #6b7280;
            --bg-dark: #0f0f0f;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--light);
            overflow-x: hidden;
            transition: background 0.5s, color 0.5s;
        }

        body.dark {
            background: var(--dark);
            color: var(--light);
        }
               /* ============================================
           SCROLL PROGRESS BAR
           ============================================ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 9997;
            transform-origin: left;
            transform: scaleX(0);
            box-shadow: 0 0 20px var(--primary);
        }

        /* ============================================
           FLOATING PARTICLES BACKGROUND
           ============================================ */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.15;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
        }
        
        
                /* ============================================
           ENHANCED LOADER WITH 3D ZOOM EXPLOSION
           ============================================ */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            perspective: 1500px;
        }

        .loader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loaderimg {
            height: 250px;
            width: 250px;
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.2) translateZ(-800px) rotateY(-180deg);
            transform-style: preserve-3d;
        }

        .loaderimg.logo-animate {
            animation: logoZoomExplode 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes logoZoomExplode {
            0% {
                opacity: 0;
                transform: scale(0.2) translateZ(-800px) rotateY(-180deg);
                filter: blur(20px) brightness(0.5);
            }
            30% {
                opacity: 1;
                transform: scale(1) translateZ(0px) rotateY(0deg);
                filter: blur(0px) brightness(1);
            }
            60% {
                opacity: 1;
                transform: scale(1.2) translateZ(100px) rotateY(10deg);
                filter: blur(0px) brightness(1.2);
            }
            100% {
                opacity: 0;
                transform: scale(12) translateZ(800px) rotateY(30deg);
                filter: blur(40px) brightness(2);
            }
        }

        .loaderimg img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            box-shadow: 0 0 80px rgba(201, 163, 106, 0.8), 
                        0 0 120px rgba(201, 163, 106, 0.5);
        }

        .loader-logo {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 2rem;
            animation: textPulseGlow 2s ease-in-out infinite;
        }

        @keyframes textPulseGlow {
            0%, 100% { 
                opacity: 0.6; 
                text-shadow: 0 0 20px rgba(201, 163, 106, 0.5);
            }
            50% { 
                opacity: 1; 
                text-shadow: 0 0 40px rgba(201, 163, 106, 1);
            }
        }

        .loader-bar {
            width: 350px;
            height: 3px;
            background: rgba(201, 163, 106, 0.2);
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .loader-progress {
            position: absolute;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary), #f5d98f, var(--primary));
            background-size: 200% 100%;
            animation: loadProgress 2s ease forwards, shimmer 1.5s ease infinite;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--primary);
        }

        @keyframes loadProgress {
            to { width: 100%; }
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }



        /* ============================================
           3D CAMERA TRANSITION EFFECT
           ============================================ */
        .camera-transition {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            perspective: 3000px;
        }

        .camera-transition.show {
            animation: camera3DShow 3.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes camera3DShow {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.2) rotateX(90deg) rotateY(90deg) rotateZ(-180deg);
            }
            25% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(2) rotateX(0deg) rotateY(360deg) rotateZ(0deg);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.8) rotateX(20deg) rotateY(380deg) rotateZ(10deg);
            }
            75% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(2.5) rotateX(-10deg) rotateY(400deg) rotateZ(-5deg);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.1) rotateX(-90deg) rotateY(450deg) rotateZ(-20deg);
            }
        }

        .camera-icon {
            font-size: 18rem;
            color: var(--primary);
            filter: drop-shadow(0 0 100px rgba(201, 163, 106, 1));
            animation: cameraFloat 2.5s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes cameraFloat {
            0%, 100% {
                transform: translateY(0px) rotateZ(0deg) scale(1);
            }
            50% {
                transform: translateY(-40px) rotateZ(5deg) scale(1.05);
            }
        }

        /* ============================================
           NAVIGATION WITH GLASSMORPHISM
           ============================================ */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 5%;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: transparent;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px) saturate(180%);
            padding: 1rem 5%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        body.dark nav.scrolled {
            background: rgba(10, 10, 10, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(201, 163, 106, 0.5));
            transition: transform 0.3s, filter 0.3s;
        }

        .logo:hover .logo-img {
            transform: rotate(180deg);
            filter: drop-shadow(0 0 20px rgba(201, 163, 106, 0.8));
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: inherit;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

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

        .theme-toggle {
            background: rgba(201, 163, 106, 0.1);
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            transform: rotate(180deg) scale(1.1);
            background: var(--primary);
            color: var(--light);
            box-shadow: 0 0 30px var(--primary);
        }

        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: inherit;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* ============================================
           HERO SECTION - ULTIMATE 3D DESIGN
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            perspective: 2000px;
            padding: 8rem 5% 4rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(201, 163, 106, 0.1), transparent 70%),
                        radial-gradient(circle at 70% 50%, rgba(45, 88, 69, 0.1), transparent 70%);
            animation: bgShift 20s ease-in-out infinite;
        }

        @keyframes bgShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Floating Botanical Elements */
        .floating-leaf {
            position: absolute;
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
        }

        .floating-leaf-1 {
            width: 150px;
            top: 10%;
            left: 5%;
            animation: floatLeaf 20s ease-in-out infinite;
        }

        .floating-leaf-2 {
            width: 120px;
            top: 60%;
            right: 8%;
            animation: floatLeaf 25s ease-in-out infinite reverse;
        }

        .floating-leaf-3 {
            width: 100px;
            bottom: 15%;
            left: 15%;
            animation: floatLeaf 18s ease-in-out infinite;
        }

        @keyframes floatLeaf {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(10deg) scale(1.05);
            }
            50% {
                transform: translateY(-50px) rotate(-5deg) scale(0.95);
            }
            75% {
                transform: translateY(-30px) rotate(8deg) scale(1.02);
            }
        }

        /* 3D Rotating Camera */
        .hero-camera-3d {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%) rotateY(20deg) rotateX(10deg);
            font-size: 28rem;
            color: var(--primary);
            opacity: 0.12;
            z-index: 1;
            transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
            filter: drop-shadow(0 0 120px rgba(201, 163, 106, 0.4));
            animation: heroCamera3D 8s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .hero-camera-3d.scrolled {
            transform: translateY(-50%) scale(0.25) rotateY(0deg) translateX(200px);
            opacity: 0.06;
        }

        @keyframes heroCamera3D {
            0%, 100% {
                transform: translateY(-50%) rotateY(20deg) rotateX(10deg) rotateZ(0deg);
            }
            25% {
                transform: translateY(-55%) rotateY(25deg) rotateX(-5deg) rotateZ(5deg);
            }
            50% {
                transform: translateY(-50%) rotateY(30deg) rotateX(15deg) rotateZ(-5deg);
            }
            75% {
                transform: translateY(-45%) rotateY(15deg) rotateX(5deg) rotateZ(3deg);
            }
        }

        /* Hero Content with 3D Transform */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin-right: auto;
            opacity: 0;
            transform: translate3d(-100px, 60px, -200px) rotateY(-15deg);
            animation: heroContent3D 1.5s cubic-bezier(0.16, 1, 0.3, 1) 7s forwards;
            transform-style: preserve-3d;
        }

        @keyframes heroContent3D {
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0) rotateY(0deg);
            }
        }

        .hero-subtitle {
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 2rem;
            font-weight: 600;
            opacity: 0;
            animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 7.2s forwards;
            text-shadow: 0 0 30px rgba(201, 163, 106, 0.3);
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(3.5rem, 9vw, 8rem);
            font-weight: 800;
            letter-spacing: -4px;
            line-height: 1;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 7.4s forwards;
        }

        .hero h1 .highlight {
            display: block;
            margin-top: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-shadow: 0 5px 15px rgba(201, 163, 106, 0.3);
        }

        .hero-description {
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 650px;
            margin-bottom: 3rem;
            line-height: 1.9;
            opacity: 0;
            animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 7.6s forwards;
        }

        .hero-cta-group {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeSlideUpBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1) 7.8s forwards;
        }

        @keyframes fadeSlideUpBounce {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            70% {
                opacity: 1;
                transform: translateY(-15px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3.5rem;
            background: var(--dark);
            color: var(--light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        body.dark .hero-cta {
            background: var(--light);
            color: var(--dark);
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }

        .hero-cta:hover::before {
            transform: translateX(0);
        }

        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(201, 163, 106, 0.4);
            color: var(--light);
        }

        .hero-cta-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-left: 10px;
        }

        .hero-cta-secondary::before {
            background: var(--primary);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            opacity: 0;
            animation: fadeFloat 2s ease 8s forwards, floatUpDown 3s ease 9s infinite;
            z-index: 2;
        }

        @keyframes fadeFloat {
            to { opacity: 1; }
        }

        @keyframes floatUpDown {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-15px);
            }
        }

        .scroll-indicator span {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray);
            font-weight: 600;
        }

        .scroll-indicator i {
            font-size: 1.8rem;
            color: var(--primary);
            animation: bounce 2s ease infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(10px);
            }
        }



       
        /* ============================================
           SECTIONS
           ============================================ */
        section {
            padding: 10rem 5%;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-label {
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
            display: inline-block;
            padding: 0.5rem 2rem;
            background: rgba(201, 163, 106, 0.1);
            border-radius: 50px;
        }

        .section-header h2 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            letter-spacing: -3px;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark .section-header h2 {
            background: linear-gradient(135deg, var(--light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.9;
        }

        /* ============================================
           PORTFOLIO - SCROLL-BASED ZOOM & FADE
           ============================================ */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 5rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid rgba(201, 163, 106, 0.3);
            color: inherit;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-transform: uppercase;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #c9a36a, #8b7355);
            border-color: transparent;
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 163, 106, 0.3);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            
        }

        /* SCROLL-BASED ZOOM ANIMATION */
        .portfolio-item {
            position: relative;
            height: 550px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.7) translateY(100px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        .portfolio-item.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        .hello {
            height: 550px;
        }
        .portfolio-item:last-child {
            grid-column: 1 / -1;
        }
        .portfolio-item-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            overflow: hidden;
            background: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .portfolio-item:hover .portfolio-item-img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 3rem;
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-category {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--primary);
            color: var(--light);
            border-radius: 25px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 1.5rem;
            width: fit-content;
        }

        .portfolio-title {
            font-size: 2rem;
            color: var(--light);
            font-weight: 700;
            margin-bottom: 0.8rem;
            letter-spacing: -1px;
        }

        .portfolio-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image {
            height: 800px;
            width: 650px;
            background-image: url('Sundaram.jpg');
            background-size: cover;
            backdrop-filter: blur(20px);
            box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-50px);
            scale: 0.4;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-image.visible {
            opacity: 1;
            scale: 1;
            transform: translateX(0);
        }

        .about-content {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-content h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .about-content h3 span {
            color: var(--primary);
            font-weight: 800;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

       
        /* Booking Form */
        .contact-form-wrapper{
            margin-top: 35px;
            max-width: 900px;
            color: white;
            border-radius: 50px;
            box-shadow: 0 0 60px rgba(0, 0, 0, .3);
            overflow: hidden;
            background: linear-gradient(90deg, #54880e, #f2f2f2);
            padding: 2rem;
            opacity: 0;
            transform: translateY(50px);
            scale: 0.5;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .booking-wrapper{
            max-width: 900px;
            margin: 0 auto;
            color: white;
            border-radius: 50px;
            box-shadow: 0 0 60px rgba(0, 0, 0, .3);
            overflow: hidden;
            background: linear-gradient(90deg, #54880e, #f2f2f2);
            padding: 4rem;
            opacity: 0;
            transform: translateY(50px);
            scale: 0.5;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .booking-wrapper.visible,
        .contact-form-wrapper.visible{
            scale: 1;
            transform: translateY(0px);
        }
        body.dark .booking-wrapper,
        body.dark .contact-form-wrapper{
            background: rgba(201, 163, 106, 0.05);
        }

        .booking-wrapper.visible,
        .contact-form-wrapper.visible{
            opacity: 1;
            transform: translateY(0);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-field,
        .form-fiel{
            display: flex;
            flex-direction: column;
            width: 40%;
        }
        
        .form-field label,
        .form-fiel label{
            margin-bottom: 0.8rem;
            margin-left: 1rem;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: 0.5px;
        }

        .form-field input,
        .form-fiel input,
        .form-fiel textarea,
        .form-field select,
        .form-field textarea {
            padding: 1.2rem;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1rem;
            background: none;
            color: white;
            transition: all 0.3s;
            font-family: inherit;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .form-field input.visible,
        .form-fiel input.visible{
            opacity: 1;
            transform: translateX(0);
        }
        .form-field select{
            padding: 1.2rem;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1rem;
            background: none;
            color: white;
            transition: all 0.3s;
            font-family: inherit;
            transform: translateX(-50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 1;
            transform: translateX(0);
        }
        .form-field textarea.visible,
        .form-fiel textarea.visible{
            opacity: 1;
            transform: translateX(0);
        }

        body.dark .form-field input,
        body.dark .form-fiel input,
        body.dark .form-fiel textarea,
        body.dark .form-field select,
        body.dark .form-field textarea {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .form-field input:focus,
        .form-fiel input:focus,
        .form-fiel textarea:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: white;
            box-shadow: 0 0 0 3px rgba(201, 163, 106, 0.1);
        }

        .form-field textarea {
            min-height: 150px;
            resize: vertical;
        }
        .booking-wrapper img,
        .contact-form-wrapper img{
            position: absolute;
            right: -10px;
            bottom: -150px;
            width: 60%;
            transform: rotate(260deg);
        }
        .booking-wrapper .text-right{
            position: absolute;
            top: 90px;
            right: 120px;
            color: #f2f2f2;
            text-shadow: 0 0 20px rgba(0, 0, 0, .3);
            font-size: 50px;
            user-select: none;
            font-family: 'Parisienne', cursive;
            transform: translateX(50px);
            scale: 0.3;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .contact-form-wrapper .text-right {
            position: absolute;
            top: 90px;
            right: 120px;
            color: #f2f2f2;
            text-shadow: 0 0 20px rgba(0, 0, 0, .3);
            font-size: 50px;
            user-select: none;
            font-family: 'Parisienne', cursive;
            transform: translateX(50px);
            scale: 0.3;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .contact-form-wrapper .text-right.visible {
            opacity: 1;
            scale: 1;
            transform: translateX(0);
        }

        .booking-wrapper .text-right.visible{
            opacity: 1;
            scale: 1;
            transform: translateX(0);
        }
        .booking-wrapper .text-left {
            position: absolute;
            top: 180px;
            right: 170px;
            color: #f2f2f2;
            text-shadow: 0 0 20px rgba(0, 0, 0, .3);
            font-size: 50px;
            user-select: none;
            font-family: 'Parisienne', cursive;
            transform: translateX(50px);
            scale: 0.3;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .booking-wrapper .text-left.visible {
            opacity: 1;
            scale: 1;
            transform: translateX(0);
        }
        
        .wrapper .text-left::before {
            content: 'Back';
            position: absolute;
            top: 60px;
            right: -10px;
            
        }
        
        
        .submit-btn {
            width: 40%;
            padding: 1.3rem;
            background: white;
            color: #54880e;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            margin-top: 1rem;
        }

        body.dark .submit-btn {
            background: var(--light);
            color: var(--dark);
        }

        .submit-btn:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(201, 163, 106, 0.3);
        }

        body.dark .submit-btn:hover {
            background: white;
            color: #54880e;
        }

        .success-message {
            display: none;
            background: #10b981;
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            text-align: center;
            animation: slideUp 0.5s;
            width: 40%;
        }

        .success-message.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* ============================================
           3D ROTATING STATS
           ============================================ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .stat-box {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(201, 163, 106, 0.05);
            border-radius: 15px;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: rotateX(90deg) translateY(50px);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .stat-box.visible {
            opacity: 1;
            transform: rotateX(0deg) translateY(0);
        }

        body.dark .stat-box {
            background: rgba(201, 163, 106, 0.1);
        }

        .stat-box:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 50px rgba(201, 163, 106, 0.2);
            background: rgba(201, 163, 106, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #c9a36a;
            margin-bottom: 1rem;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #6b7280;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }


        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .testimonial-card {
            background: rgba(201, 163, 106, 0.03);
            padding: 3rem;
            border-radius: 12px;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body.dark .testimonial-card {
            background: rgba(201, 163, 106, 0.05);
        }

        .testimonial-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-size: 6rem;
            color: var(--primary);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

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

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #f5576c 100%);
        }

        .author-info h4 {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-info.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info h3 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 3rem;
        }

        .contact-box{
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(201, 163, 106, 0.03);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .contact-box.visible{
            transform: translateX(0px);
            opacity: 1;
        }
        .contact-box1{
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(201, 163, 106, 0.03);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transform: translateX(70px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .contact-box1.visible{
            transform: translateX(0px);
            opacity: 1;
        }
        body.dark .contact-box ,
        body.dark .contact-box1{
            background: rgba(201, 163, 106, 0.05);
        }

        .contact-box:hover,
        .contact-box1:hover{
            transform: translateX(10px);
        }

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

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: var(--gray);
        }

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

        .social-link {
            width: 60px;
            height: 60px;
            background: var(--dark);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body.dark .social-link {
            background: var(--light);
            color: var(--dark);
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(201, 163, 106, 0.3);
        }

        .contact-form-wrapper {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-form-wrapper.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            text-align: center;
            padding: 3rem 5%;
        }

        body.dark footer {
            background: var(--bg-dark);
        }

        footer p {
            margin: 0.5rem 0;
            opacity: 0.7;
        }

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



/* ============================================
   REPLACE WITH THIS - SHOWS 5 CARDS TOTAL
   CENTER + 2 LEFT + 2 RIGHT
   ============================================ */

/* Carousel Container Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 0;
    overflow: visible;
}

/* Main Carousel Track - FIXED: Always centers active card */
.testimonials-grid.carousel-mode {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
    padding: 0 3rem;
    position: relative;
    align-items: center;
    /* Remove justify-content to allow proper centering calculation */
}

/* Individual Testimonial Cards in Carousel */
.testimonials-grid.carousel-mode .testimonial-card {
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    opacity: 0.2;
    transform: scale(0.7) translateZ(-300px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(3px);
    pointer-events: none;
    position: relative;
    z-index: 1;
}

/* Active Center Card (Position 0) */
.testimonials-grid.carousel-mode .testimonial-card.active {
    opacity: 1;
    transform: scale(1.15) translateZ(0px);
    filter: blur(0px);
    pointer-events: auto;
    z-index: 20;
    box-shadow: 0 40px 100px rgba(201, 163, 106, 0.5);
}

/* Immediate Adjacent Cards (Position -1 and +1) */
.testimonials-grid.carousel-mode .testimonial-card.adjacent-1 {
    opacity: 0.7;
    transform: scale(0.95) translateZ(-80px);
    filter: blur(0.5px);
    z-index: 15;
}

/* Second Adjacent Cards (Position -2 and +2) */
.testimonials-grid.carousel-mode .testimonial-card.adjacent-2 {
    opacity: 0.4;
    transform: scale(0.8) translateZ(-180px);
    filter: blur(1.5px);
    z-index: 10;
}

/* Cards Further Away (Position -3, +3, etc) */
.testimonials-grid.carousel-mode .testimonial-card.far {
    opacity: 0.15;
    transform: scale(0.65) translateZ(-350px);
    filter: blur(4px);
    z-index: 1;
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 25;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 163, 106, 0.3);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(201, 163, 106, 0.5);
}

.carousel-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Carousel Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 163, 106, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(201, 163, 106, 0.3);
}

.carousel-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 40px rgba(201, 163, 106, 0.6);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(201, 163, 106, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--primary);
    animation: shimmerProgress 2s ease infinite;
}

@keyframes shimmerProgress {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pause indicator */
.carousel-pause-indicator {
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(201, 163, 106, 0.9);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 5px 20px rgba(201, 163, 106, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 200;
}

.testimonials-carousel-wrapper:hover .carousel-pause-indicator {
    opacity: 1;
}

/* Counter Display */
.carousel-counter {
    position: absolute;
    top: -3rem;
    right: 2rem;
    background: rgba(201, 163, 106, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary);
}

/* Mobile Responsive - 5 Card Layout */
@media (max-width: 1400px) {
    .testimonials-grid.carousel-mode .testimonial-card {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        overflow: hidden;
    }
    
    .testimonials-grid.carousel-mode {
        padding: 0 2rem;
        gap: 1.5rem;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.active {
        transform: scale(1.1) translateZ(0px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-1 {
        opacity: 0.6;
        transform: scale(0.9) translateZ(-70px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-2 {
        opacity: 0.3;
        transform: scale(0.75) translateZ(-150px);
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid.carousel-mode {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.active {
        transform: scale(1.05) translateZ(0px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-1 {
        opacity: 0.5;
        transform: scale(0.85) translateZ(-60px);
        filter: blur(1px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-2 {
        opacity: 0.25;
        transform: scale(0.7) translateZ(-130px);
        filter: blur(2px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.far {
        opacity: 0;
        display: none;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .carousel-arrow.prev {
        left: -10px;
    }
    
    .carousel-arrow.next {
        right: -10px;
    }
    
    .carousel-counter {
        top: -2.5rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel-wrapper {
        padding: 2rem 0;
    }
    
    .testimonials-grid.carousel-mode {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.active {
        transform: scale(1) translateZ(0px);
        box-shadow: 0 20px 50px rgba(201, 163, 106, 0.3);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-1 {
        opacity: 0.4;
        transform: scale(0.8) translateZ(-50px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-2 {
        opacity: 0.2;
        transform: scale(0.65) translateZ(-110px);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .carousel-arrow.prev {
        left: -5px;
    }
    
    .carousel-arrow.next {
        right: -5px;
    }
    
    .carousel-dots {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 30px;
    }
    
    .carousel-progress {
        width: 200px;
        bottom: -1.5rem;
    }
    
    .carousel-pause-indicator {
        display: none;
    }
    
    .carousel-counter {
        top: -2rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid.carousel-mode .testimonial-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-1 {
        opacity: 0.3;
        transform: scale(0.75) translateZ(-40px);
    }
    
    .testimonials-grid.carousel-mode .testimonial-card.adjacent-2 {
        opacity: 0.15;
        transform: scale(0.6) translateZ(-90px);
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-progress {
        width: 150px;
    }
}

/* Smooth animations for cards entering/leaving */
.testimonials-grid.carousel-mode .testimonial-card {
    will-change: transform, opacity, filter;
}

/* Add depth perspective to wrapper */
.testimonials-carousel-wrapper {
    perspective: 2500px;
    perspective-origin: center center;
}

.testimonials-grid.carousel-mode {
    transform-style: preserve-3d;
}





/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 3rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        align-items: flex-start;
        gap: 2rem;
        z-index: 1001;
    }

    body.dark .nav-menu {
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-btn {
        display: block;
        z-index: 1002;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 5% 3rem;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-cta {
        padding: 1.2rem 2.5rem;
        font-size: 0.9rem;
    }

    .hero-cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    /* 3D Camera - Make Smaller */
    .hero-camera-3d {
        font-size: 18rem;
        right: 5%;
        opacity: 0.08;
    }

    .camera-icon {
        font-size: 12rem;
    }

    /* Floating Leaves - Reduce Size */
    .floating-leaf-1,
    .floating-leaf-2,
    .floating-leaf-3 {
        width: 80px;
        opacity: 0.15;
    }

    /* Sections */
    section {
        padding: 6rem 5%;
    }

    .section-header h2 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .portfolio-item {
        height: 450px;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        width: 650px;
        height: 800px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Booking & Contact Forms */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-field,
    .form-fiel {
        width: 40%;
    }

    .booking-wrapper {
        padding: 3rem 2rem;
    }

    .booking-wrapper .text-right,
    .booking-wrapper .text-left,
    .contact-form-wrapper .text-right {
        font-size: 35px;
        right: 80px;
    }

    .booking-wrapper .text-left {
        top: 140px;
        right: 120px;
    }

    .booking-wrapper img,
    .contact-form-wrapper img {
        width: 50%;
        bottom: -100px;
    }

    .submit-btn {
        width: 40%;
        max-width: 100%;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2.5rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        margin-top: 0;
    }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    /* Loader */
    .loaderimg {
        height: 200px;
        width: 200px;
    }

    .loader-logo {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .loader-bar {
        width: 280px;
    }

    .camera-icon {
        font-size: 10rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 4% 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 4rem);
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-camera-3d {
        font-size: 14rem;
        opacity: 0.06;
    }

    /* Sections */
    section {
        padding: 5rem 4%;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        letter-spacing: -2px;
    }

    /* Portfolio */
    .filter-tabs {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-item {
        height: 400px;
    }

    /* About */
    .about-image {
        height: 800px;
        width: 650px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }

    /* Booking */
    .booking-wrapper,
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 30px;
    }

    .booking-wrapper .text-right {
        font-size: 28px;
        right: 60px;
        top: 70px;
    }

    .booking-wrapper .text-left {
        font-size: 28px;
        right: 90px;
        top: 110px;
    }

    .contact-form-wrapper .text-right {
        font-size: 28px;
        right: 60px;
        top: 70px;
    }

    .booking-wrapper img,
    .contact-form-wrapper img {
        width: 20%;
        bottom: -80px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-card::before {
        font-size: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Contact */
    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-box,
    .contact-box1 {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile Landscape - 640px and below */
@media (max-width: 640px) {
    /* Navigation */
    .logo p {
        font-size: 1rem;
    }

    .logoimg {
        width: 35px;
        height: 35px;
    }

    .nav-menu {
        width: 85%;
        padding: 5rem 2rem;
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    /* Loader */
    .loaderimg {
        height: 180px;
        width: 180px;
    }

    .loader-logo {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .loader-bar {
        width: 250px;
        height: 2px;
    }

    .camera-icon {
        font-size: 8rem;
    }

    /* Hero */
    .hero {
        padding: 4rem 5% 2rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-secondary {
        width: 100%;
        margin-left: 0;
    }

    .hero-camera-3d {
        font-size: 10rem;
        opacity: 0.05;
    }

    .floating-leaf-1,
    .floating-leaf-2,
    .floating-leaf-3 {
        width: 60px;
        opacity: 0.1;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
    }

    /* Sections */
    section {
        padding: 4rem 5%;
    }

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

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.4rem 1.2rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Portfolio */
    .filter-tabs {
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .portfolio-grid {
        gap: 1.5rem;
    }

    .portfolio-item {
        height: 350px;
        border-radius: 15px;
    }

    .portfolio-overlay {
        padding: 2rem;
    }

    .portfolio-category {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .portfolio-desc {
        font-size: 0.9rem;
    }

    /* About */
    .about-image {
        height: 400px;
        border-radius: 12px;
    }

    .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .stats-grid {
        gap: 1.2rem;
        margin: 2.5rem 0;
    }

    .stat-box {
        padding: 1.8rem 1.2rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    /* Booking */
    .booking-wrapper,
    .contact-form-wrapper {
        padding: 2rem 1.2rem;
        border-radius: 25px;
    }

    .booking-wrapper .text-right,
    .contact-form-wrapper .text-right {
        font-size: 25px;
        right: 30px;
    }

    .booking-wrapper .text-left {
        top: 140px;
        right: 120px;
    }

    .booking-wrapper img,
    .contact-form-wrapper img {
        width: 50%;
        top: 800px;
    }

    .form-field label,
    .form-fiel label {
        font-size: 1rem;
        margin-left: 0.5rem;
        width: 40%;
    }

    .form-field input,
    .form-fiel input,
    .form-fiel textarea,
    .form-field select {
        padding: 1rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .form-field textarea,
    .form-fiel textarea {
        min-height: 120px;
        border-radius: 20px;
    }

    .submit-btn {
        padding: 1.1rem;
        font-size: 0.9rem;
        width: 40%;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.8rem;
        border-radius: 15px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: 1.5rem;
        left: 1.5rem;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .contact-box,
    .contact-box1 {
        padding: 1.2rem;
        border-radius: 12px;
        gap: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 5%;
    }

    footer p {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Loader */
    .loaderimg {
        height: 150px;
        width: 150px;
    }

    .loader-logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .loader-bar {
        width: 220px;
    }

    /* Hero */
    .hero {
        padding: 3.5rem 4% 2rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.8rem;
    }

    .hero-camera-3d {
        font-size: 8rem;
    }

    /* Sections */
    section {
        padding: 3.5rem 4%;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Portfolio */
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }

    .portfolio-item {
        height: 320px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-title {
        font-size: 1.3rem;
    }

    .portfolio-desc {
        font-size: 0.85rem;
    }

    /* About */
    .about-image {
        height: 650px;
        width: 350px;
        background-size: cover;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Forms */
    .booking-wrapper,
    .contact-form-wrapper {
        padding: 1.8rem 1rem;
    }
    .booking-wrapper img,
    .contact-form-wrapper img {
        width: 50%;
        bottom: -100px;
    }

    .form-field label,
    .form-fiel label {
        font-size: 0.95rem;
    }

    .form-field input,
    .form-fiel input,
    .form-fiel textarea,
    .form-field select {
        padding: 0.9rem;
        font-size: 0.85rem;
        border-radius: 25px;
        width: 100%;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 0.85rem;
        width: 40%;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-box,
    .contact-box1 {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Ultra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .hero h1 {
        font-size: clamp(1.3rem, 10vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: clamp(1.4rem, 9vw, 2rem);
    }

    .portfolio-item {
        height: 280px;
    }

    .about-image {
        height: 320px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 4rem 5% 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .loaderimg {
        height: 120px;
        width: 120px;
    }

    .loader-logo {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 5%;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .loader,
    .camera-transition,
    nav,
    .menu-btn,
    .scroll-indicator,
    .floating-leaf,
    .hero-camera-3d {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}
