:root {
    --primary-color: #ff6b6b;
    --secondary-color: #2d3436;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><path fill="%23e9ecef" d="M0,300 Q600,200 1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: -100px auto 3rem;
    position: relative;
    max-width: 1315px;
}

.logofinal {
    font-family: 'Arial', sans-serif;
    color: #325f14;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-primary {
    background-color: #325f14;
    border: none;
    border-radius: 25px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffbe00;
    color: #2d3436;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    /* height: 100%; */
    transition: all 0.3s ease;
    text-align: left;
}

.info-card:hover {
    box-shadow: 0 8px 20px #037e1d7a;
    border-color: #d0d0d0;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #325f14;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #325f14;
    padding-bottom: 0.75rem;
    display: inline-block;
    font-weight: 700;
}

.info-card .info-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card .info-item i {
    color: #ffbe00;
    font-size: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.info-card .info-item p {
    color: #636e72;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-card .info-item a {
    color: #636e72;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-card .info-item a:hover {
    color: #325f14;
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 658px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    border: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.why-contact {
    background: linear-gradient(135deg, #fff5f5 0%, #f9f9b7 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-box i {
    font-size: 2rem;
    color: #ffbe00;
    margin-right: 1rem;
    min-width: 50px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 15px;
        margin: 5px 0rem 0rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .why-contact {
        background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
        padding: 10px;
        border-radius: 15px;
        margin-bottom: 3rem;
    }
}

.col-lg-8 {
    flex: 0 0 auto;
    width: 85%;
}

.navbar {
    background: white;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Arial', sans-serif;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: none;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}