 
        :root {
            --color-primary: #1a1a1a;
            --color-secondary: #8b7355;
            --color-accent: #c9a96e;
            --color-text: #2c2c2c;
            --color-text-light: #666;
            --color-bg: #ffffff;
            --color-bg-secondary: #f8f6f3;
            --color-border: #e8e4df;
            --font-primary: 'Georgia', 'Times New Roman', serif;
            --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-secondary);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-primary);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-text);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--color-secondary);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--color-primary);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 90vh;
            background-image: url('images/hero-bg.jpg') !important;
            width:100% !important   ;
            max-width:100%;
            background-position:center;
            background-color:#0000007a;
            background-blend-mode:multiply;
            color:#fff;
            /*background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);*/
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1400px;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-subtitle {
           font-size: 0.95rem;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background-color: var(--color-secondary);
    color: #fff;
    display: inline;
    padding: 5px 20px;
    border-radius: 16px;
        }

        .hero-title {
            color:#fff;
            font-family: var(--font-primary);
            font-size: 4.5rem;
            font-weight: 300;
            /*color: var(--color-primary);*/
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .hero-description {
            font-size: 1.2rem;
            /*color: var(--color-text-light);#000000ab*/
            color:#fff;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
        }

        .btn-primary {
            background: white;
            color: black;
        }

        .btn-primary:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: white;
        }

        /* Virtual Tour Banner */
        .virtual-tour {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
            padding: 2rem;
            text-align: center;
            color: white;
        }

        .virtual-tour h3 {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .virtual-tour p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .btn-tour {
            background: white;
            color: var(--color-secondary);
            padding: 0.9rem 2rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-tour:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            letter-spacing: 2px;
            color: var(--color-secondary);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-family: var(--font-primary);
            font-size: 3rem;
            font-weight: 300;
            color: var(--color-primary);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--color-text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background: var(--color-bg-secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-text {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--color-text-light);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            text-align:justify;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .stat-number {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--color-secondary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-light);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .product-card {
            background: white;
            border: 1px solid var(--color-border);
            transition: all 0.4s;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .product-icon {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
        }

        .product-content {
            padding: 2rem;
        }

        .product-title {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .product-description {
            font-size: 0.95rem;
            color: var(--color-text-light);
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery {
            background: var(--color-bg-secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            background: white;
            border: 1px solid var(--color-border);
            aspect-ratio: 1;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-title {
            font-family: var(--font-primary);
            font-size: 1.3rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .gallery-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .info-block h4 {
            font-family: var(--font-primary);
            font-size: 1.3rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-block h4::before {
            content: '◆';
            color: var(--color-accent);
        }

        .info-block p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            line-height: 1.8;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--color-border);
            font-family: var(--font-secondary);
            font-size: 0.95rem;
            transition: border-color 0.3s;
            background: var(--color-bg-secondary);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-secondary);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            width: 100%;
            padding: 1.2rem;
            background: var(--color-primary);
            color: white;
            border: none;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .btn-submit:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        .footer {
            background: var(--color-primary);
            color: white;
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-tagline {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .products-grid,
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero {
                height: auto;
                padding: 4rem 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .products-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            section {
                padding: 4rem 1.5rem;
            }
        }
        
        .response-message { margin-top:1rem; padding:.75rem; border-radius:4px; display:none; }
    .success { background:#d4edda; color:#155724; }
    .error { background:#f8d7da; color:#721c24; }
    .category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  gap: 10px;
}

.category-tabs li {
  padding: 10px 20px;
  border-radius: 25px;
  background: #f4f4f4;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tabs li.active {
  background: #000;
  color: #fff;
}

.gallery-group {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-group.active {
  display: grid;
}
    