    :root {
        --primary-color: #8B5A2B;
        --secondary-color: #D2B48C;
        --accent-color: #A52A2A;
        --light-color: #F5F5DC;
        --dark-color: #2F4F4F;
        --section-padding: 5rem 0;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #FAFAFA;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }

    /* Page Header */
    .contact-header {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?restaurant');
        background-size: cover;
        background-position: center;
        padding: 100px 0;
        text-align: center;
        color: white;
        margin-bottom: 50px;
    }

    .contact-header h1 {
        font-size: 3.5rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .contact-header p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0 80px;
    }

    .section-title {
        position: relative;
        font-size: 1.8rem;
        margin-bottom: 40px;
        text-align: center;
        color: var(--primary-color);
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Contact Card */
    .contact-form-card {
        background-color: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: transform 0.3s ease;
    }

    .contact-form-card:hover {
        transform: translateY(-5px);
    }

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

    .form-control {
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid #ddd;
        transition: all 0.3s;
    }

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.25rem rgba(139, 90, 43, 0.15);
    }

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

    .contact-btn {
        background-color: var(--accent-color);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        border: none;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s;
        width: 100%;
    }

    .contact-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Contact Info Card */
    .contact-info-card {
        background-color: var(--primary-color);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        color: white;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .contact-info-card h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        color: white;
        position: relative;
        padding-bottom: 15px;
    }

    .contact-info-card h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .contact-info-icon {
        min-width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.2rem;
        color: var(--secondary-color);
    }

    .contact-info-text {
        font-size: 1rem;
    }

    .contact-info-text strong {
        display: block;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .social-links {
        margin-top: auto;
    }

    .social-links h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .social-icons {
        display: flex;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
    }

    .social-icon:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    /* Map Section */
    .map-section {
        margin-top: 60px;
    }

    .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 400px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Success/Error Alerts */
    .alert {
        border-radius: 10px;
        padding: 15px 20px;
        margin-bottom: 25px;
        border: none;
    }

    .alert-success {
        background-color: rgba(25, 135, 84, 0.1);
        color: #198754;
        border-left: 4px solid #198754;
    }

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

    /* Footer */
    .footer {
        background-color: var(--dark-color);
        color: white;
        padding: 3rem 0 2rem;
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
    }

    .footer-contact i {
        margin-right: 10px;
        color: var(--secondary-color);
    }

    .footer-links a {
        color: #DDD;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--secondary-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .contact-header {
            padding: 80px 0;
        }

        .contact-header h1 {
            font-size: 2.5rem;
        }

        .contact-form-card,
        .contact-info-card {
            padding: 30px;
            margin-bottom: 30px;
        }

        .contact-info-card {
            margin-top: 30px;
        }

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