* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ===================================
   HERO SECTION
   ================================== */
.hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url(../images/contact.webp) center / cover;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(212, 165, 116, 0.1) 50%, transparent 51%);
    pointer-events: none;
}

/* ===================================
   BREADCRUMB
   ================================== */
.breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.breadcrumb h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #D4A574;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   CONTACT SECTION
   ================================== */
.contact-section {
    padding: 100px 0;
    background-color: #e8ded2;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2.5rem;
    color: #5c3d24;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2::after,
.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #5b881e;
    border-radius: 2px;
}

.contact-info-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #5c3d24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: #5c3d24;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   CONTACT FORM
   ================================== */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

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

.submit-btn {
    background: rgb(92 61 36);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.submit-btn:hover {
    background: green;
    color: #fe933b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* ===================================
   MAP SECTION
   ================================== */
.map-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #5c3d24;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #5b881e;
    border-radius: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   FOOTER
   ================================== */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #5d4037 100%);
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D4A574;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #D4A574;
    padding-left: 5px;
}

.contact-info div {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.email-signup {
    display: flex;
    margin-top: 20px;
    max-width: 300px;
}

.email-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
}

.email-submit {
    background: #D4A574;
    color: #2c3e50;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.email-submit:hover {
    background: #F5941E;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    background: rgba(212, 165, 116, 0.3);
}

/* ===================================
   ANIMATIONS
   ================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .breadcrumb h1 {
        font-size: 2.8rem;
    }
    
    .contact-section,
    .map-section {
        padding: 70px 0;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .email-signup {
        max-width: 100%;
        margin: 20px auto 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
    }
    
    .breadcrumb h1 {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        gap: 15px;
        padding: 40px 15px;
    }
    
    .contact-section,
    .map-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .map-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .contact-info-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .breadcrumb h1 {
        font-size: 1.8rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .map-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}