html {
    scroll-behavior: smooth;
}

:root {
    --brand-gold: #E6B373;
    --brand-deep: #004D3F;
    --text-dark: #1E1E1E;
    --text-light: #F5F5F5;
    --surface: #FFFFFF;
    --surface-alt: #F3F6F4;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 45%, #EEF3F1 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.container {
    width: min(1150px, 90%);
    margin: 0 auto;
}

.site-header {
    background: var(--brand-deep);
    border-bottom: 1px solid rgba(230, 179, 115, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow: visible;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 56px;
    column-gap: 1.5rem;
}

.branding {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-light);
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    background: var(--brand-gold);
    color: var(--brand-deep);
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
}

.logo-image {
    height: 180px;
    width: auto;
    display: block;
    margin-top: -45px;
    margin-bottom: -20px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
}

.brand-text h1 {
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.brand-text p {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-top: 0.1rem;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 0.3rem;
    margin-right: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-btn.active {
    background: var(--brand-gold);
    color: var(--brand-deep);
    font-weight: 700;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.88rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -6px;
    height: 3px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    transform: scaleX(1);
}

.hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
    color: var(--text-light);
    background: linear-gradient(118deg, rgba(0, 77, 63, 0.94), rgba(0, 77, 63, 0.82)), url('../images/hotel-breeze.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230, 179, 115, 0.32), transparent 60%), linear-gradient(130deg, rgba(0, 62, 51, 0.7) 0%, rgba(0, 77, 63, 0.2) 70%, transparent 100%);
}

.hero .container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-inline: clamp(1.4rem, 6vw, 4rem);
}

.hero .hero-content {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: clamp(2.2rem, 5vw, 3.2rem) clamp(2.4rem, 6vw, 3.6rem);
    background: rgba(255, 255, 255, 0.08);
    border-radius: clamp(20px, 2.7vw, 30px);
    display: grid;
    gap: 1.1rem;
    box-shadow: 0 28px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(26px);
    overflow: hidden;
}

.hero .hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(230, 179, 115, 0.12), transparent 45%);
    pointer-events: none;
}

.hero .hero-content::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    opacity: 0.6;
    pointer-events: none;
}

.hero h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.9rem);
    margin: 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    white-space: nowrap;
    letter-spacing: 0.4px;
    text-align: center;
}

.hero p {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    margin: 0 auto;
    max-width: 720px;
    color: rgba(230, 242, 238, 0.92);
    text-align: center;
}

.hero .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
}

.hero-note {
    color: rgba(0, 77, 63, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(230, 179, 115, 0.16);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
}

.hero-note::before {
    content: "";
    width: 18px;
    height: 2px;
    background: rgba(0, 77, 63, 0.65);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
}

.meta-item {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 0.35rem;
}

.meta-item strong {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.94);
}

.meta-item span {
    font-size: 0.82rem;
    color: rgba(230, 242, 238, 0.75);
}

.cta-break {
    background: linear-gradient(135deg, rgba(0, 77, 63, 0.9), rgba(0, 77, 63, 0.8)), url('../images/hotel-skyline.jpg') center/cover no-repeat;
    padding: 3.4rem 0;
    position: relative;
    border-top: 1px solid rgba(230, 179, 115, 0.25);
    border-bottom: 1px solid rgba(230, 179, 115, 0.25);
}

.cta-break::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), transparent 60%);
}

.cta-break .container {
    position: relative;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.cta-content p {
    color: rgba(245, 245, 245, 0.78);
    max-width: 520px;
}

.cta-button.secondary {
    background: var(--surface);
    color: var(--brand-deep);
    min-width: 210px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: var(--brand-gold);
    color: var(--brand-deep);
}

.section {
    margin: 4rem 0;
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 246, 244, 0.96) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .section {
        margin: 2rem 0;
        padding: 2.5rem 0;
    }

    .section .section-head {
        margin-bottom: 1.8rem;
        padding: 0 1rem;
    }

    .section .section-head h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .section .section-head p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.section .section-head {
    text-align: center;
    color: var(--brand-deep);
    margin-bottom: 2.5rem;
}

.section .section-head h3 {
    font-size: 2rem;
    color: var(--brand-deep);
    margin-bottom: 0.6rem;
}

.section .section-head p {
    color: rgba(30, 30, 30, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

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

    .service-card {
        padding: 1.5rem;
        padding-top: 2.2rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-points {
        gap: 0.6rem;
    }

    .service-points li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}


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

.card h4 {
    font-size: 1.35rem;
    color: var(--brand-deep);
    margin-bottom: 0.9rem;
}

.card p {
    color: rgba(30, 30, 30, 0.75);
    margin-bottom: 0;
    flex: 1 0 auto;
}

.card ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-top: auto;
}

.card ul li {
    position: relative;
    padding-right: 1.2rem;
    color: rgba(30, 30, 30, 0.7);
    font-weight: 500;
}

.card ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--brand-deep);
}

.card.hotel {
    padding: 0;
    overflow: hidden;
    gap: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 77, 63, 0.08);
}

.card.hotel .hotel-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card.hotel .hotel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
}

.card.hotel .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform var(--transition);
}

.card.hotel:hover .hotel-image img {
    transform: scale(1.1);
}

.card.hotel .hotel-body {
    padding: clamp(1.8rem, 3vw, 2.4rem);
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
}

.card.hotel p {
    margin: 0;
    color: rgba(30, 30, 30, 0.72);
}

.card.hotel ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: auto;
}

.card.hotel ul li {
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.card.hotel ul li::before {
    content: none;
}

.hotel-gallery {
    display: inline-flex;
    gap: 0.75rem;
    padding-top: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.hotel-gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hotel-gallery img:hover,
.hotel-gallery img:focus {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.15);
}

.hotel-gallery::-webkit-scrollbar {
    height: 6px;
}

.hotel-gallery::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

.hotel-gallery::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.card.hotel .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.card.hotel .tag {
    background: rgba(0, 77, 63, 0.08);
    color: var(--brand-deep);
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.card.hotel.placeholder .tag {
    background: rgba(230, 179, 115, 0.15);
    color: rgba(0, 77, 63, 0.85);
}

.card.hotel.placeholder p {
    color: rgba(30, 30, 30, 0.6);
}

.hotel-featured-section {
    margin: 3rem 0 4rem;
    display: grid;
    gap: 2rem;
    align-items: start;
}

.hotel-content-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    align-items: start;
    direction: ltr;
}

.hotel-content-layout .hotel-info-cards {
    align-self: start;
}

.hotel-subtitle {
    font-size: 1.8rem;
    color: var(--brand-deep);
    margin: 0 0 1.5rem;
    text-align: center;
    font-weight: 700;
}

.hotel-content-layout .hotel-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hotel-info-card-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-info-card-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(230, 179, 115, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-info-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 179, 115, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

.hotel-info-card-item:hover::before {
    opacity: 1;
}

.hotel-info-card-item h5 {
    font-size: 1.08rem;
    color: var(--brand-deep);
    margin: 0 0 0.8rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(230, 179, 115, 0.4);
    letter-spacing: 0.03em;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
}

.hotel-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    flex: 1;
}

.hotel-info-list li {
    font-size: 0.92rem;
    color: rgba(0, 77, 63, 0.9);
    line-height: 1.7;
    padding-right: 1.1rem;
    font-weight: 500;
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.hotel-info-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: rgba(230, 179, 115, 0.85);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.1;
    top: 0.1rem;
}

.hotel-info-list li strong {
    color: var(--brand-deep);
    font-weight: 700;
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    font-family: 'Cairo', sans-serif;
}

.hotel-video-single {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.hotel-video-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.08);
    aspect-ratio: 9 / 16;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}


.hotel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .hotel-content-layout {
        grid-template-columns: 320px 1fr;
        gap: 1.5rem;
    }
    
    .hotel-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hotel-content-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hotel-video-single {
        max-width: 100%;
        margin: 0 auto;
    }

    .hotel-video-wrapper {
        border-radius: 12px;
        overflow: hidden;
    }

    .hotel-video-wrapper video {
        width: 100%;
        height: auto;
    }

    .hotel-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hotel-info-card-item {
        padding: 1.2rem;
    }

    .hotel-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hotel-video-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hotel-content-layout .hotel-info-cards {
        grid-template-columns: 1fr;
    }
    
    .hotel-info-cards {
        grid-template-columns: 1fr;
    }
    
    .hotel-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.about.section {
    margin: 4rem 0;
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 244, 0.98) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.about .about-content {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4.2vw, 2.8rem);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: grid;
    gap: 1.4rem;
}

.about .about-content h3 {
    font-size: 2rem;
    color: var(--brand-deep);
}

.about .about-content h4 {
    font-size: 1.15rem;
    color: rgba(0, 77, 63, 0.85);
}

.about .about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(30, 30, 30, 0.76);
}

.about .about-content ul {
    list-style: disc inside;
    display: grid;
    gap: 0.5rem;
    color: rgba(30, 30, 30, 0.72);
    font-size: 0.96rem;
}

.about .values-inline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.85rem;
    padding: 0;
    margin-top: 0.5rem;
}

.about .values-inline li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 77, 63, 0.08);
    border: 1px solid rgba(0, 77, 63, 0.12);
    color: rgba(0, 77, 63, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.about .values-inline li:hover {
    background: rgba(0, 77, 63, 0.12);
    border-color: rgba(230, 179, 115, 0.3);
    transform: translateY(-2px);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(230, 179, 115, 0.9);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: stretch;
    margin-top: 2.4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 3vw, 2.2rem);
    box-shadow: none;
    border: none;
    display: grid;
    gap: 1.2rem;
}

.contact-card.contact-primary {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2.2rem;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    overflow: hidden;
    box-shadow: none;
}

.contact-card.contact-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(230, 179, 115, 0.18), transparent 55%);
    pointer-events: none;
}

.contact-card.contact-primary > * {
    position: relative;
    z-index: 1;
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--brand-deep);
    margin: 0;
}

.contact-card p {
    color: rgba(30, 30, 30, 0.68);
    line-height: 1.75;
    margin: 0;
}

.contact-items {
    display: grid;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.6rem;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-label {
    font-weight: 700;
    color: var(--brand-deep);
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: rgba(30, 30, 30, 0.75);
    text-decoration: none;
}

.channel-stack {
    display: grid;
    gap: 2rem;
}

.contact .channel-stack {
    gap: 2rem;
}

.contact .channel-google {
    float: none;
    margin: 0;
}

.channel-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.channel-duo .channel-block {
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.channel-duo .channel-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.channel-duo .channel-header {
    flex-shrink: 0;
}

.channel-duo .whatsapp-simple-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

@media (max-width: 768px) {
    .channel-duo {
        grid-template-columns: 1fr;
    }
}

.channel-block {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.96);
    border: none;
}

.contact .channel-block {
    box-shadow: none;
    border: none;
}


.channel-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 55%);
    opacity: 0.35;
    pointer-events: none;
}

.channel-inner {
    position: relative;
    z-index: 1;
    padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1.1rem, 1.9vw, 1.6rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    flex-wrap: nowrap;
}

.channel-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.channel-title > div {
    flex: 1;
    min-width: 0;
}

.channel-title h4,
.channel-title p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.channel-icon {
    display: grid;
    place-items: center;
}

.channel-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.channel-header h4 {
    margin: 0;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.98);
}

.channel-header p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
}

.channel-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.channel-button:hover,
.channel-button:focus {
    background: rgba(255, 255, 255, 0.4);
    color: rgba(0, 77, 63, 1);
}

.channel-button--light {
    background: rgba(255, 255, 255, 0.94);
    color: #0b5e3d;
    border: none;
}

.channel-button--light:hover,
.channel-button--light:focus {
    background: #ffffff;
    color: #084e31;
}

.channel-body {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.channel-body--stack {
    align-items: stretch;
}

.channel-embed {
    flex: 1 1 480px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.channel-embed--instagram {
    border: none;
    box-shadow: none;
}

.channel-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.channel-embed--facebook iframe {
    height: 720px;
    min-height: 500px;
}

.channel-embed.scrollable {
    max-height: 360px;
    overflow: auto;
}

.channel-embed.scrollable::-webkit-scrollbar {
    width: 6px;
}

.channel-embed.scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.channel-embed.scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.channel-side {
    flex: 0 1 190px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.channel-side .channel-button {
    width: 100%;
    justify-content: center;
}

.channel-qr {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.2));
}

.channel-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.channel-instagram {
    background: linear-gradient(118deg, #f58529 0%, #dd2a7b 48%, #8134af 100%);
}

.channel-facebook {
    background: linear-gradient(118deg, #1877f2 0%, #0f59bb 100%);
}

.channel-whatsapp {
    background: #075E54;
}

.channel-google {
    background: #FFFFFF;
    border: 2px solid;
    border-image: linear-gradient(135deg, #4285F4 0%, #34A853 30%, #FBBC05 60%, #EA4335 100%) 1;
    color: rgba(30, 30, 30, 0.9);
    box-shadow: none;
}

.channel-google::before {
    display: none;
}

.channel-google .channel-title h4 {
    color: var(--brand-deep);
}

.channel-google .channel-title p {
    color: rgba(30, 30, 30, 0.75);
}

.channel-google .channel-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.google-map-container {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.channel-google .whatsapp-simple-body {
    padding: 0;
}

.channel-google .google-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none !important;
    border-radius: 12px;
    box-shadow: none !important;
    outline: none !important;
}

.channel-details {
    flex: 1 1 380px;
    display: grid;
    gap: 0.95rem;
}

.channel-intro {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.channel-steps {
    display: grid;
    gap: 0.9rem;
}

.channel-step {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.7rem 0.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.channel-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: rgba(18, 56, 48, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.channel-step-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.channel-step-content p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
}

.channel-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.channel-summary-card {
    flex: 0 1 160px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.65rem 0.85rem;
    display: grid;
    gap: 0.35rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.channel-summary-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.05em;
}

.channel-summary-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.whatsapp-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(0.8rem, 2.4vw, 1.3rem);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 0.9rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.whatsapp-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0.8rem 0.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    align-items: center;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.6rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
}

.strip-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.strip-item p {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.75);
}

.strip-icon {
    font-size: 0.95rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.strip-cta {
    display: grid;
    gap: 0.4rem;
    justify-items: center;
    text-align: center;
}

.strip-qr {
    width: 140px;
    height: 140px;
}

.strip-cta span {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.76);
}

.whatsapp-simple {
    gap: 0.7rem;
}

.whatsapp-simple-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.9rem 0.8rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.whatsapp-simple-body.whatsapp-contact {
    gap: 0.7rem;
    justify-content: center;
}

.contact-text {
    flex: 1 1 260px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.84);
}

.whatsapp-tagline {
    display: grid;
    gap: 0.35rem;
    min-width: 200px;
}

.whatsapp-tagline strong {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.95);
}

.whatsapp-tagline span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 320px;
}

.whatsapp-qr-block {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    text-align: center;
}

.whatsapp-qr-block .strip-qr {
    width: 140px;
    height: 140px;
}

.whatsapp-qr-block span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.whatsapp-points {
    display: grid;
    gap: 0.6rem;
}

.whatsapp-point {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.55rem 0.7rem;
}

.whatsapp-point span {
    font-size: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.whatsapp-point strong {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.whatsapp-point p {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.76);
}

.whatsapp-mini-cta {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    text-align: center;
}

.whatsapp-mini-cta .channel-qr {
    width: 106px;
    height: 106px;
}

.whatsapp-mini-cta span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.78);
}

.floating-social {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    display: grid;
    gap: 0.65rem;
    z-index: 900;
}

.floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(12, 12, 12, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.floating-icon:hover,
.floating-icon:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.22);
}

.floating-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .floating-social {
        right: 0.8rem;
        bottom: 0.8rem;
        gap: 0.5rem;
    }

    .floating-icon {
        width: 44px;
        height: 44px;
    }

    .floating-icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .section .section-head h3 {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 1.2rem;
        padding-top: 2rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
    }

    .channel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .channel-title {
        width: 100%;
    }

    .channel-button {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }

    .footer-logo-image {
        max-height: 100px;
    }

    .site-footer {
        padding: 1.5rem 0 1rem;
    }

    .site-footer p {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .branding {
        width: 100%;
        justify-content: center;
    }

    .logo-image {
        height: 120px;
        margin-top: -30px;
        margin-bottom: -15px;
    }

    .brand-text h1 {
        font-size: 1.1rem;
    }

    .brand-text p {
        font-size: 0.7rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
    }

    .main-nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .language-switcher {
        margin-right: 0;
        margin-left: 0.5rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .hero {
        min-height: 360px;
    }

    .hero .hero-content {
        padding: 2rem 1.8rem;
        gap: 1rem;
        width: 100%;
    }
    
    .hero h2 {
        white-space: normal;
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        line-height: 1.4;
        text-align: center;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
    }

    .hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }

    .about .content {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .whatsapp-body {
        gap: 1rem;
    }

    .meta-card {
        flex: 1 1 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    justify-content: center;
}

.experience-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.4rem 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.experience-media {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    aspect-ratio: 9 / 16;
}

.experience-media video,
.experience-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

.experience-content {
    display: grid;
    gap: 0.75rem;
    text-align: center;
}

.experience-content h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(0, 77, 63, 0.92);
    letter-spacing: 0.03em;
}

.experience-content p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(28, 35, 33, 0.75);
}

.experience-badge {
    background: rgba(230, 179, 115, 0.18);
    color: rgba(0, 77, 63, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .experience-item {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .experience-media {
        border-radius: 12px;
        overflow: hidden;
    }

    .experience-media video {
        width: 100%;
        height: auto;
    }

    .experience-content {
        padding: 1rem 0 0;
    }

    .experience-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .experience-item h4 {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    .experience-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .experience-content {
        text-align: center;
    }
}

.services .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    position: relative;
    padding: 1.8rem;
    padding-top: 2.8rem;
    text-align: right;
}

.service-icon {
    position: absolute;
    top: -1.2rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 77, 63, 0.12);
    display: grid;
    place-items: center;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: rgba(0, 77, 63, 0.85);
    fill: rgba(0, 77, 63, 0.18);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h4 {
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--brand-deep);
}

.service-card p {
    margin-bottom: 1rem;
    color: rgba(30, 30, 30, 0.72);
}

.service-card .service-points {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
    color: rgba(0, 77, 63, 0.82);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
}

.service-card .service-points li {
    position: relative;
    padding-right: 1.4rem;
    padding-top: 0.1rem;
}

.service-card .service-points li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(230, 179, 115, 0.95);
    box-shadow: 0 0 0 3px rgba(230, 179, 115, 0.2);
}

.hotel-points {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    padding: 0;
    color: rgba(30, 30, 30, 0.72);
    font-size: 0.92rem;
}

.hotel-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hotel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230, 179, 115, 0.22), rgba(0, 77, 63, 0.14));
    border: 1px solid rgba(0, 77, 63, 0.18);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.hotel-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(0, 77, 63, 0.85);
    fill: rgba(255, 255, 255, 0.5);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hotel-featured {
    border: 1px solid rgba(230, 179, 115, 0.35);
    box-shadow: 0 28px 46px rgba(0, 0, 0, 0.12);
    position: relative;
}

.hotel-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 179, 115, 0.15), transparent 55%);
    pointer-events: none;
}

.hotel-featured .hotel-image {
    height: 300px;
}

.hotel-featured-note {
    font-weight: 700;
    color: rgba(230, 179, 115, 0.95);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.site-footer {
    background: rgba(0, 77, 63, 0.95);
    border-top: 1px solid rgba(230, 179, 115, 0.25);
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.site-footer .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    max-height: 120px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
}

.site-footer p {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .contact .contact-grid {
        gap: 1.6rem;
    }

    .channel-inner {
        padding: 1.2rem 1.2rem;
        gap: 0.9rem;
    }

    .channel-header {
        gap: 0.9rem;
    }

    .channel-body {
        flex-direction: column;
        gap: 0.9rem;
    }

    .channel-embed {
        flex: 1 1 100%;
    }

    .channel-embed.scrollable {
        max-height: 300px;
        min-height: 250px;
    }

    .channel-embed.scrollable iframe {
        height: 600px;
        width: 100%;
    }

    .channel-side {
        flex: 1 1 auto;
        gap: 0.5rem;
        padding: 0.7rem 0.9rem;
    }

    .channel-summary {
        flex-direction: column;
    }

    .whatsapp-strip {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }

    .whatsapp-simple-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.7rem 0.8rem;
    }

    .whatsapp-tagline span {
        max-width: 100%;
    }
}
