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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1e293b;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    max-width: 960px;
    width: 100%;
    padding: 0 2rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-content > nav {
    transition: opacity 0.25s ease;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eba59;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Booking Widget */
.bw {
    margin-top: 2.5rem;
    position: relative;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 900px;
    width: 100%;
}

.bw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    z-index: -1;
    pointer-events: none;
}

.bw-form {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.bw-field {
    flex: 1;
    min-width: 0;
    position: relative;
}

.bw-field--guests {
    flex: 1.4;
}

.bw-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.bw-input {
    width: 100%;
    height: 44px;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.bw-input:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.bw-input svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
}

.bw-input-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bw-chevron {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.bw-chevron.open {
    transform: rotate(180deg);
}

.bw-search {
    flex-shrink: 0;
}

.bw-search-btn {
    height: 44px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.bw-search-btn:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.bw-search-btn svg {
    width: 18px;
    height: 18px;
}

.bw-nights {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Calendar Dropdown */
.bw-calendar {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    min-width: 280px;
    display: none;
}

.bw-calendar.visible {
    display: block;
}

.bw-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.bw-cal-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.bw-cal-nav {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #64748b;
    transition: background 0.2s;
}

.bw-cal-nav:hover {
    background: #f1f5f9;
}

.bw-cal-nav svg {
    width: 18px;
    height: 18px;
}

.bw-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.bw-cal-day-name {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 4px 0;
}

.bw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.bw-cal-day {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    cursor: pointer;
    color: #1e293b;
    transition: all 0.15s;
    margin: 0 auto;
}

.bw-cal-day:hover:not(.disabled):not(.other-month) {
    background: #eff6ff;
    color: #1d4ed8;
}

.bw-cal-day.selected {
    background: #1d4ed8;
    color: white;
    font-weight: 600;
}

.bw-cal-day.today:not(.selected) {
    box-shadow: inset 0 0 0 2px #3b82f6;
}

.bw-cal-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.bw-cal-day.other-month {
    color: #d1d5db;
    cursor: default;
}

/* Guests Dropdown */
.bw-guests-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    min-width: 260px;
    display: none;
}

.bw-guests-dropdown.visible {
    display: block;
}

.bw-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.bw-guest-row + .bw-guest-row {
    border-top: 1px solid #e2e8f0;
}

.bw-guest-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
}

.bw-guest-age {
    font-size: 0.7rem;
    color: #94a3b8;
}

.bw-guest-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bw-guest-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    line-height: 1;
}

.bw-guest-btn:hover:not(:disabled) {
    background: #dbeafe;
    color: #1d4ed8;
}

.bw-guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bw-guest-count {
    width: 28px;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.bw-guest-done {
    margin-top: 0.75rem;
    width: 100%;
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: #1d4ed8;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.bw-guest-done:hover {
    color: #1e40af;
}

/* Booking Widget Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .tagline {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .bw {
        margin-top: 1rem;
        padding: 1rem;
    }

    .bw-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bw-field, .bw-field--guests, .bw-search {
        width: 100%;
    }

    .bw-input {
        height: 40px;
    }

    .bw-search-btn {
        height: 40px;
        width: 100%;
        justify-content: center;
    }

    .bw-calendar, .bw-guests-dropdown {
        left: 0;
        right: 0;
        min-width: unset;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 2rem;
    }
}

.features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1e293b;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

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

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-item.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-item:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.service-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Policies Section */
.policies {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
}

.policies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.policy-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.policy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.policy-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.policy-icon svg {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    flex-shrink: 0;
}

.policy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.policy-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.policy-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.policy-detail:last-of-type {
    border-bottom: none;
}

.policy-detail-label {
    font-size: 0.85rem;
    color: #64748b;
}

.policy-detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.policy-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.75rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* Left column: Brand */
.contact-col-brand {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    margin-bottom: 1rem;
}

.contact-brand-link:hover {
    opacity: 0.85;
}

.contact-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
}

.contact-brand-name {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-brand-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-social {
    display: flex;
    gap: 0.6rem;
}

.contact-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
    transform: translateY(-2px);
}

/* Center column: Map */
.contact-col-map {
    display: flex;
    align-items: stretch;
    min-height: 220px;
}

.contact-col-map iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: 12px;
}

/* Right column: Contact info */
.contact-col-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    text-align: left;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-info-list li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.contact-info-list li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-list li a svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.contact-info-list li a:hover svg {
    opacity: 1;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .contact-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .contact-brand-link {
        justify-content: center;
    }
    .contact-social {
        justify-content: center;
    }
    .contact-col-map {
        min-height: 200px;
    }
    .contact-info-list li a {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-col-brand {
        align-items: center;
    }

    .contact-brand-link {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-info-list li a {
        justify-content: center;
    }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease;
    min-height: 280px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.reservation-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    text-align: center;
    position: relative;
}

.reservation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #93c5fd, transparent);
}

.reservation-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.reservation-cta h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1e293b;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.reservation-cta p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-reservar {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-reservar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}
