        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a0a0a;
            --gold: #d4af37;
            --light-gold: #f4e5c3;
            --white: #ffffff;
            --light-bg: #fafafa;
            --gray: #6b6b6b;
            --dark-gray: #2a2a2a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
            line-height: 1.7;
            background: var(--white);
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--gold);
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--gold);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .hero {
            height: 60vh;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.6)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.3rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }

        section {
            padding: 8rem 5%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            padding: 6rem 5%;
            background: var(--white);
        }

        .info-card {
            background: var(--light-bg);
            padding: 3rem 2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.4s;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            background: var(--white);
        }

        .info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), #c49930);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--white);
        }

        .info-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .info-link {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .info-link:hover {
            background: #c49930;
        }

        .contact-section {
            background: var(--light-bg);
            padding: 8rem 5%;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 4rem;
        }

        .form-box {
            background: var(--white);
            padding: 4rem;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .form-box > p {
            color: var(--gray);
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            background: var(--light-bg);
            border: 2px solid transparent;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .file-wrapper {
            position: relative;
        }

        .file-wrapper input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.2rem;
            background: var(--light-bg);
            border: 2px dashed #ddd;
            border-radius: 6px;
            cursor: pointer;
        }

        .file-label:hover {
            border-color: var(--gold);
        }

        .file-label i {
            color: var(--gold);
            font-size: 1.5rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.3rem;
            background: linear-gradient(135deg, var(--gold), #c49930);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: all 0.4s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .success-message {
            display: none;
            background: #4CAF50;
            color: white;
            padding: 1.2rem;
            border-radius: 6px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .sidebar-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .detail-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }

        .detail-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .detail-icon {
            width: 50px;
            height: 50px;
            background: var(--light-gold);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .detail-text h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .detail-text p,
        .detail-text a {
            color: var(--gray);
            line-height: 1.7;
            text-decoration: none;
        }

        .detail-text a {
            color: var(--gold);
            font-weight: 600;
        }

        .hours-card {
            background: linear-gradient(135deg, var(--primary), var(--dark-gray));
            color: var(--white);
        }

        .hours-card h3 {
            color: var(--white);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 600;
        }

        .hours-time {
            color: var(--gold);
            font-weight: 600;
        }

        .map-section {
            padding: 0;
        }

        .map-section iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--gold), #c49930);
            padding: 6rem 5%;
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            color: var(--primary);
            opacity: 0.9;
        }

        .cta-btn {
            padding: 1.1rem 2.8rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 2px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(10, 10, 10, 0.3);
        }

        footer {
            background: #000000;
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 5% 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-about h3 span {
            color: var(--gold);
        }

        .footer-about p {
            line-height: 1.8;
        }

        .footer-section h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        @media (max-width: 968px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 6rem 2rem;
                transition: right 0.4s;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .info-cards,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-box {
                padding: 2.5rem;
            }

            section {
                padding: 5rem 5%;
            }
        }
