        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #d4af37;
            --primary-dark: #b8960c;
            --bg-dark: #0a0a0a;
            --bg-secondary: #141414;
            --bg-tertiary: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #6b6b6b;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===================== */
        /* PRELOADER             */
        /* ===================== */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
        }

        .camera-animation {
            position: relative;
            margin-bottom: 30px;
        }

        .camera-animation i {
            font-size: 80px;
            color: var(--primary);
            animation: cameraShake 2s ease-in-out infinite;
        }

        .camera-flash {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: flashEffect 2s ease-in-out infinite;
        }

        .loading-text {
            font-size: 24px;
            color: var(--text-primary);
            font-weight: 500;
            letter-spacing: 2px;
        }

        .loading-text .dots::after {
            content: '';
            animation: dots 1.5s steps(4, end) infinite;
        }

        @keyframes cameraShake {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(-5deg);
            }
            50% {
                transform: translateY(0) rotate(0deg);
            }
            75% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        @keyframes flashEffect {
            0%, 100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        @keyframes dots {
            0%, 20% { content: ''; }
            40% { content: '.'; }
            60% { content: '..'; }
            80%, 100% { content: '...'; }
        }

        /* ===================== */
        /* ANIMATIONS            */
        /* ===================== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-15px); }
            60% { transform: translateX(-50%) translateY(-7px); }
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-5px); }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
        .animate-on-scroll.delay-5 { transition-delay: 0.5s; }

        .animate-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* ===================== */
        /* NAVIGATION            */
        /* ===================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(15px);
            padding: 1rem 5%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .logo {
  			font-family: "Great Vibes", cursive;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 3px;
            z-index: 1002;
            animation: fadeInDown 1s ease;
        }

        .logo span {
            color: var(--primary);
            display: inline-block;
            animation: pulse 2s infinite;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links li {
            animation: fadeInDown 1s ease;
        }

        .nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .nav-links li:nth-child(2) { animation-delay: 0.2s; }
        .nav-links li:nth-child(3) { animation-delay: 0.3s; }
        .nav-links li:nth-child(4) { animation-delay: 0.4s; }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }
		.nav-links a.active::after {
    width: 100%;
}

		
		.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after {
width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
z-index: 1001;
background: none;
border: none;
padding: 10px;
}

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--text-primary);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--primary);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: var(--primary);
        }

        /* Mobile Menu Overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ===================== */
        /* HERO SECTION          */
        /* ===================== */
        #home {
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.1), rgba(20, 20, 20, 0.5)),
                        url('banner.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .hero-subtitle {
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 400;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            animation: expandLine 1s ease 1.5s forwards;
        }

        @keyframes expandLine {
            to { transform: scaleX(1); }
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            color: var(--bg-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--bg-dark);
        }

        .btn-primary::before {
            background: var(--primary-dark);
        }

        .btn-primary:hover {
            border-color: var(--primary-dark);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite, fadeIn 1s ease 1.5s both;
        }

        .scroll-indicator i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            width: 150px;
            height: 150px;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            width: 80px;
            height: 80px;
            animation-delay: 4s;
        }

        /* ===================== */
        /* SECTION STYLES        */
        /* ===================== */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 0.9rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .section-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 0 auto;
            position: relative;
        }

        .section-line::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* ===================== */
        /* ABOUT SECTION         */
        /* ===================== */
        #about {
            background: #471313;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            filter: grayscale(20%);
            transition: all 0.5s ease;
        }

        .about-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--primary);
            z-index: -1;
            transition: all 0.5s ease;
        }

        .about-image:hover::before {
            top: 10px;
            left: 10px;
        }

        .about-image::after {
            content: '20+ Years';
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary);
            color: var(--bg-dark);
            padding: 20px 30px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            animation: pulse 2s infinite;
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-content h3 span {
            color: var(--primary);
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--bg-tertiary);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, var(--bg-tertiary), rgba(212, 175, 55, 0.1));
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        /* ===================== */
        /* GALLERY SECTION       */
        /* ===================== */
        #gallery {
            background: var(--bg-dark);
        }

        .gallery-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 0.7rem 1.5rem;
            background: transparent;
            border: 1px solid var(--text-muted);
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .category-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .category-btn:hover::before,
        .category-btn.active::before {
            left: 0;
        }

        .category-btn:hover,
        .category-btn.active {
            border-color: var(--primary);
            color: var(--bg-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            border-radius: 10px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info {
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }

        .gallery-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .gallery-info p {
            color: var(--primary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .gallery-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease;
        }

        .gallery-zoom i {
            color: var(--bg-dark);
            font-size: 1.2rem;
        }

        .gallery-item:hover .gallery-zoom {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Google Photos Embed */
        .google-photos-embed {
            margin-top: 50px;
            padding: 30px;
            background: var(--bg-secondary);
            border-radius: 15px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid var(--bg-tertiary);
        }

        .google-photos-embed h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .google-photos-embed iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 10px;
        }

        .embed-note {
            text-align: center;
            color: var(--text-muted);
            margin-top: 15px;
            font-size: 0.85rem;
        }

        /* ===================== */
        /* CONTACT SECTION       */
        /* ===================== */
        #contact {
            background: var(--bg-secondary);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, var(--bg-tertiary), rgba(212, 175, 55, 0.1));
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-dark);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-item div h4 {
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .contact-item div p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid var(--text-muted);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .social-links a:hover::before {
            transform: scale(1);
        }

        .social-links a:hover {
            border-color: var(--primary);
            color: var(--bg-dark);
            transform: translateY(-5px) rotate(360deg);
        }

        .contact-form {
            background: var(--bg-tertiary);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-secondary);
            border: 2px solid transparent;
            color: #8a8a8a;
            font-size: 0.95rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(212, 175, 55, 0.05);
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label {
            color: var(--primary);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form .btn {
            width: 100%;
            padding: 1rem;
            justify-content: center;
        }

        /* ===================== */
        /* FOOTER                */
        /* ===================== */
        footer {
            background: var(--bg-dark);
            padding: 50px 5% 25px;
            text-align: center;
            border-top: 1px solid var(--bg-tertiary);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: var(--primary);
        }

        footer p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        footer p i {
            color: #e74c3c;
            animation: pulse 1s infinite;
        }

        /* ===================== */
        /* LIGHTBOX              */
        /* ===================== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.97);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }

        .lightbox.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2.5rem;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10001;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-tertiary);
            border-radius: 50%;
        }

        .lightbox-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* ===================== */
        /* CHATBOT WIDGET        */
        /* ===================== */
        .chatbot-widget {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .chatbot-toggle::before {
            content: '';
            position: absolute;
            inset: -5px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            opacity: 0;
            animation: ping 2s infinite;
        }

        @keyframes ping {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .chatbot-toggle:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
            animation: none;
        }

        .chatbot-toggle i {
            color: var(--bg-dark);
            font-size: 1.4rem;
            transition: transform 0.4s ease;
        }

        /* Chatbot Window */
        .chatbot-window {
            position: absolute;
            bottom: 75px;
            right: 0;
            width: 380px;
            max-height: 550px;
            background: var(--bg-secondary);
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            display: none;
            flex-direction: column;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transform: translateY(20px) scale(0.9);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .chatbot-window.active {
            display: flex;
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .chatbot-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 18px 20px;
            color: var(--bg-dark);
            flex-shrink: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            margin-bottom: 3px;
        }

        .chatbot-header-info p {
            font-size: 0.8rem;
            opacity: 0.85;
        }

        .chatbot-close {
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            border-radius: 50%;
            color: var(--bg-dark);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .chatbot-close:hover {
            background: rgba(0, 0, 0, 0.3);
            transform: rotate(90deg);
        }

        /* Chat Content Area */
        .chatbot-content {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            max-height: 400px;
        }

        .chatbot-messages {
            padding: 15px;
            min-height: 80px;
        }

        .message {
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
            animation: fadeInUp 0.4s ease;
        }

        .message.bot {
            flex-direction: row;
        }

        .message.user {
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            animation: scaleIn 0.4s ease;
        }

        .message-avatar i {
            color: var(--bg-dark);
            font-size: 0.85rem;
        }

        .message-content {
            background: var(--bg-tertiary);
            padding: 12px 16px;
            border-radius: 15px;
            max-width: 75%;
            font-size: 0.9rem;
            line-height: 1.5;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .message.user .message-content {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--bg-dark);
            border: none;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 5px;
            padding: 15px;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typing 1s infinite;
        }

        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

        /* Chat Options */
        .chatbot-options {
            padding: 12px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            border-top: 1px solid var(--bg-tertiary);
            background: var(--bg-secondary);
        }

        .chat-option {
            padding: 10px 16px;
            background: var(--bg-tertiary);
            border: 1px solid var(--text-muted);
            border-radius: 25px;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .chat-option:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        /* Meeting Form Inside Chatbot */
        .meeting-form {
            padding: 20px;
            display: none;
            background: var(--bg-secondary);
            animation: fadeIn 0.4s ease;
        }

        .meeting-form.active {
            display: block;
        }

        .meeting-form h5 {
            font-size: 1.1rem;
            margin-bottom: 18px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .meeting-form .form-group {
            margin-bottom: 14px;
        }

        .meeting-form .form-group label {
            font-size: 0.75rem;
            margin-bottom: 6px;
            display: block;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meeting-form .form-group input,
        .meeting-form .form-group select {
            width: 100%;
            padding: 12px 14px;
            background: var(--bg-tertiary);
            border: 2px solid transparent;
            border-radius: 8px;
            color: #707070;
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .meeting-form .form-group input:focus,
        .meeting-form .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(212, 175, 55, 0.05);
        }

        .meeting-form .form-group input::placeholder {
            color: var(--text-muted);
        }

        .meeting-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .meeting-form .form-row .form-group {
            margin-bottom: 14px;
        }

        .meeting-form .btn {
            width: 100%;
            padding: 12px;
            font-size: 0.9rem;
            margin-top: 5px;
            border-radius: 8px;
        }

        .back-to-chat {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 0.85rem;
            margin-top: 12px;
            padding: 10px;
            text-align: center;
            transition: color 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .back-to-chat:hover {
            color: var(--primary);
        }

        /* Success Message */
        .form-success {
            text-align: center;
            padding: 40px 20px;
            display: none;
            animation: scaleIn 0.5s ease;
        }

        .form-success.active {
            display: block;
        }

        .form-success .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: scaleIn 0.5s ease 0.2s both;
        }

        .form-success .success-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .form-success h5 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .form-success p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid var(--bg-dark);
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 0.8s linear infinite;
            vertical-align: middle;
            margin-right: 8px;
        }

        /* Scrollbar Styling */
        .chatbot-content::-webkit-scrollbar {
            width: 6px;
        }

        .chatbot-content::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
        }

        .chatbot-content::-webkit-scrollbar-thumb {
            background: var(--text-muted);
            border-radius: 10px;
        }

        .chatbot-content::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* ===================== */
        /* RESPONSIVE STYLES     */
        /* ===================== */

        @media (max-width: 1024px) {
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image::before {
                display: none;
            }

            .about-image::after {
                bottom: 20px;
                right: 20px;
                padding: 15px 20px;
                font-size: 1.2rem;
            }

            .about-image img {
                height: 400px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .about-stats {
                justify-items: center;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                transform: translateX(100%);
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 1001;
                backdrop-filter: blur(20px);
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                opacity: 0;
                transform: translateX(50px);
                transition: all 0.4s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

            .nav-links a {
                font-size: 1.5rem;
            }

            /* Hero */
            #home {
                background-attachment: scroll;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                letter-spacing: 4px;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .floating-element {
                display: none;
            }

            /* Sections */
            section {
                padding: 70px 5%;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-header {
                margin-bottom: 40px;
            }

            /* About */
            .about-content h3 {
                font-size: 1.8rem;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .stat-item {
                padding: 15px 10px;
            }

            .stat-item h4 {
                font-size: 1.8rem;
            }

            .stat-item p {
                font-size: 0.65rem;
            }

            /* Gallery */
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .gallery-categories {
                gap: 8px;
            }

            .category-btn {
                padding: 0.5rem 1rem;
                font-size: 0.7rem;
            }

            .google-photos-embed {
                padding: 15px;
                margin-top: 30px;
            }

            .google-photos-embed h3 {
                font-size: 1.2rem;
            }

            .google-photos-embed iframe {
                height: 300px;
            }

            /* Contact */
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .contact-form {
                padding: 25px;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }

            /* Chatbot - Mobile Optimized */
            .chatbot-widget {
                bottom: 15px;
                right: 15px;
            }

            .chatbot-toggle {
                width: 55px;
                height: 55px;
            }

            .chatbot-toggle i {
                font-size: 1.3rem;
            }

            .chatbot-window {
                position: fixed;
                bottom: 0;
                right: 0;
                left: 0;
                width: 100%;
                max-height: 90vh;
                border-radius: 25px 25px 0 0;
                max-width: 100%;
            }

            .chatbot-content {
                max-height: calc(90vh - 70px);
            }

            .chatbot-header {
                padding: 15px 20px;
                border-radius: 25px 25px 0 0;
            }

            .meeting-form {
                padding: 15px;
            }

            .meeting-form .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 1rem 4%;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero-title {
                font-size: 1.7rem;
            }

            .hero-description {
                font-size: 0.85rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.8rem;
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .section-subtitle {
                font-size: 0.75rem;
                letter-spacing: 3px;
            }

            .about-content h3 {
                font-size: 1.4rem;
            }

            .about-image img {
                height: 280px;
            }

            .about-image::after {
                padding: 12px 15px;
                font-size: 1rem;
            }

            .about-stats {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .stat-item h4 {
                font-size: 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-categories {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }

            .category-btn {
                flex-shrink: 0;
            }

            .contact-form {
                padding: 20px 15px;
            }

            .contact-item {
                gap: 12px;
                padding: 12px;
            }

            .contact-item i {
                width: 42px;
                height: 42px;
                font-size: 0.9rem;
            }

            .social-links a {
                width: 40px;
                height: 40px;
            }

            /* Chatbot Mobile Small */
            .chatbot-window {
                max-height: 95vh;
            }

            .chatbot-content {
                max-height: calc(95vh - 65px);
            }

            .chatbot-header {
                padding: 12px 15px;
            }

            .chatbot-header-info h4 {
                font-size: 1rem;
            }

            .chatbot-header-info p {
                font-size: 0.75rem;
            }

            .meeting-form {
                padding: 12px;
            }

            .meeting-form .form-row {
                grid-template-columns: 1fr;
            }

            .meeting-form h5 {
                font-size: 1rem;
            }

            .meeting-form .form-group input,
            .meeting-form .form-group select {
                padding: 10px 12px;
                font-size: 0.85rem;
            }

            .chat-option {
                font-size: 0.75rem;
                padding: 8px 14px;
            }

            .message-content {
                font-size: 0.85rem;
                padding: 10px 14px;
            }

            .form-success {
                padding: 30px 15px;
            }

            .form-success .success-icon {
                width: 60px;
                height: 60px;
            }

            .form-success .success-icon i {
                font-size: 1.8rem;
            }
        }

        /* Very small screens */
        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .stat-item h4 {
                font-size: 1.3rem;
            }

            .stat-item p {
                font-size: 0.6rem;
            }
        }
