:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #FFF4C9;
    --light-color: #FFF4C9;
}
.navbar-custom {
    background-color: #999662;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-color) !important;
    overflow-x: hidden;
}

.bg-custom-light {
    background-color: var(--light-color) !important;
}

.hero h1, .hero p {
    color: rgb(29, 29, 29);
}

.hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/contacto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
}

.breadcrumb-container {
    background: #f8f5e4;
    padding: 15px 0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #2d4a3e;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #a8c09a;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f5e4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-column h2 {
    font-size: 2.5rem;
    color: #2d4a3e;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2d4a3e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8c09a;
    box-shadow: 0 0 0 3px rgba(168, 192, 154, 0.1);
}

.submit-btn {
    background: #2d4a3e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background: #1f3429;
    transform: translateY(-2px);
}

.contact-info-card {
    background: white;
    padding: 0.5rem;
    margin-top: 6rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    max-width: 550px;
    width: 100%;
    font-size: 0.95rem;
    max-height: 250px;  
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: #2d4a3e;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #a8c09a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text {
    color: #555;
    line-height: 1.5;
}

.business-hours {
    padding: 1.5rem;
    background: #f8f5e4;
    border-radius: 8px;
    text-align: center;
}

.business-hours h4 {
    color: #2d4a3e;
    margin-bottom: 0.5rem;
}

.business-hours p {
    color: #666;
}

.map-container {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
    border-radius: 8px;
}

.footer-contact {
    background: #d2691e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.footer-contact-item:hover {
    transform: translateY(-3px);
}

.footer-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.success input,
.form-group.success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: none;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-column h2,
    .footer-contact h2 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-form,
    .contact-info-card {
        padding: 1rem;
    }
    
    .footer-contact {
        padding: 40px 0;
    }
}
.bg-custom-footer {
    background-color: #CE6516 !important;
}

