/* ===== SECTIONS CSS (part 2) ===== */

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1920&q=85');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.95) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px
}

.hero-content .hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 24px;
    opacity: 0;
    border: 2px solid rgba(212, 175, 55, 0.3)
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
    opacity: 0
}

.hero-content .hero-sub {
    font-size: clamp(.9rem, 2vw, 1.15rem);
    color: rgba(245, 240, 232, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0
}

.hero-content .hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto 24px;
    opacity: 0
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 0;
    background: transparent
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left .5s var(--ease);
    z-index: -1
}

.btn-primary:hover {
    color: var(--black);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.25)
}

.btn-primary:hover::before {
    left: 0
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    z-index: 2
}

.hero-scroll-indicator span {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.5)
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite
}

@keyframes scrollDown {
    0% {
        top: -50%
    }

    100% {
        top: 100%
    }
}

/* ABOUT TEASER */
.about-teaser {
    background: var(--charcoal)
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-teaser-text {
    padding-right: 20px
}

.about-teaser-text .label {
    font-size: .75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600
}

.about-teaser-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 24px
}

.about-teaser-text p {
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 16px;
    font-size: .95rem
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all .3s ease
}

.btn-secondary:hover {
    gap: 20px
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    transition: transform .3s ease
}

.about-teaser-img {
    position: relative;
    height: 500px;
    overflow: hidden
}

.about-teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.about-teaser-img:hover img {
    transform: scale(1.05)
}

.about-teaser-img::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none
}

/* ROOMS */
.rooms {
    background: var(--black);
    overflow: hidden
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px
}

.room-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all .5s ease
}

.room-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px)
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease
}

.room-card:hover img {
    transform: scale(1.08)
}

.room-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%)
}

.room-card-overlay .room-tag {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--gold);
    font-size: .65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.room-card-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 8px
}

.room-card-overlay p {
    font-size: .85rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--gold);
    letter-spacing: 1px
}

/* SERVICES PREVIEW */
.services-preview {
    background: var(--charcoal)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .5s ease
}

.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(.4)
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
    transition: background .5s ease
}

.service-card:hover .service-card-content {
    background: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.85))
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: transform .4s ease
}

.service-card:hover h3 {
    transform: translateY(-12px)
}

.service-card .service-desc {
    font-size: .85rem;
    color: rgba(245, 240, 232, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease .1s;
    line-height: 1.5
}

.service-card:hover .service-desc {
    opacity: 1;
    transform: translateY(0)
}

.service-card .gold-line {
    margin: 8px 0;
    width: 40px;
    opacity: 0;
    transition: opacity .3s ease .15s
}

.service-card:hover .gold-line {
    opacity: 1
}

/* GALLERY */
.gallery {
    background: var(--black)
}

.masonry-grid {
    column-count: 3;
    column-gap: 16px
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform .6s ease
}

.masonry-item:hover img {
    transform: scale(1.05)
}

/* FOOTER */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 16px
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7
}

.footer h4 {
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px
}

.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: .85rem;
    color: rgba(245, 240, 232, 0.5);
    transition: all .3s ease
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 10px
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0
}

.footer-map {
    width: 100%;
    height: 180px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    filter: grayscale(1) brightness(.6) contrast(1.2);
    transition: filter .3s ease
}

.footer-map:hover {
    filter: grayscale(0) brightness(.8)
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: rgba(245, 240, 232, 0.3)
}

.footer-bottom p:last-child {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FLOATING CTAs */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px)
}

.float-btn.phone {
    background: linear-gradient(135deg, #2196F3, #1565C0)
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E)
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: white
}

.float-btn.phone svg {
    fill: white
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite
}

.float-btn.whatsapp::before {
    background: rgba(37, 211, 102, 0.3)
}

.float-btn.phone::before {
    background: rgba(33, 150, 243, 0.3)
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5
    }

    50% {
        transform: scale(1.4);
        opacity: 0
    }
}

/* PAGE HERO (about/services) */
.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85))
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 16px
}

.page-hero p {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.6);
    max-width: 500px;
    margin: 0 auto
}

/* COUNTERS */
.counters {
    background: var(--charcoal)
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center
}

.counter-item {
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all .4s ease
}

.counter-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold)
}

.counter-item .counter-icon {
    margin-bottom: 16px
}

.counter-item .counter-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5
}

.counter-item .counter-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px
}

.counter-item .counter-label {
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5)
}

/* MENU CARDS (about page) */
.full-menu {
    background: var(--black)
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

.menu-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    cursor: pointer
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .5s ease
}

.menu-card:hover img {
    transform: scale(1.1);
    filter: brightness(.35)
}

.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transition: background .4s ease
}

.menu-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    transition: transform .3s ease
}

.menu-card:hover h3 {
    transform: translateY(-8px)
}

.menu-card .menu-desc {
    font-size: .82rem;
    color: rgba(245, 240, 232, 0.65);
    opacity: 0;
    transform: translateY(15px);
    transition: all .4s ease .1s
}

.menu-card:hover .menu-desc {
    opacity: 1;
    transform: translateY(0)
}

/* SERVICES PAGE - ELEGANT REDESIGN */
.elegant-services {
    padding: 120px 0;
    background-color: var(--black);
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Even rows reverse direction on desktop */
.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.service-img-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.7s var(--ease);
}

.service-row:hover .service-img-col img {
    transform: scale(1.03);
}

.service-text-col {
    flex: 1;
    min-width: 300px;
}

.service-text-col .service-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 0px;
}

.service-text-col h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 15px;
}

.service-text-col p {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-benefits span {
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.05);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    border-radius: 20px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 900px) {
    .service-row {
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .service-img-col,
    .service-text-col {
        width: 100%;
        flex: none;
    }

    .service-img-col img {
        height: 350px;
    }
}

/* BOOK PAGE */
.book-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.book-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&q=85') center/cover
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85)
}

.book-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 24px
}

.book-content .book-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 2px solid rgba(212, 175, 55, 0.3)
}

.book-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px
}

.book-content p {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 40px
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all .4s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3)
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45)
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: white
}

.book-or {
    margin: 30px 0;
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3)
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all .4s ease;
    background: transparent
}

.btn-call:hover {
    background: var(--gold);
    color: var(--black)
}

.btn-call svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s var(--ease)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all .8s var(--ease)
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all .8s var(--ease)
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .masonry-grid {
        column-count: 2
    }

    .service-content {
        padding: 0 40px
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .about-teaser-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .about-teaser-text {
        padding-right: 0
    }

    .about-teaser-img {
        height: 350px
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .room-card {
        height: 450px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card {
        height: 300px
    }

    .counters-grid {
        gap: 20px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .hero-bg,
    .page-hero-bg {
        background-attachment: scroll
    }

    .service-section {
        height: auto;
        min-height: auto;
        padding: 80px 0
    }

    .service-content {
        padding: 0 24px;
        max-width: 100%
    }

    .service-content .service-num {
        font-size: 3.5rem
    }
}

@media(max-width:480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card {
        height: 350px
    }

    .masonry-grid {
        column-count: 1
    }

    .counters-grid {
        grid-template-columns: 1fr
    }

    .floating-ctas {
        bottom: 20px;
        right: 20px
    }

    .float-btn {
        width: 48px;
        height: 48px
    }

    .section {
        padding: 70px 0
    }
}