/* Variables de colores */
:root {
    --primary-color: #0a7a8c; /* Color turquesa del logo */
    --secondary-color: #d9b44a; /* Color dorado del logo */
    --dark-color: #333333;
    --light-color: #f8f8f8;
    --gray-color: #666666;
    --white-color: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background: #f2cc0d;
    color: #232010;
    padding: .85rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: #232010;
    color: #fff;
    padding: .7rem 1rem;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

/* Header y navegación */
header {
    background-color: #1a5f7a;
    color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    color: white;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #f2cc0d;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 900px){
    .menu-toggle {
        display: block;
    }
    .menu {
        display: none;
        flex-direction: column;
        background: #0f0f0f;
        position: absolute;
        right: 1rem;
        top: 64px;
        padding: 1rem;
        border-radius: 12px;
    }
    .menu.open {
        display: flex;
    }
}

/* Sección Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sección Servicios */
.services {
    padding: 100px 0;
    background-color: var(--white-color);
}

.services-image {
    text-align: center;
    margin-bottom: 40px;
}

.services-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
}

/* Sección Habitaciones */
.rooms {
    padding: 100px 0;
    background-color: var(--light-color);
}

.rooms-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.room-info p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
}

.room-features li {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.room-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-controls button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

/* Sección Cerca de Lomas Inn */
.nearby {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.nearby-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nearby-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nearby-body {
    padding: 20px;
}

.nearby-body h3 {
    color: #1a5f7a;
    margin-bottom: 10px;
}

.nearby-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.nearby-meta i {
    color: #f2cc0d;
    margin-right: 5px;
}

.nearby-cta {
    margin-top: 20px;
}

/* Sección Ubicación */
.location {
    padding: 100px 0;
    background-color: var(--white-color);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-info p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.location-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.location-info h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

/* Sección Contacto */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.social-media {
    margin-top: 40px;
}

.social-media h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--secondary-color);
    font-style: italic;
}

footer h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: var(--light-color);
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.in {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 992px) {
    .room-card, .location-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 0;
        text-align: center;
    }
    
    .menu a {
        display: block;
        padding: 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .room-info, .contact-form, .contact-info {
        padding: 20px;
    }
}

/* Estilos para nuevos elementos de ubicación y reservación */
.location-actions {
    margin-top: 1rem;
}

.location-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-actions .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estilos para botones de reservación */
.booking-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.booking-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-booking, .btn-agoda {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-booking {
    background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
    color: var(--white-color);
    border: none;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.3);
    color: var(--white-color);
}

.btn-agoda {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: var(--white-color);
    border: none;
}

.btn-agoda:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
    color: var(--white-color);
}

/* Responsive para botones de reservación */
@media (max-width: 768px) {
    .booking-buttons {
        gap: 0.75rem;
    }
    
    .btn-booking, .btn-agoda {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .booking-links {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .btn-booking, .btn-agoda {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .location-actions .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Estilos mejorados para la sección de contacto */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(10, 122, 140, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* Estilos para tarjeta de información de contacto */
.contact-info-card .contact-details {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white-color);
    font-size: 1rem;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text span {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.4;
}

/* Estilos para tarjeta de reservaciones */
.booking-card .booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-booking, .btn-agoda {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-booking {
    background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
    color: var(--white-color);
}

.btn-agoda {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: var(--white-color);
}

.btn-booking:hover, .btn-agoda:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--white-color);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon i {
    font-size: 1.2rem;
    color: var(--white-color);
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Estilos para tarjeta de redes sociales */
.social-card .social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    width: 100%;
    box-sizing: border-box;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white-color);
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white-color);
    border-color: #dc2743;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-color);
}

.social-icon i {
    font-size: 1.1rem;
    color: var(--white-color);
}

.social-text {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.social-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.social-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-color);
    line-height: 1.3;
}

.social-link:hover .social-name,
.social-link:hover .social-desc {
    color: var(--white-color);
}

/* Responsive para la nueva estructura de contacto */
@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 0.875rem;
        gap: 0.875rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .btn-booking, .btn-agoda {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-card .social-icons {
        max-width: 260px;
    }
    
    .social-link {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
    
    .social-name {
        font-size: 0.9rem;
    }
    
    .social-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .contact-header {
        margin-bottom: 1.5rem;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }
    
    .card-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon i {
        font-size: 0.9rem;
    }
    
    .contact-text strong {
        font-size: 0.85rem;
    }
    
    .contact-text span {
        font-size: 0.95rem;
    }
    
    .btn-booking, .btn-agoda {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .btn-icon {
        width: 35px;
        height: 35px;
    }
    
    .btn-icon i {
        font-size: 1rem;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
    
    .social-card .social-icons {
        max-width: 240px;
    }
    
    .social-link {
        padding: 0.75rem 0.875rem;
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon i {
        font-size: 0.9rem;
    }
    
    .social-name {
        font-size: 0.85rem;
    }
    
    .social-desc {
        font-size: 0.7rem;
    }
}

/* Estilos para la nueva sección de redes sociales */
.social-media-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--white-color);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facebook-card::before {
    background: linear-gradient(90deg, #1877f2, #42a5f5);
}

.instagram-card::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.social-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facebook-card .social-icon-large {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram-card .social-icon-large {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-large i {
    font-size: 3rem;
    color: var(--white-color);
}

.social-card:hover .social-icon-large {
    transform: scale(1.1);
}

.social-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-description {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-btn {
    background: #1877f2;
    color: var(--white-color);
}

.facebook-btn:hover {
    background: #166fe5;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white-color);
}

.instagram-btn:hover {
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.social-btn i {
    font-size: 1.2rem;
}

/* Responsive para la sección de redes sociales */
@media (max-width: 768px) {
    .social-media-section {
        padding: 80px 0;
    }
    
    .social-header {
        margin-bottom: 3rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-card {
        padding: 2.5rem 2rem;
    }
    
    .social-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .social-icon-large i {
        font-size: 2.5rem;
    }
    
    .social-card h3 {
        font-size: 1.5rem;
    }
    
    .social-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .social-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-header {
        margin-bottom: 2.5rem;
    }
    
    .social-header .section-title {
        font-size: 2rem;
    }
    
    .social-header .section-subtitle {
        font-size: 1rem;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
    }
    
    .social-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .social-icon-large i {
        font-size: 2rem;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
    }
    
    .social-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }
    
    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
}