  /* ========================================
           RESET & BASE STYLES
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Color Palette */
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #c9a961;
            --accent-dark: #a68844;
            --text-light: #ffffff;
            --text-dark: #333333;
            --text-gray: #666666;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
            
            /* Typography */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
            
            /* Spacing */
            --section-padding: 100px 0;
            --container-padding: 0 20px;
            
            /* Transitions */
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--container-padding);
        }

        /* ========================================
           NAVIGATION BAR
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--primary-color);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--text-light);
            font-weight: 700;
            letter-spacing: 2px;
        }

        .tagline-small {
            display: block;
            font-size: 0.7rem;
            color: var(--accent-color);
            letter-spacing: 3px;
            font-weight: 300;
            margin-top: -5px;
        }

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

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

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

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            transition: var(--transition);
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: 70px;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4rem;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease 0.6s;
            animation-fill-mode: backwards;
        }

        .btn {
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            font-size: 1rem;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--accent-color);
            color: var(--text-light);
            border-color: var(--accent-color);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border-color: var(--text-light);
        }

        .btn-secondary:hover {
            background: var(--text-light);
            color: var(--primary-color);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            animation: fadeInUp 1s ease 0.8s;
            animation-fill-mode: backwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .stat-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           SECTION HEADERS
           ======================================== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--accent-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .title-underline {
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 0 auto 20px;
        }

        .section-description {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        /* ========================================
           ABOUT SECTION
           ======================================== */
        .about {
            padding: var(--section-padding);
            background: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .image-placeholder {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--accent-color);
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
        }

        .about-text h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text .lead {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .mission, .vision {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .mission h4, .vision h4 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .mission p, .vision p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0;
        }

        /* ========================================
           SERVICES SECTION
           ======================================== */
        .services {
            padding: var(--section-padding);
            background: var(--bg-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 10px;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card.featured {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
        }

        .service-card.featured h3,
        .service-card.featured p,
        .service-card.featured li {
            color: var(--text-light);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
            color: var(--accent-color);
        }

        .service-card.featured .service-icon {
            color: var(--accent-color);
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            color: var(--text-gray);
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* ========================================
           GALLERY SECTION
           ======================================== */
        .gallery {
            padding: var(--section-padding);
            background: var(--bg-light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            transition: var(--transition);
        }

        .gallery-placeholder svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .gallery-item:hover .gallery-placeholder {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(26, 26, 46, 0.8));
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* ========================================
           WHY CHOOSE US SECTION
           ======================================== */
        .why-choose-us {
            padding: var(--section-padding);
            background: var(--primary-color);
            color: var(--text-light);
        }

        .why-choose-us .section-title {
            color: var(--text-light);
        }

        .why-choose-us .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }

        .feature-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-color);
            opacity: 0.2;
            font-weight: bold;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-color);
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            color: var(--accent-color);
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* ========================================
           CONTACT SECTION
           ======================================== */
        .contact {
            padding: var(--section-padding);
            background: var(--bg-light);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--text-light);
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
        }

        .info-item h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-item p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        .map-container {
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .map-placeholder svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .contact-form-wrapper {
            background: var(--bg-white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-form-wrapper h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-group textarea {
            resize: vertical;
        }

        .btn-full {
            width: 100%;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 60px 0 20px;
        }

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

        .footer-section h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .footer-tagline {
            color: var(--accent-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-style: italic;
        }

        .footer-section h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-contact li {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* ========================================
           SCROLL TO TOP BUTTON
           ======================================== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border: none;
            border-radius: 50%;
            color: var(--text-light);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent-dark);
            transform: translateY(-5px);
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
        }

        /* ========================================
           ANIMATIONS
           ======================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--primary-color);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 30px 0;
                gap: 0;
            }

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

            .nav-menu li {
                padding: 15px 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .hero-title {
                font-size: 2.5rem;
            }

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

            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .mission-vision {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 640px) {
            :root {
                --section-padding: 60px 0;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
            }

            .stat-item h3 {
                font-size: 2.2rem;
            }

            .services-grid,
            .features-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .logo h1 {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .contact-form-wrapper {
                padding: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }