.contact-info {
    padding: 80px 0;
    background: var(--primary-color);
    font-weight: 600;
    opacity: 0.9;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}
.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-details h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
}
.contact-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-heavy);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}
.contact-icon {
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.3rem;
}
.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    display: inline-flex; 
    line-height: 1;
    align-items: center; 
    justify-content: center; 
    width: 100%;  
    height: 100%;
}
.contact-text h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}
.contact-text p {
    margin: 0.5rem 0;
}
.contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}
.contact-text a:hover {
    color: var(--accent-color);
}
.map-container {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.cta-section {
    padding: 60px 0;
    background-color: #441014;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23ffffff' fill-opacity='0.14'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 63px;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}
.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    text-align: center;
}
.cta-button.primary {
    background: var(--primary-color);
    color: var(--accent-color);
}
.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .map-container {
        height: 400px;
        order: 2;
    }
    .contact-details {
        order: 1;
    }
    .contact-details h2 {
        font-size: 2.2rem;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
}



@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
        background-size: 40px 42px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 0.9rem 1.8rem;
        min-width: 160px;
    }
}
@media (max-width: 576px) {
    .contact-info {
        padding: 60px 0;
    }
    .contact-container {
        padding: 0 1.5rem;
    }
    .contact-details h2 {
        font-size: 1.4rem;
    }
    .contact-item {
        padding: 0.2rem;
        gap: 0.5rem;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contact-icon i {
        font-size: 1rem;
    }
    .contact-text h3 {
        font-size: 1rem;
    }
    .contact-text P {
        font-size: 0.9rem;
    }
    .map-container {
        height: 250px;
    }
    .cta-section {
        padding: 30px 0;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        width: 100%;
        max-width: 250px;
        font-size: 0.9rem;
    }
}
@media (max-width: 425px) {
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .contact-icon i {
        font-size: 0.8rem;
    }
}