        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(135deg, rgba(30, 13, 1, 0.7) 0%, rgba(182, 108, 83, 0.4) 50%, rgba(141, 139, 99, 0.3) 100%), 
                        url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 2rem;
            font-weight: 200;
            letter-spacing: 5px;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, var(--white), var(--beige), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

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

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-ornament {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 2rem auto;
            position: relative;
        }

        .hero-ornament::before,
        .hero-ornament::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            top: -3px;
        }

        .hero-ornament::before { left: -10px; }
        .hero-ornament::after { right: -10px; }

        /* Floating elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            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: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.5rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-title h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            border-radius: 3px;
        }

        .section-title p {
            font-size: 1.4rem;
            color: var(--sage);
            font-style: italic;
            margin-top: 2rem;
            font-weight: 300;
        }

        /* Contact Info Section */
        .contact-info {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--beige) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(182, 108, 83, 0.03) 0%, transparent 70%);
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .contact-card {
            background: var(--white);
            border-radius: 25px;
            padding: 4rem 3rem;
            margin-bottom: 2rem;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid rgba(182, 108, 83, 0.1);
            z-index: 2;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

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

        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .contact-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--terracotta), var(--sage));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.5s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .contact-card h4 {
            font-size: 1.8rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .contact-card p {
            color: var(--sage);
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .contact-link {
            color: var(--terracotta);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .contact-link:hover {
            color: var(--dark-sage);
            text-decoration: underline;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: var(--dark-brown);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .contact-form-section .section-title h2,
        .contact-form-section .section-title p {
            color: var(--white);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 4rem;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .contact-form:hover::before {
            left: 100%;
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-label {
            color: var(--beige);
            font-weight: 500;
            margin-bottom: 0.8rem;
            display: block;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 1rem 1.5rem;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
            color: var(--white);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background: linear-gradient(45deg, var(--terracotta), var(--gold));
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, var(--gold), var(--terracotta));
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        /* Map Section */
        .map-section {
            background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 50%, var(--white) 100%);
            position: relative;
        }

        .map-container {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            height: 450px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--beige), var(--cream));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--dark-brown);
        }

        .map-placeholder i {
            font-size: 4rem;
            color: var(--terracotta);
            margin-bottom: 1rem;
        }

        .map-placeholder h5 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .map-placeholder p {
            color: var(--sage);
            font-size: 1rem;
        }

        /* Hours Section */
        .hours-section {
            background: linear-gradient(45deg, var(--sage) 0%, var(--dark-sage) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hours-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hours-section .section-title h2,
        .hours-section .section-title p {
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .hours-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
            border: 1px solid rgba(255,255,255,0.1);
            height: 100%;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .hours-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--beige) 50%, var(--terracotta) 100%);
        }

        .hours-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .hours-card h4 {
            color: var(--beige);
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-align: center;
        }

        .hours-list {
            list-style: none;
            padding: 0;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.9);
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 500;
            color: var(--gold);
        }

        .time {
            color: rgba(255,255,255,0.8);
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, var(--terracotta) 0%, var(--dark-sage) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .faq-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            height: 100%;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .faq-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--beige) 50%, var(--terracotta) 100%);
        }

        .faq-card h5 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

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

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 100px 0;
            }
            
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 80px 0;
            }
            
            .hero {
                min-height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
                letter-spacing: 3px;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }

            .contact-card,
            .contact-form,
            .hours-card,
            .faq-card {
                padding: 2.5rem;
            }

            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .contact-card,
            .contact-form,
            .hours-card,
            .faq-card {
                padding: 2rem;
            }
        }
        .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: none;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.loading {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}