/* Contact & Location Section Styles */
.block-contact {
    position: relative;
    padding: 8rem 0;
    background-color: #FEF9ED;
    color: #5D524B;
    z-index: 10;
}

.contact-container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.contact-label {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(166, 124, 82, 0.1);
    border-radius: 50px;
    color: #A67C52;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(166, 124, 82, 0.2);
}

.contact-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #5D524B;
}

.contact-title span {
    display: block;
    color: #A67C52;
    font-weight: 400;
}

.contact-sub {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Wrapper (2 Columns) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

/* Left: Form Area */
.contact-form-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 82, 75, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.form-title-group {
    margin-bottom: 2.5rem;
}

.form-title-group h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-step {
    margin-bottom: 3rem;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background: #A67C52;
    color: #FEF9ED;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    opacity: 0.9;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(93, 82, 75, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.3rem;
    color: #5D524B;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus {
    outline: none;
    border-color: #A67C52;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235D524B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: max-content;
    align-self: flex-start;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #A67C52 0%, #8B6340 100%);
    color: #FEF9ED;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.3);
}

/* Right: Sidebar Cards */
.sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.contact-card,
.cta-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 82, 75, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(166, 124, 82, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A67C52;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-content p {
    font-size: 1.35rem;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #A67C52;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(166, 124, 82, 0.2);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #A67C52;
    color: #fff;
}

/* CTA Card Special */
.cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    border: none;
    align-items: center;
}

.cta-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-card p {
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.cta-btn {
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    min-width: 120px;
}

.cta-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.cta-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Location Map Section */
.location-section {
    background: #fff;
    /* or dark if desired, keep light for theme */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(93, 82, 75, 0.1);
}

.location-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.location-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.location-header span {
    color: #A67C52;
    font-weight: 500;
}

.map-container {
    padding: 2rem 3rem 3rem;
    background: #FBF4F0;
}

.map-card-overlay {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    /* Simplification: just showing the info part over map conceptually, but here distinct */
    gap: 0;
}

@media (min-width: 900px) {
    .map-card-overlay {
        grid-template-columns: 2fr 1fr;
    }
}

.map-visual {
    background-color: #e5e5e5;
    min-height: 400px;
    position: relative;
}

/* Simulated Map Placeholder */
.map-visual iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) sepia(0.2);
    /* Custom map style */
}

.location-details {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #fff;
}

.loc-item-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.loc-address {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
}

.loc-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.loc-btn {
    flex: 0 1 auto;
    width: max-content;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.loc-btn.primary {
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.08) 0%, rgba(166, 124, 82, 0.15) 100%);
    color: #A67C52;
    border: 1.5px solid #A67C52;
    box-shadow: 0 2px 8px rgba(166, 124, 82, 0.1);
}

.loc-btn.secondary {
    background: transparent;
    color: #5D524B;
    border-color: rgba(93, 82, 75, 0.2);
}

.loc-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #A67C52 0%, #8B6340 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .map-container {
        padding: 1rem;
    }

    .map-card-overlay {
        grid-template-columns: 1fr;
    }

    .loc-actions {
        flex-direction: column;
        align-items: center;
    }
}