:root {
    --teal: #4a9b8c;
    --teal-dark: #357a6d;
    --teal-light: #6bbdae;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --cream: #f2ede6;
    --cream-dk: #e8e0d4;
    --brown: #3d2b1a;
    --brown-mid: #6b4c30;
    --gold: #c9a058;
    --text-dark: #2c2016;
    --text-mid: #5a4535;
    --text-light: rgba(255, 255, 255, 0.85);
    --nav-h: 70px;
    --clr-white: #fff;
    --teal-dk: var(--teal-dark);
    --ci-ink: var(--text-dark);
    --ci-muted: var(--text-mid);
    --ci-cream: var(--off-white);
    --ci-soft: var(--cream);
    --ci-blue-soft: #edf6f3;
    --ci-gold: var(--gold);
    --ci-orange: var(--brown-mid);
    --ci-green: var(--teal);
    --ci-blue: var(--teal-dark);
    --ci-purple: var(--teal-light);
    --ci-red: #a94a35;
    --ci-border: var(--cream-dk);
    --ci-shadow: 0 12px 28px rgba(61, 43, 26, 0.12);
}

.checking-in-page {
    background: var(--white);
    color: var(--ci-ink);
    font-family: 'Raleway', sans-serif;
}

.checking-in-page h1,
.checking-in-page h2,
.checking-in-page h3,
.checking-in-page h4 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0;
}

.checking-in-page a {
    text-decoration: none;
}

.ci-hero {
    min-height: 580px;
    padding: 135px 0 34px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: url('../img/checking.jpg') center/cover no-repeat;
    color: var(--white);
}

.ci-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(44, 32, 22, 0.62), rgba(53, 122, 109, 0.24) 48%, rgba(44, 32, 22, 0.7)),
        radial-gradient(circle at 50% 12%, rgba(201, 160, 88, 0.2), transparent 35%);
}

.ci-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ci-eyebrow {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.1rem);
    font-weight: 700;
    line-height: 0.82;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.ci-hero h1 {
    margin: 0 auto 10px;
    color: var(--gold);
    font-size: clamp(2.2rem, 6vw, 4.7rem);
    font-weight: 700;
    line-height: 0.9;
    max-width: 980px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.ci-hero__lead {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 28px;
    max-width: 720px;
}

.ci-hero__actions,
.ci-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ci-btn {
    min-width: 148px;
    border-radius: 999px;
    padding: 12px 22px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ci-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.ci-btn--gold {
    background: var(--ci-gold);
    box-shadow: 0 12px 22px rgba(201, 160, 88, 0.3);
}

.ci-btn--glass {
    background: rgba(61, 43, 26, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.ci-quick-grid {
    width: min(920px, 100%);
    margin: 44px auto 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.ci-quick-card {
    flex: 1 1 0;
    min-height: 60px;
    border-radius: 8px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: row;
    gap: 11px;
    align-items: center;
    justify-content: center;
}

.ci-quick-card i {
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 7px;
}

.ci-quick-card span {
    font-size: 0.72rem;
}

.ci-quick-card strong {
    font-size: 1rem;
    line-height: 1.15;
}

.ci-breadcrumb {
    position: sticky;
    top: 74px;
    z-index: 20;
    background: var(--white);
    border-bottom: 1px solid var(--ci-border);
    box-shadow: 0 4px 18px rgba(61, 43, 26, 0.06);
}

.ci-breadcrumb .container {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
}

.ci-breadcrumb a {
    color: var(--ci-ink);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 58px;
    font-size: 0.68rem;
    white-space: nowrap;
}

.ci-breadcrumb a:first-child {
    min-width: 140px;
    flex-direction: row;
    justify-content: flex-start;
    color: var(--brown);
    font-size: 0.8rem;
}

.ci-breadcrumb i {
    color: var(--ci-gold);
    font-size: 1rem;
}

.ci-section {
    padding: 40px 0;
}

.ci-section--cream,
.ci-villas {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.ci-section--blue {
    background: linear-gradient(180deg, var(--off-white) 0%, #edf6f3 100%);
}

.ci-section-title {
    text-align: center;
    margin: 0 auto 42px;
}

.ci-section-title h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.05rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.04;
}

.ci-section-title p {
    margin: 8px auto 0;
    max-width: 620px;
    color: var(--ci-muted);
    font-size: 0.96rem;
}

.ci-title-icon,
.ci-thanks i {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--ci-gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ci-villa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ci-villa-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: var(--ci-shadow);
}

.ci-villa-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.ci-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--white);
    color: var(--brown);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.ci-villa-card__body {
    padding: 22px;
}

.ci-villa-card h3 {
    margin: 0 0 7px;
    font-size: 1.75rem;
}

.ci-villa-card p,
.ci-villa-card li,
.ci-checkout-grid li,
.ci-amenity-grid li {
    color: var(--ci-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.ci-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0 18px;
}

.ci-tags span {
    border-radius: 999px;
    padding: 5px 9px;
    background: var(--cream);
    color: var(--brown-mid);
    font-size: 0.72rem;
    font-weight: 700;
}

.ci-mini-btn {
    flex: 1 1 88px;
    border-radius: 5px;
    padding: 8px 10px;
    color: var(--white);
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
}

.ci-mini-btn:hover {
    color: var(--white);
    filter: brightness(0.95);
}

.ci-mini-btn--red {
    background: var(--ci-red);
}

.ci-mini-btn--blue {
    background: var(--ci-blue);
}

.ci-mini-btn--green {
    background: var(--ci-green);
}

.ci-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.ci-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 2px;
    background: var(--ci-gold);
}

.ci-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    width: calc(50% + 29px);
    margin-bottom: 28px;
}

.ci-timeline article:nth-child(even) {
    margin-left: calc(50% - 29px);
}

.ci-timeline>article>i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ci-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 18px rgba(201, 160, 88, 0.25);
}

.ci-timeline article>div {
    position: relative;
    border-radius: 8px;
    padding: 23px;
    background: var(--off-white);
    border: 1px solid var(--cream-dk);
    box-shadow: var(--ci-shadow);
}

.ci-timeline span {
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--cream);
    color: var(--brown-mid);
    font-size: 0.72rem;
    font-weight: 800;
}

.ci-timeline h3,
.ci-info-box h3,
.ci-driving-box h3,
.ci-map-card h3,
.ci-services h3,
.ci-assist h3,
.ci-office-grid h3,
.ci-emergency h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.ci-timeline p {
    margin: 0 0 14px;
    color: var(--ci-muted);
}

.ci-timeline small {
    display: block;
    border-radius: 5px;
    padding: 9px 12px;
    background: #edf6f3;
    border: 1px solid var(--teal-light);
    color: var(--teal-dark);
}

.ci-info-box,
.ci-driving-box,
.ci-services,
.ci-assist {
    margin-top: 32px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background: var(--off-white);
    padding: 26px;
}

.ci-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ci-info-box ul,
.ci-driving-box ol,
.ci-amenity-grid ul,
.ci-checkout-grid ul {
    margin: 0;
    padding-left: 20px;
}

.ci-info-box li,
.ci-driving-box li {
    margin: 8px 0;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.ci-info-box li::marker,
.ci-driving-box li::marker {
    color: var(--ci-gold);
}

.ci-map-card {
    max-width: 960px;
    margin: 0 auto 34px;
    border-radius: 12px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: var(--ci-shadow);
}

.ci-map-card>h3 {
    text-align: center;
    margin-bottom: 22px;
}

.ci-map-options,
.ci-coordinates,
.ci-distance-grid,
.ci-checkout-grid,
.ci-contact-grid,
.ci-office-grid {
    display: grid;
    gap: 22px;
}

.ci-map-options,
.ci-coordinates,
.ci-office-grid {
    grid-template-columns: repeat(2, 1fr);
}

.ci-nav-card {
    border-radius: 8px;
    padding: 20px;
}

.ci-nav-card--waze {
    background: #edf6f3;
    border: 1px solid var(--teal-light);
}

.ci-nav-card--maps {
    background: var(--off-white);
    border: 1px solid var(--cream-dk);
}

.ci-nav-card i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--ci-blue);
}

.ci-nav-card--maps i {
    background: var(--ci-green);
}

.ci-nav-card h4 {
    margin: 12px 0 8px;
    font: 700 1rem 'Raleway', sans-serif;
}

.ci-nav-card p {
    min-height: 44px;
    color: var(--ci-muted);
    font-size: 0.86rem;
}

.ci-nav-card a {
    display: block;
    border-radius: 5px;
    padding: 11px;
    background: var(--ci-blue);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
}

.ci-nav-card--maps a {
    background: var(--ci-green);
}

.ci-coordinates {
    margin-top: 22px;
    padding: 18px;
    border-radius: 8px;
    background: var(--off-white);
}

.ci-coordinates div {
    padding: 14px;
    background: var(--white);
    border-radius: 6px;
}

.ci-coordinates span {
    display: block;
    color: var(--ci-muted);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.ci-distance-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 28px;
}

.ci-distance-grid div {
    border-radius: 8px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: 0 10px 20px rgba(61, 43, 26, 0.08);
}

.ci-distance-grid i {
    color: var(--ci-gold);
}

.ci-distance-grid h3 {
    margin: 10px 0 4px;
    font-size: 1rem;
}

.ci-distance-grid strong {
    color: var(--ci-gold);
}

.ci-distance-grid p {
    margin: 8px 0 0;
    color: var(--ci-muted);
    font-size: 0.82rem;
}

.ci-map-embed {
    height: 310px;
    margin-top: 34px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #edf6f3, var(--cream));
    box-shadow: var(--ci-shadow);
}

.ci-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ci-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.ci-accordion .accordion-item {
    margin-bottom: 14px;
    border: 1px solid var(--ci-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(61, 43, 26, 0.08);
}

.ci-accordion .accordion-button {
    min-height: 64px;
    background: var(--white);
    box-shadow: none;
    color: var(--ci-ink);
    font-weight: 700;
}

.ci-accordion .accordion-button:not(.collapsed) {
    background: var(--off-white);
    color: var(--brown-mid);
}

.ci-accordion .accordion-button span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ci-accordion .accordion-button i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ci-gold);
    color: var(--white);
}

.ci-accordion .accordion-body {
    color: var(--ci-muted);
    line-height: 1.7;
}

.ci-amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.ci-amenity-grid article,
.ci-checkout-grid article,
.ci-contact-card,
.ci-office-grid article,
.ci-packet-grid article {
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: 0 12px 26px rgba(61, 43, 26, 0.09);
}

.ci-amenity-grid article,
.ci-checkout-grid article {
    padding: 28px;
}

.ci-amenity-grid article>i,
.ci-checkout-grid article>i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.ci-blue {
    background: var(--ci-blue);
    padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}


.ci-orange {
    background: var(--ci-orange);
    padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ci-purple {
    background: var(--ci-purple);
       padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ci-pink {
    background: var(--gold);
       padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ci-cyan {
    background: var(--teal-light);
       padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ci-green {
    background: var(--ci-green);
       padding: 8px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ci-amenity-grid h3,
.ci-checkout-grid h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.ci-amenity-grid li::marker,
.ci-checkout-grid li::marker {
    color: var(--ci-gold);
}

.ci-services {
    text-align: center;
}

.ci-services>div,
.ci-assist>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.ci-services span,
.ci-assist span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ci-services i,
.ci-assist i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ci-gold);
    color: var(--white);
}

.ci-services small,
.ci-assist small {
    color: var(--ci-muted);
}

.ci-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ci-video-grid a {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    color: var(--ci-ink);
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: var(--ci-shadow);
}

.ci-video-grid img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

.ci-video-grid i {
    position: absolute;
    top: 58px;
    left: 50%;
    width: 52px;
    height: 52px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--ci-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(169, 74, 53, 0.28);
}

.ci-video-grid span {
    display: block;
    padding: 12px 14px 15px;
    font-weight: 700;
    font-size: 0.86rem;
}

.ci-packet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ci-packet-grid article {
    padding: 18px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.ci-packet-grid i {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--ci-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-packet-grid h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.ci-packet-grid p {
    margin: 0;
    color: var(--ci-muted);
    font-size: 0.8rem;
}

.ci-packet-grid small {
    color: var(--ci-muted);
}

.ci-packet-grid a {
    border-radius: 5px;
    padding: 8px 12px;
    color: var(--white);
    background: var(--ci-gold);
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 800;
}

.ci-note {
    margin: 22px 0 0;
    border: 1px solid var(--teal-light);
    background: #edf6f3;
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--teal-dark);
    font-size: 0.86rem;
}

.ci-checkout-time {
    max-width: 960px;
    margin: 0 auto 26px;
    border-radius: 8px;
    padding: 20px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(90deg, var(--ci-gold), var(--ci-orange));
}

.ci-checkout-time strong,
.ci-checkout-time span {
    display: block;
}

.ci-checkout-time strong {
    font-size: 1.25rem;
}

.ci-checkout-grid,
.ci-contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ci-eco {
    margin-top: 26px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--teal-light);
    background: #edf6f3;
}

.ci-eco h3 {
    margin: 0 0 18px;
    color: var(--teal-dark);
}

.ci-eco>div,
.ci-before>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ci-eco li,
.ci-before p {
    color: var(--text-mid);
    font-size: 1rem;
    margin-bottom: 15px;
}

.ci-before {
    margin-top: 26px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--cream-dk);
    background: var(--off-white);
}

.ci-before h3,
.ci-thanks {
    text-align: center;
}

.ci-thanks {
    max-width: 700px;
    margin: 42px auto 0;
}

.ci-thanks i {
    margin-bottom: 14px;
}

.ci-thanks h3 {
    margin: 0 0 8px;
    font-size: 1.65rem;
}

.ci-thanks p {
    color: var(--ci-muted);
}

.ci-thanks span {
    display: inline-flex;
    border-radius: 999px;
    padding: 9px 18px;
    border: 1px solid var(--gold);
    background: var(--cream);
    color: var(--brown-mid);
    font-weight: 800;
}

.ci-faq .accordion-button {
    min-height: 54px;
    font-size: 0.9rem;
}

.ci-question-box {
    max-width: 760px;
    margin: 30px auto 0;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--teal-light);
    background: linear-gradient(135deg, #edf6f3, var(--off-white));
    padding: 28px;
}

.ci-question-box a {
    display: inline-block;
    margin-top: 8px;
    border-radius: 999px;
    padding: 10px 22px;
    color: var(--white);
    background: var(--ci-gold);
    font-weight: 800;
}

.ci-contact-card {
    padding: 32px 24px;
    text-align: center;
}

.ci-contact-card i {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.ci-contact-card--green {
    background: #edf6f3;
    border-color: var(--teal-light);
}

.ci-contact-card--green i,
.ci-contact-card--green a {
    background: var(--ci-green);
}

.ci-contact-card--blue {
    background: var(--off-white);
    border-color: var(--cream-dk);
}

.ci-contact-card--blue i,
.ci-contact-card--blue a {
    background: var(--ci-blue);
}

.ci-contact-card--purple {
    background: var(--cream);
    border-color: var(--cream-dk);
}

.ci-contact-card--purple i,
.ci-contact-card--purple a {
    background: var(--ci-purple);
}

.ci-contact-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.ci-contact-card p,
.ci-contact-card small {
    color: var(--ci-muted);
}

.ci-contact-card a {
    display: inline-block;
    border-radius: 5px;
    padding: 10px 18px;
    color: var(--white);
    font-weight: 800;
    margin: 8px 0;
}

.ci-emergency {
    margin: 26px 0;
    border: 1px solid #d9a08f;
    background: var(--off-white);
    border-radius: 8px;
    padding: 22px;
    display: grid;
    grid-template-columns: 48px 1.2fr 1fr 1fr;
    gap: 18px;
    align-items: center;
}

.ci-emergency>i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: var(--ci-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-emergency p {
    margin: 0;
    color: var(--ci-muted);
}

.ci-emergency strong {
    color: var(--ci-red);
}

.ci-office-grid article {
    padding: 26px;
}

.ci-office-grid p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--ci-muted);
}

.ci-office-grid a {
    color: var(--ci-orange);
    font-weight: 800;
}

.ci-assist {
    text-align: center;
}

.ci-assist>div {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Stay Connected Section ─────────────────────────────────── */
.ci-stay-connected {
    text-align: center;
    margin-top: 48px;
    padding: 38px 24px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--ci-border);
    box-shadow: var(--ci-shadow);
}

.ci-stay-connected h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.ci-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.ci-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
}

.ci-social-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    color: var(--white);
}

/* Facebook Official Styling */
.ci-social-btn--facebook {
    background: #1877F2;
    background: linear-gradient(135deg, #1877F2, #0056b3);
}

/* Instagram Official luxury gradient Styling */
.ci-social-btn--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* YouTube Official Styling */
.ci-social-btn--youtube {
    background: #FF0000;
    background: linear-gradient(135deg, #FF0000, #b30000);
}

.ci-social-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* Review Pill Button Styling */
.ci-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--off-white);
    border: 2px solid var(--brown-mid);
    /* Elegant soft gold border */
    color: var(--text-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(254, 215, 102, 0.12);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.ci-review-btn:hover {
    background: var(--teal);
    /* Elegant fill on hover */
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 215, 102, 0.3);
}

.ci-review-btn i {
    font-size: 1.2rem;
    color: #e28743;
    /* Warm heart color */
    transition: transform 0.3s ease;
}

.ci-review-btn:hover i {
    transform: scale(1.2);
}

.d-inherit{
    display: inherit !important;
}

/* ── Villa Map Dropdowns ─────────────────────────────────────── */
.ci-map-dropdown {
    position: relative;
    margin-top: 4px;
}

.ci-map-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 11px 14px;
    background: var(--ci-blue);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: 'Raleway', sans-serif;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ci-map-dropdown__toggle:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.ci-map-dropdown--maps .ci-map-dropdown__toggle {
    background: var(--ci-green);
}

.ci-map-dropdown--maps .ci-map-dropdown__toggle:hover {
    background: var(--teal-dark);
}

.ci-map-dropdown__arrow {
    margin-left: auto;
    transition: transform 0.25s ease;
    font-size: 0.78rem;
}

.ci-map-dropdown--open .ci-map-dropdown__arrow {
    transform: rotate(180deg);
}

.ci-map-dropdown__menu {
    display: none;
    position: relative;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 50;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: var(--white);
    border: 1px solid var(--ci-border);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(61, 43, 26, 0.16);
    animation: ciDropFade 0.18s ease forwards;
}

.ci-map-dropdown--open .ci-map-dropdown__menu {
    display: block;
}

@keyframes ciDropFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.ci-map-dropdown__menu li {
    margin: 0;
}

.ci-map-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.ci-map-dropdown__menu a:hover {
    background: var(--cream);
    color: var(--teal-dark);
}

.ci-map-dropdown__menu a i {
    color: var(--ci-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ci-map-dropdown__menu li+li {
    border-top: 1px solid var(--cream-dk);
}

/* ───────────────────────────────────────────────────────────── */

.checking-in-page .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.checking-in-page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {

    .ci-villa-grid,
    .ci-amenity-grid,
    .ci-video-grid,
    .ci-packet-grid,
    .ci-checkout-grid,
    .ci-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ci-distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .ci-hero {
        min-height: 620px;
        padding-top: 120px;
    }

    .ci-quick-grid {
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .ci-quick-card {
        flex: 0 0 155px;
    }

    .ci-breadcrumb {
        top: 66px;
    }

    .ci-timeline::before {
        left: 24px;
    }

    .ci-timeline article,
    .ci-timeline article:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }

    .ci-info-box,
    .ci-map-options,
    .ci-coordinates,
    .ci-eco>div,
    .ci-before>div,
    .ci-office-grid,
    .ci-emergency {
        grid-template-columns: 1fr;
    }

    .ci-assist>div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ci-hero {
        min-height: 700px;
    }

    .ci-villa-grid,
    .ci-amenity-grid,
    .ci-video-grid,
    .ci-packet-grid,
    .ci-checkout-grid,
    .ci-contact-grid,
    .ci-distance-grid,
    .ci-services>div,
    .ci-assist>div {
        grid-template-columns: 1fr;
    }

    .ci-section {
        padding: 58px 0;
    }

    .ci-breadcrumb .container {
        justify-content: flex-start;
    }

    .ci-villa-card img,
    .ci-video-grid img {
        height: 190px;
    }

    .ci-packet-grid article {
        grid-template-columns: 34px 1fr;
    }

    .ci-packet-grid a {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ci-hero__actions {
        flex-direction: column;
    }

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

    .ci-quick-card {
        min-height: 82px;
    }

    .ci-timeline article {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .ci-timeline>article>i {
        width: 40px;
        height: 40px;
    }

    .ci-timeline span {
        position: static;
        display: inline-block;
        margin-bottom: 8px;
    }
}




/* Premium Concierge Cards styling */
.ci-concierge-services {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, #ffffff, #fcfaf7);
    border-radius: 20px;
    border: 1px solid var(--cream-dk);
    box-shadow: 0 15px 40px rgba(61, 43, 26, 0.05);
}

.ci-concierge-header h3 {
    color: var(--text-dark);
}

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

.ci-concierge-card {
    background: var(--white);
    border: 1px solid var(--ci-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(61, 43, 26, 0.03);
}

.ci-concierge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(61, 43, 26, 0.08);
    border-color: var(--teal);
}

.ci-concierge-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    /* margin-bottom: 24px; */
    transition: transform 0.3s ease;
}

.ci-concierge-card:hover .ci-concierge-card-icon-wrap {
    transform: scale(1.1);
}

/* curating harmonious gradients for icons */
.chef-gradient {
    background: linear-gradient(135deg, #d38312, #a83279);
    /* luxury sunset */
}

.spa-gradient {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    /* tropical wellness */
}

.transport-gradient {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    /* professional deep blue */
}

.ci-concierge-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ci-concierge-card-body p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0;
}

/* Premium Button with Gold and Micro-Animation */
.btn-concierge-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--white) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(53, 122, 109, 0.25);
    cursor: pointer;
    text-decoration: none;
}

.btn-concierge-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(53, 122, 109, 0.4);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}

.btn-concierge-cta:active {
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .ci-concierge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .ci-concierge-grid {
        grid-template-columns: 1fr;
    }

    .ci-concierge-services {
        padding: 2.5rem 1.5rem;
    }
}
