        /* ====== CONTACT HERO ====== */
        .contact-hero {
            background: linear-gradient(rgba(134, 34, 32, 0.85), rgba(134, 34, 32, 0.9)), 
                        url('https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: #F8EEEF;
            padding: 120px 0 80px;
            text-align: center;
            margin-top: 70px;
        }

        .contact-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #F8EEEF;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ====== CONTACT CONTENT ====== */
        .contact-content {
            padding: 80px 0;
            background-color: #fff;
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            color: #862220;
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #D7B263;
        }

        .contact-info p {
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #862220;
            color: #D7B263;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h3 {
            color: #862220;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .contact-text p, .contact-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: #D7B263;
        }

        .social-contact {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .social-contact a {
            width: 40px;
            height: 40px;
            background-color: #D7B263;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-contact a:hover {
            background-color: #862220;
            transform: translateY(-3px);
        }

        .social-contact i {
            color: #862220;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-contact a:hover i {
            color: #D7B263;
        }

        /* ====== CONTACT FORM ====== */
        .contact-form {
            flex: 1;
            background-color: #F8EEEF;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-form h2 {
            color: #862220;
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #862220;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #D7B263;
            box-shadow: 0 0 0 2px rgba(215, 178, 99, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-btn {
            width: 100%;
            padding: 14px;
            font-size: 1.1rem;
        }

        /* ====== MAP SECTION ====== */
        .map-section {
            padding: 80px 0;
            background-color: #F8EEEF;
        }

        .map-section h2 {
            text-align: center;
            color: #862220;
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ====== RESPONSIVE STYLES ====== */
        @media (min-width: 768px) {
            .contact-hero h1 {
                font-size: 3.5rem;
            }
            
            .contact-container {
                flex-direction: row;
            }
            
            .contact-info h2 {
                font-size: 2.2rem;
            }
            
            .contact-form {
                padding: 40px;
            }
        }

        @media (min-width: 992px) {
            .contact-hero {
                padding: 150px 0 100px;
            }
            
            .contact-hero h1 {
                font-size: 4rem;
            }
        }