/* Contact Page Specific Styles */

/* Banner Full Width Styles - Matching hospedaje.html */
.banner-full-width {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    background-image: url('../images/b-contacto-caldera.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,rgba(0, 108, 250, 0.65) 15%, rgba(161, 206, 206, 0.31) 58%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.highlight-text {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-family: 'Knewave', cursive;
    font-size: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-full-width {
        height: 100vh;
        margin-top: 70px;
        padding: 60px 15px;
    }
    
    .banner-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .banner-full-width {
        height: 100vh;
        margin-top: 60px;
        padding: 40px 10px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
}

/* Animation for banner elements */
.banner-content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hover effects for interactive elements */
.banner-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a4a5c 0%, #2d6b7a 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/parque-acuatico/fondo-agua-b.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.contact-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    color: #ffd700;
    display: block;
}

.title-line-2 {
    color: #ff69b4;
    display: block;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image {
    text-align: center;
    padding: 2rem 0;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

/* Location Section */
.location-section {
    background: white;
    padding: 0;
    margin: 0;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.location-section .container-fluid {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
}

.location-section .row {
    margin: 0;
    padding: 0;
}

.location-section .col-lg-6 {
    padding: 0;
    margin: 0;
}

.location-section .col-lg-6:last-child {
    padding: 40px;
}

.location-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1rem;
}

.location-subtitle {
    font-family: 'Knewave', cursive;
    font-size: 2rem;
    font-weight: 300;
    color: #a1cece;
    margin-bottom: 2rem;
    line-height: 1;
}

.location-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1a4a5c;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-container {
    position: relative;
    padding: 0;
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
}

.map-character {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.map-character img {
    max-width: 120px;
    height: auto;
}

/* Location Contact Info Styles */
.location-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #a1cece;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1a4a5c;
}

.contact-item i {
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 0.9rem;
}

.contact-item span {
    font-weight: 600;
}

.whatsapp-item {
    margin-top: 1.5rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-link i {
    font-size: 1.2rem;
    margin-right: 8px;
    background: none;
    width: auto;
    height: auto;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 60px 0;
    position: relative;
}

.contact-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #1a4a5c;
    margin: 0;
}

.whatsapp-card {
    background: #ffd700 !important;
    padding: 2.5rem 2rem !important;
    min-width: 250px;
}

.whatsapp-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1a4a5c;
}

.whatsapp-button i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.whatsapp-button span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.whatsapp-button small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Media Section */
.social-section {
    background-image: url('../images/restaurante/f-platillos-restaurante.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.social-section .container {
    position: relative;
    z-index: 2;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.social-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: #e4405f;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 50px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.form-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8e3482;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Make the form-text container fill available height */
.form-text {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make the image adjust to container height */
.form-text img {
    height: 100%;
    max-height: 400px;
    width: auto;
    object-fit: contain;
    flex: 1;
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 0.3rem;
    display: block;
}

.form-control {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.btn-primary {
    background: #ffd700;
    border: none;
    color: #1a4a5c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mid Footer Banner */
.mid-footer-banner {
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mid-footer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/parque-acuatico/fondo-agua-b.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.mid-footer-banner .container {
    position: relative;
    z-index: 2;
}

.mid-footer-banner h2 {
    font-family: 'Knewave', cursive;
    font-size: 2.5rem;
    font-weight: 200;
    color:  #8e3482;
    text-shadow: 3px 3px 0px #ffed4e;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .location-subtitle {
        font-size: 2.5rem;
    }
    
    .mid-footer-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .location-section,
    .contact-info-section,
    .social-section,
    .contact-form-section {
        padding: 40px 0;
    }
    
    .location-title,
    .social-title {
        font-size: 2rem;
    }
    
    .location-subtitle {
        font-size: 2rem;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }
    
    .map-character {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 1rem;
    }
    
    .map-character img {
        max-width: 80px;
    }
    
    .mid-footer-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .location-title,
    .social-title {
        font-size: 1.8rem;
    }
    
    .location-subtitle {
        font-size: 1.8rem;
    }
    
    .location-text,
    .social-text {
        font-size: 1rem;
    }
    
    .form-text h2 {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .mid-footer-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .location-section,
    .contact-info-section,
    .social-section,
    .contact-form-section {
        padding: 30px 0;
    }
    
    .location-title,
    .social-title {
        font-size: 1.5rem;
    }
    
    .location-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .whatsapp-button span {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon i {
        font-size: 1.2rem;
    }
    
    .form-text h2 {
        font-size: 1.2rem;
    }
    
    .mid-footer-banner h2 {
        font-size: 1.5rem;
    }
}
