:root {
    --brand-grad: linear-gradient(135deg, #e15d5d, #aa3511);
    --brand-1: #b54127;
    --brand-2: #aa3511;

    --ink: #111827;
    --muted: #6b7280;

    --white: #ffffff;
    --off: #f5f6f8;
    --stroke: #e5e7eb;

    --radius: 18px;
    --shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
}

/* =========================
  PREMIUM ITINERARY HERO (UPDATED - CLEAR IMAGE)
========================= */
.ih-hero {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, .10);
}

/* big visual image (CLEAR + CRISP) */
.ih-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);

    /* make image visible clearly */
    filter: brightness(1.10) contrast(1.08) saturate(1.12);
}

/* overlay: darker only on LEFT for text, lighter overall */
.ih-hero__shade {
    position: absolute;
    inset: 0;
    background:
        /* left readable zone */
        radial-gradient(1000px 560px at 12% 45%,
            rgba(0, 0, 0, .52),
            rgba(0, 0, 0, .18) 55%,
            rgba(0, 0, 0, 0) 78%),

        /* overall mild tint */
        linear-gradient(180deg,
            rgba(0, 0, 0, .22),
            rgba(0, 0, 0, .18));
}

.ih-hero__in {
    position: relative;
    z-index: 2;
}

/* breadcrumb */
.ih-crumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, .84);
    margin-bottom: 14px;
}

.ih-crumbs a {
    color: rgba(255, 255, 255, .94);
    text-decoration: none;
}

.ih-crumbs a:hover {
    text-decoration: underline;
}

/* minimal copy area */
.ih-copy {
    padding-bottom: 8px;
}

.ih-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.ih-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    backdrop-filter: blur(10px);
    font-weight: 800;
    font-size: 13px;
}

.ih-chip--ghost {
    background: rgba(255, 255, 255, .10);
}

.ih-title {
    margin: 0 0 18px;
    color: #fff;
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1.05;
    font-size: clamp(34px, 4.8vw, 58px);
}

/* CTAs */
.ih-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ih-btn {
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .22);
}

.ih-btn--primary {
    background: linear-gradient(135deg, #b54127, #aa3511);
    border-color: rgba(255, 255, 255, .10);
    color: #fff;
}

.ih-btn--primary:hover {
    background: linear-gradient(135deg, #752715, #792005);
    color: #fff;
}

.ih-btn--soft {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.ih-btn--soft:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* glass info card (keep premium, don't darken image) */
.ih-glass {
    border-radius: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(16px);
    box-shadow: 0 26px 90px rgba(0, 0, 0, .22);
}

.ih-glass__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ih-mini {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
}

.ih-mini__ic {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    flex: 0 0 auto;
}

.ih-mini__k {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
}

.ih-mini__v {
    font-weight: 950;
    color: #fff;
}

.ih-glass__cta {
    display: block;
    margin-top: 14px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 950;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

/* fade into next section (reduced so image doesn't wash out) */
.ih-hero__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55px;

}

/* responsive */
@media (max-width: 991px) {
    .ih-hero {
        min-height: 560px;
    }

    .ih-glass__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
  LEFT / RIGHT GRID (PREMIUM)
========================= */
.tp-wrap {
    padding: 0px 0 0px;
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(181, 65, 39, .08), transparent 60%),
        radial-gradient(800px 520px at 92% 10%, rgba(15, 23, 42, .05), transparent 55%),
        #fff;
}

/* left container just for spacing */
.tp-left {
    display: grid;
    gap: 14px;
    /* consistent section spacing */
}

/* right sidebar sticky */
.tp-right {
    position: sticky;
    top: 14px;
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

/* responsive */
@media (max-width: 991px) {
    .tp-right {
        position: static;
    }
}

/* =========================
   PREMIUM TOUR DESCRIPTION
========================= */

.tour__card {
    margin-top: 25px;
}

.tour__card {
    width: 100%;
    padding: 32px 36px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 20px 60px rgba(2, 6, 23, .07);
    position: relative;
    overflow: hidden;
}

/* subtle top accent line */
.tour__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b54127, #aa3511);
}

/* badge */
.tourDescPro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;

    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.tourDescPro__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

/* title */
.tourDescPro__title {
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
}

/* divider */
.tourDescPro__content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

/* paragraphs */
.tourDescPro__content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 23, 42, .72);
}

.tourDescPro__content p:last-child {
    margin-bottom: 0;
}

/* responsive */
@media(max-width: 768px) {
    .tour__card {
        padding: 24px 20px;
    }

    .tourDescPro__title {
        font-size: 24px;
        max-width: 100%;
    }
}

/* =========================
   TOUR HIGHLIGHTS - PREMIUM
========================= */

/* header */
.tourHighPro__head {
    margin-bottom: 20px;
}

.tourHighPro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;

    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.tourHighPro__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.tourHighPro__title {
    margin: 16px 0 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

/* grid */
.tourHighPro__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

/* item */
.tourHighPro__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tourHighPro__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(181, 65, 39, .08);
    color: #b54127;
    font-size: 18px;
    flex-shrink: 0;
}

.tourHighPro__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .75);
    font-weight: 500;
}

/* responsive */
@media(max-width:768px) {
    .tourHighPro__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   INCLUSION & EXCLUSION
========================= */

/* header */
.tourIncExc__head {
    margin-bottom: 24px;
}

.tourIncExc__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;

    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.tourIncExc__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.tourIncExc__title {
    margin: 16px 0 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

/* grid layout */
.tourIncExc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* column title */
.tourIncExc__colTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tourIncExc__colTitle--inc {
    color: #15803d;
}

.tourIncExc__colTitle--exc {
    color: #b91c1c;
}

/* list */
.tourIncExc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tourIncExc__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .75);
}

/* custom bullet */
.tourIncExc__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b54127;
}

/* responsive */
@media(max-width:768px) {
    .tourIncExc__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ITINERARY - RAIL PREMIUM
========================= */
/* head */
.itRail__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .95rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .10);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .22);
}

.itRail__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 0 0 4px rgba(181, 65, 39, .12);
}

.itRail__title {
    margin: 12px 0 6px;
    font-size: 26px;
    font-weight: 950;
    color: #0f172a;
}

.itRail__sub {
    margin: 0;
    color: rgba(15, 23, 42, .66);
    font-size: 14.8px;
    line-height: 1.7;
}

.itRail__acc {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

/* item */
.itRail__item {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    box-shadow: 0 16px 55px rgba(2, 6, 23, .07);
    overflow: hidden;
    transition: .22s ease;
}

.itRail__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 80px rgba(2, 6, 23, .11);
    border-color: rgba(181, 65, 39, .20);
}

/* button */
.itRail__btn {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

/* left rail */
.itRail__rail {
    width: 84px;
    flex: 0 0 auto;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;

    background:
        radial-gradient(220px 140px at 40% 20%, rgba(255, 255, 255, .28), transparent 60%),
        linear-gradient(135deg, #b54127, #aa3511);
    color: #fff;
}

.itRail__dayNo {
    font-size: 20px;
    font-weight: 950;
    letter-spacing: .04em;
    line-height: 1;
}

.itRail__dayTxt {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .9;
}

/* main */
.itRail__main {
    min-width: 0;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.itRail__name {
    font-size: 18px;
    font-weight: 950;
    color: #0f172a;
    line-height: 1.2;
}

.itRail__mini {
    font-size: 13.5px;
    color: rgba(15, 23, 42, .62);
    line-height: 1.5;
}

/* meta */
.itRail__meta {
    margin-left: auto;
    padding: 16px 16px 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.itRail__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .44rem .82rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(15, 23, 42, .70);
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .10);
}

.itRail__toggle {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .03);
    position: relative;
}

.itRail__toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
}

.itRail__btn[aria-expanded="true"] .itRail__toggle::before {
    transform: rotate(-135deg);
}

/* panel */
.itRail__panel {
    display: none;
    background: #fff;
}

.itRail__panelIn {
    padding: 0 20px 18px 20px;
    /* aligns under main content after rail */
    border-top: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(900px 220px at 18% 0%, rgba(181, 65, 39, .06), transparent 60%),
        #fff;
}

/* list */
.itRail__list {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    display: grid;
    gap: 10px;
}

.itRail__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(15, 23, 42, .74);
    font-size: 15.3px;
    line-height: 1.7;
}

.itRail__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

/* responsive */
@media(max-width:768px) {


    .itRail__rail {
        width: 72px;
    }

    .itRail__chip {
        display: none;
    }
}

/* =========================
   SINGLE TOUR IMAGE - PREMIUM
   (Perfect for left itinerary column)
========================= */
.tImgOne__wrap {
    /* keep full width of left column */
    width: 100%;
}

.tImgOne__card {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    box-shadow: 0 26px 90px rgba(2, 6, 23, .10);
}

/* image */
.tImgOne__img {
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .5s ease;
}

.tImgOne__card:hover .tImgOne__img {
    transform: scale(1.06);
}

/* premium shade for contrast */
.tImgOne__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* responsive */
@media (max-width: 768px) {
    .tImgOne__card {
        border-radius: 18px;
    }
}

/* =========================
   IMPORTANT NOTE - PREMIUM
========================= */

.tourNote {
    margin-top: 22px;
}

.tourNote__card {
    position: relative;
    padding: 26px 30px;
    border-radius: 18px;

    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 28px 95px rgba(2, 6, 23, .10);

    display: flex;
    gap: 18px;
    align-items: flex-start;
}


.tourNote__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b54127, #aa3511);
}

/* left icon block */
.tourNote__iconWrap {
    flex: 0 0 auto;
}

.tourNote__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #b54127, #aa3511);
    color: #fff;
    font-size: 20px;

    box-shadow: 0 18px 45px rgba(181, 65, 39, .25);
}

/* content */
.tourNote__content {
    flex: 1;
}

.tourNote__title {
    margin: 2px 0 12px;
    font-size: 18px;
    font-weight: 900;
    color: #7c2d12;
    letter-spacing: .02em;
}

/* list */
.tourNote__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tourNote__list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .75);
}

/* custom bullet */
.tourNote__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b54127;
}

/* responsive */
@media(max-width:768px) {
    .tourNote__card {
        flex-direction: column;
        padding: 22px 20px;
    }

    .tourNote__icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .faqs-title {
        font-size: 15px;
        font-weight: 700;
    }
}

.faqs-code {
    margin-bottom: 50px;
}


.seForm__card {
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .10);
    overflow: hidden;
    position: relative;
}

/* accent top strip (theme match) */
.seForm__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b54127, #aa3511);
}

/* make sticky in sidebar (optional) */
@media (min-width: 992px) {
    .seForm {
        position: sticky;
        top: 18px;
    }
}

.seForm__top {
    padding: 22px 20px 10px;
}

.seForm__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .42rem .85rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.seForm__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.seForm__title {
    margin: 12px 0 6px;
    font-size: 18px;
    font-weight: 950;
    color: #0f172a;
}

.seForm__sub {
    margin: 0;
    font-size: 13.6px;
    color: rgba(15, 23, 42, .68);
    line-height: 1.6;
}

.seForm__form {
    padding: 12px 20px 20px;
}

/* fields */
.seForm__grid {
    display: grid;
    gap: 12px;
}

.seForm__label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, .70);
    margin-bottom: 6px;
}

.seForm__input,
.seForm__textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .02);
    padding: .78rem .9rem;
    font-size: 14px;
    outline: none;
    transition: .18s ease;
}

.seForm__textarea {
    resize: vertical;
    min-height: 90px;
}

.seForm__input:focus,
.seForm__textarea:focus {
    background: #fff;
    border-color: rgba(181, 65, 39, .30);
    box-shadow: 0 0 0 4px rgba(181, 65, 39, .10);
}

/* main submit */
.seForm__btn {
    margin-top: 14px;
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: .9rem 1rem;
    font-weight: 950;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 18px 55px rgba(181, 65, 39, .24);
    transition: .2s ease;
}

.seForm__btn:hover {
    transform: translateY(-2px);
}

/* bottom split buttons */
.seForm__split {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.seForm__wa,
.seForm__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .82rem .8rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 950;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    color: #0f172a;
    transition: .2s ease;
}

.seForm__wa {
    border-color: rgba(22, 163, 74, .25);
}

.seForm__wa i {
    color: #16a34a;
}

.seForm__call {
    border-color: rgba(181, 65, 39, .18);
}

.seForm__call i {
    color: #b54127;
}

.seForm__wa:hover,
.seForm__call:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(2, 6, 23, .10);
}

/* disclaimer */
.seForm__mini {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(15, 23, 42, .60);
}

/* mobile */
@media (max-width: 420px) {
    .seForm__split {
        grid-template-columns: 1fr;
    }
}


/* =========================
   SPECIAL TOUR IMAGE CARD
========================= */

.spTour {
    margin-bottom: 24px;
}

.spTour__card {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 30px 95px rgba(2, 6, 23, .12);
    transition: .3s ease;
}

.spTour__media {
    position: relative;
    height: 420px;
}

.spTour__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.spTour__card:hover .spTour__img {
    transform: scale(1.08);
}

/* overlay */
.spTour__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .65));
}

/* top badges */
.spTour__top {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spTour__tag {
    background: linear-gradient(135deg, #b54127, #aa3511);
    color: #fff;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.spTour__rating {
    background: rgba(255, 255, 255, .9);
    padding: .4rem .75rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.spTour__rating i {
    color: #f59e0b;
}

/* bottom content */
.spTour__content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
}

.spTour__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.spTour__meta {
    font-size: 13.5px;
    opacity: .9;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.spTour__meta i {
    margin-right: 6px;
}

/* price + buttons */
.spTour__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.spTour__price {
    font-size: 14px;
}

.spTour__price strong {
    font-size: 20px;
    font-weight: 900;
}

/* buttons */
.spTour__btns {
    display: flex;
    gap: 10px;
}

.spTour__btn {
    padding: .6rem .9rem;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.spTour__btn--primary {
    background: linear-gradient(135deg, #b54127, #aa3511);
    color: #fff;
}

.spTour__btn--outline {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.spTour__btn:hover {
    transform: translateY(-2px);
}

/* responsive */
@media(max-width:768px) {
    .spTour__media {
        height: 340px;
    }

    .spTour__title {
        font-size: 18px;
    }

    .spTour__btns {
        flex-direction: column;
        width: 100%;
    }

    .spTour__btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   MORE TOURS - BALANCED PREMIUM
========================= */
.mtPro2 {
    margin: 0 0 18px;
}

.mtPro2__card {
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 55px rgba(2, 6, 23, .08);
    overflow: hidden;
    position: relative;
}

.mtPro2__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b54127, #aa3511);
}

/* head */
.mtPro2__head {
    padding: 18px 18px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mtPro2__h {
    margin: 0 0 4px;
    font-size: 16.8px;
    font-weight: 950;
    color: #0f172a;
}

.mtPro2__p {
    margin: 0;
    font-size: 13px;
    color: rgba(15, 23, 42, .62);
}

.mtPro2__tag {
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: #7c2d12;
    background: rgba(181, 65, 39, .08);
    border: 1px solid rgba(181, 65, 39, .18);
    flex: 0 0 auto;
}

/* list */
.mtPro2__list {
    padding: 6px 14px 10px;
    display: grid;
    gap: 10px;
}

/* row (glass-like but light) */
.mtPro2__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    text-decoration: none;
    transition: .18s ease;

    background: rgba(15, 23, 42, .02);
    border: 1px solid rgba(15, 23, 42, .06);
}

/* gradient dot (premium) */
.mtPro2__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 0 0 4px rgba(181, 65, 39, .10);
    flex: 0 0 auto;
}

.mtPro2__txt {
    min-width: 0;
    flex: 1;
}

.mtPro2__title {
    display: block;
    font-size: 14.8px;
    font-weight: 950;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 6px;

    overflow: hidden;
    text-overflow: ellipsis;
}

.mtPro2__meta {
    display: block;
    font-size: 12.8px;
    color: rgba(15, 23, 42, .62);
}

/* arrow in small circle (not heavy) */
.mtPro2__go {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #b54127;

    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    transition: .18s ease;
    flex: 0 0 auto;
}

/* hover */
.mtPro2__row:hover {
    background: rgba(181, 65, 39, .06);
    border-color: rgba(181, 65, 39, .14);
    transform: translateY(-2px);
}

.mtPro2__row:hover .mtPro2__go {
    border-color: rgba(181, 65, 39, .18);
    transform: translateX(2px);
}

/* footer */
.mtPro2__foot {
    padding: 0 18px 18px;
}

.mtPro2__all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: .8rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 950;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    transition: .18s ease;
}

.mtPro2__all:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(2, 6, 23, .10);
    border-color: rgba(181, 65, 39, .18);
}

/* mobile */
@media(max-width:420px) {
    .mtPro2__tag {
        display: none;
    }
}

/* =========================
   MORE TOURS (mtPro2) - MOBILE RESPONSIVE
========================= */

/* tablets */
@media (max-width: 991px) {
    .mtPro2__head {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .mtPro2__card {
        border-radius: 18px;
    }

    .mtPro2__head {
        padding: 16px 16px 10px;
    }

    .mtPro2__h {
        font-size: 16px;
    }

    .mtPro2__p {
        font-size: 12.8px;
    }

    .mtPro2__list {
        padding: 6px 12px 10px;
        gap: 10px;
    }

    .mtPro2__row {
        padding: 12px 12px;
        border-radius: 14px;
    }

    .mtPro2__title {
        font-size: 14.2px;
        white-space: normal;
        /* allow wrap on mobile */
        overflow: visible;
        text-overflow: unset;
    }

    .mtPro2__meta {
        font-size: 12.5px;
    }

    .mtPro2__go {
        width: 32px;
        height: 32px;
    }

    .mtPro2__foot {
        padding: 0 16px 16px;
    }

    .mtPro2__all {
        border-radius: 13px;
    }
}

/* small phones */
@media (max-width: 420px) {
    .mtPro2__head {
        align-items: flex-start;
    }

    .mtPro2__tag {
        display: inline-flex;
        /* show if you want; remove this line to hide */
        padding: .32rem .6rem;
        font-size: 11.5px;
    }

    .mtPro2__row {
        gap: 10px;
        padding: 11px 11px;
    }

    .mtPro2__dot {
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 3px rgba(181, 65, 39, .10);
    }

    .mtPro2__go {
        width: 30px;
        height: 30px;
    }
}

/* =========================
   YOU MAY ALSO LIKE - UNIQUE PREMIUM
   (Not similar, but same vibe)
========================= */

.mayLike__wrap {
    width: 100%;
}

.mayLike__head {
    margin-bottom: 14px;
}

.mayLike__title {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 950;
    color: #b54127;
    letter-spacing: -.02em;
}

.mayLike__sub {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .75);
    font-weight: 500;
}

/* grid */
.mayLike__grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* card */
.mayLike__card {
    min-width: 0;
}

.mayLike__media {
    position: relative;
    display: block;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;

    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 26px 90px rgba(2, 6, 23, .10);
    background: #fff;
    transition: .25s ease;
}

.mayLike__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .55s ease;
}

.mayLike__media:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 120px rgba(2, 6, 23, .14);
    border-color: rgba(181, 65, 39, .18);
}

.mayLike__media:hover img {
    transform: scale(1.08);
}

/* shade */
.mayLike__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 340px at 18% 18%, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .60));
    pointer-events: none;
}

/* unique “edge” (diagonal light) */
.mayLike__edge {
    position: absolute;
    inset: -40px -40px auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 62%);
    transform: rotate(18deg);
    pointer-events: none;
    opacity: .7;
}

/* tags */
.mayLike__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: .40rem .75rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 16px 46px rgba(181, 65, 39, .22);
}

.mayLike__tag--alt {
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 16px 46px rgba(2, 6, 23, .10);
}

.mayLike__tag--soft {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .30);
    backdrop-filter: blur(10px);
}

/* bottom glass panel (unique vs sample) */
.mayLike__glass {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 14px;

    border-radius: 18px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
}

.mayLike__name {
    margin: 0 0 8px;
    font-size: 16.5px;
    font-weight: 950;
    color: #fff;
    line-height: 1.2;
}

/* meta */
.mayLike__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12.8px;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 12px;
}

.mayLike__meta i {
    margin-right: 6px;
    opacity: .95;
}

/* CTA (not a button box to keep light) */
.mayLike__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .55rem .85rem;
    border-radius: 14px;
    font-size: 12.8px;
    font-weight: 950;
    color: #0f172a;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .35);
    transition: .2s ease;
}

.mayLike__media:hover .mayLike__cta {
    transform: translateX(2px);
}

/* responsive */
@media (max-width: 991px) {
    .mayLike__grid {
        grid-template-columns: 1fr;
    }

    .mayLike__media {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .mayLike__title {
        font-size: 24px;
    }

    .mayLike__glass {
        padding: 12px 12px;
    }

    .mayLike__name {
        font-size: 15.8px;
    }
}


/* =========================
   CAR FEATURES - PREMIUM (MATCHING THEME)
========================= */
/* head */
.carFeatPro__head {
    margin-bottom: 18px;
}

.carFeatPro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.carFeatPro__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.carFeatPro__title {
    margin: 16px 0 0;
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.02em;
}

/* grid */
.carFeatPro__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* item */
.carFeatPro__item {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
    padding: 16px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: .22s ease;
}

.carFeatPro__item:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 65, 39, .18);
    box-shadow: 0 22px 65px rgba(2, 6, 23, .10);
}

/* icon */
.carFeatPro__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(181, 65, 39, .08);
    border: 1px solid rgba(181, 65, 39, .18);
    color: #b54127;
    font-size: 18px;
}

/* text */
.carFeatPro__text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(15, 23, 42, .74);
    font-weight: 600;
}

/* responsive */
@media(max-width: 991px) {
    .carFeatPro__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .carFeatPro__title {
        font-size: 20px;
    }

    .carFeatPro__grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   TAXI FARE TABLE - PREMIUM
========================= */
/* header */
.taxiFarePro__head {
    margin-bottom: 18px;
}

.taxiFarePro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.taxiFarePro__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.taxiFarePro__title {
    margin: 16px 0 0;
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}

/* table wrap (mobile scroll) */
.taxiFarePro__tableWrap {
    margin-top: 20px;
    overflow-x: auto;
}

/* table */
.taxiFarePro__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.taxiFarePro__table thead {
    background: rgba(15, 23, 42, .04);
}

.taxiFarePro__table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(15, 23, 42, .65);
}

.taxiFarePro__table td {
    padding: 16px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.taxiFarePro__table tbody tr {
    transition: .2s ease;
}

.taxiFarePro__table tbody tr:hover {
    background: rgba(181, 65, 39, .05);
}

/* vehicle cell */
.taxiFarePro__vehicle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.taxiFarePro__vehicle i {
    color: #b54127;
    font-size: 18px;
}

/* note */
.taxiFarePro__note {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(15, 23, 42, .60);
}

/* responsive */
@media(max-width:768px) {
    .taxiFarePro__title {
        font-size: 20px;
    }
}


/* =========================
   WHY BOOK WITH US - PREMIUM
========================= */
/* header */
.whyPro__head {
    margin-bottom: 20px;
}

.whyPro__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.whyPro__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.whyPro__title {
    margin: 16px 0 0;
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.02em;
}

/* grid */
.whyPro__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* item */
.whyPro__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
    transition: .22s ease;
}

.whyPro__item:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 65, 39, .18);
    box-shadow: 0 22px 65px rgba(2, 6, 23, .10);
}

/* icon */
.whyPro__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(181, 65, 39, .08);
    border: 1px solid rgba(181, 65, 39, .18);
    color: #b54127;
    font-size: 18px;
}

/* content */
.whyPro__content h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.whyPro__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(15, 23, 42, .65);
}

/* responsive */
@media(max-width: 991px) {
    .whyPro__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .whyPro__title {
        font-size: 20px;
    }

    .whyPro__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOTEL AMENITIES - PREMIUM AUTO SLIDE
   Clean Version (No Conflicts)
========================= */
/* ===== Head ===== */
.htAm__head {
    margin-bottom: 18px;
}

.htAm__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .42rem .85rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.htAm__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

.htAm__title {
    margin: 14px 0 6px;
    font-size: 20px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -.02em;
}

.htAm__sub {
    margin: 0;
    color: #64748B;
    font-weight: 750;
}

/* =========================
   AUTO SLIDER
========================= */

.htAm__slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-top: 16px;
}

/* edge fade effect */
.htAm__slider:before,
.htAm__slider:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

/* moving track */
.htAm__track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 10px 0;
    animation: htMarquee 20s linear infinite;
    will-change: transform;
}

/* pause on hover */
.htAm__slider:hover .htAm__track {
    animation-play-state: paused;
}

/* =========================
   Item Card
========================= */

.htAm__item {
    min-width: 210px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 44px rgba(2, 6, 23, .06);
    padding: 18px 16px;
    text-align: center;
    transition: .25s ease;
}

.htAm__item:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 65, 39, .18);
    box-shadow: 0 22px 65px rgba(2, 6, 23, .10);
}

/* icon */
.htAm__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    background: linear-gradient(135deg, #7A2E0E, #B54127, #AA3511);
    box-shadow: 0 14px 34px rgba(181, 65, 39, .20);
    font-size: 22px;
}

/* text */
.htAm__name {
    font-size: 15px;
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 6px;
}

.htAm__desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(15, 23, 42, .62);
    font-weight: 650;
}

/* note */
.htAm__note {
    margin-top: 12px;
    color: #64748B;
    font-weight: 750;
    font-size: 13px;
}

/* =========================
   Animation
========================= */

@keyframes htMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    .htAm__track {
        animation: none;
    }
}

/* responsive */
@media(max-width:768px) {
    .htAm__item {
        min-width: 180px;
    }
}



/* =========================
ROOMS AVAILABILITY - LUXURY SPLIT (DIFFERENT DESIGN)
No :root | Brand theme used
========================= */

.rmLux {
    padding: 14px 0 44px;
}

/* head */
.rmLux__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .42rem .85rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .08);
    color: #7c2d12;
    border: 1px solid rgba(181, 65, 39, .18);
}

.rmLux__kdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A2E0E, #B54127, #AA3511);
}

.rmLux__title {
    margin: 12px 0 6px;
    font-size: 24px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -.02em;
}

.rmLux__sub {
    margin: 0 0 14px;
    font-size: 14.6px;
    line-height: 1.7;
    color: rgba(15, 23, 42, .66);
    max-width: 86ch;
}

/* stack */
.rmLux__stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* row */
.rmLux__row {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 70px rgba(2, 6, 23, .06);
}

/* image panel */
.rmLux__img {
    position: relative;
    min-height: 260px;
    background: #0b1220;
}

.rmLux__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.rmLux__imgShade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 25% 25%, rgba(181, 65, 39, .22), rgba(0, 0, 0, 0) 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .62));
}

/* caption overlay */
.rmLux__cap {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(14px);
}

.rmLux__capTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.rmLux__status {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
}

.rmLux__status--ok {
    background: rgba(22, 163, 74, .25);
}

.rmLux__status--few {
    background: rgba(245, 158, 11, .25);
}

.rmLux__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .45);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 950;
    font-size: 12px;
}

.rmLux__rating i {
    color: #fbbf24;
}

.rmLux__name {
    margin: 0;
    font-size: 18px;
    font-weight: 980;
    color: #fff;
    letter-spacing: -.01em;
}

.rmLux__hint {
    margin-top: 4px;
    color: rgba(255, 255, 255, .82);
    font-weight: 850;
    font-size: 13px;
}

/* right info */
.rmLux__info {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.rmLux__spec {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    color: #334155;
    font-weight: 900;
    font-size: 13px;
}

.rmLux__spec span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(2, 6, 23, .02);
    border: 1px solid rgba(15, 23, 42, .10);
}

.rmLux__spec i {
    color: #B54127;
}

.rmLux__desc {
    margin: 0;
    color: rgba(15, 23, 42, .66);
    font-weight: 650;
    line-height: 1.8;
    font-size: 14.6px;
}

/* minimal amenities (not pill overload) */
.rmLux__amen {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: #0f172a;
    font-weight: 850;
    font-size: 13px;
}

.rmLux__amen i {
    color: #AA3511;
    margin-right: 6px;
}

/* buttons */
.rmLux__cta {
    margin-top: 2px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rmLux__btn {
    height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 980;
    border: 1px solid rgba(15, 23, 42, .12);
    transition: .2s ease;
}

.rmLux__btn--main {
    flex: 1;
    color: #fff;
    border: 1px solid rgba(122, 46, 14, .22);
    background: linear-gradient(135deg, #7A2E0E, #B54127, #AA3511);
    box-shadow: 0 16px 44px rgba(181, 65, 39, .18);
}

.rmLux__btn--main:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    color: #fff;
}

.rmLux__btn--wa {
    color: #0f172a;
    background: #fff;
}

.rmLux__btn--wa i {
    color: #16a34a;
}

.rmLux__btn--wa:hover {
    border-color: rgba(181, 65, 39, .22);
    color: #B54127;
}

.rmLux__note {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(15, 23, 42, .60);
}

/* responsive */
@media (max-width: 991.98px) {
    .rmLux__row {
        grid-template-columns: 1fr;
    }

    .rmLux__img {
        min-height: 220px;
    }
}

@media (max-width: 575px) {
    .rmLux__btn {
        width: 100%;
    }
}


/* =========================
  PROFESSIONAL ABOUT US (UNIQUE)
========================= */
.aboutPro {
    padding: 64px 0;
    background:
        radial-gradient(1000px 520px at 12% 0%, rgba(181, 65, 39, .10), transparent 60%),
        radial-gradient(900px 520px at 92% 10%, rgba(2, 6, 23, .08), transparent 55%),
        #fff;
}

/* ---------- Media collage ---------- */
.aboutPro__media {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
}

/* main image */
.aboutPro__main {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 34px 110px rgba(2, 6, 23, .18);
}

.aboutPro__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: contrast(1.05) saturate(1.10);
}

/* subtle shade for depth (keeps image attractive) */
.aboutPro__main:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 18% 30%, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 58%),
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .06));
}

/* thumb image */
.aboutPro__thumb {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 210px;
    height: 150px;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .30);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .22);
}

.aboutPro__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* floating badge */
.aboutPro__float {
    position: absolute;
    z-index: 3;
}

.aboutPro__float--a {
    left: 18px;
    top: 18px;
}

.aboutPro__badge {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .18);
}

.aboutPro__badge i {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(181, 65, 39, .12);
    border: 1px solid rgba(181, 65, 39, .20);
    color: #b54127;
    font-size: 18px;
}

.aboutPro__bTop {
    font-weight: 950;
    color: #0f172a;
    line-height: 1.1;
}

.aboutPro__bSub {
    font-weight: 750;
    color: #64748b;
    font-size: 13px;
}

/* floating pills */
.aboutPro__float--b {
    left: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
}

.aboutPro__pill {
    width: max-content;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(12px);
    font-weight: 900;
    color: #0f172a;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .16);
    display: flex;
    gap: 10px;
    align-items: center;
}

.aboutPro__pill i {
    color: #b54127;
}

/* dots decor (subtle, professional) */
.aboutPro__dots {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle, rgba(181, 65, 39, .22) 2px, transparent 2.5px) 0 0 / 14px 14px;
    opacity: .35;
    filter: blur(.2px);
    z-index: 2;
}

/* ---------- Content ---------- */
.aboutPro__content {
    padding-left: 8px;
}

.aboutPro__kicker {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #64748b;
}

.aboutPro__title {
    margin: 10px 0 14px;
    font-size: clamp(28px, 3.1vw, 44px);
    font-weight: 980;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: #0f172a;
}

.aboutPro__lead {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 700;
    color: rgba(15, 23, 42, .86);
}

.aboutPro__text {
    margin: 0 0 16px;
    font-size: 15.5px;
    line-height: 1.85;
    font-weight: 550;
    color: #475569;
}

/* points */
.aboutPro__points {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.aboutPro__pt {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 650;
    color: #0f172a;
}

.aboutPro__pt i {
    color: #b54127;
    margin-top: 2px;
    font-size: 18px;
}

.aboutPro__pt strong {
    font-weight: 950;
}

/* cta */
.aboutPro__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.aboutPro__btn {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 950;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, .12);
}

.aboutPro__btn--primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 16px 45px rgba(181, 65, 39, .18);
}

.aboutPro__btn--ghost {
    color: #0f172a;
    background: rgba(15, 23, 42, .04);
}

/* trust line */
.aboutPro__trust {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(15, 23, 42, .70);
    font-weight: 750;
    font-size: 13px;
}

.aboutPro__trust i {
    color: #b54127;
}

.aboutPro__dot {
    opacity: .55;
}

/* responsive */
@media (max-width: 991px) {
    .aboutPro {
        padding: 44px 0;
    }

    .aboutPro__media {
        min-height: 420px;
    }

    .aboutPro__thumb {
        width: 180px;
        height: 130px;
    }

    .aboutPro__content {
        padding-left: 0;
    }
}


/* =========================================================
  MORE ABOUT PAGE SECTIONS (CSS)
========================================================= */
.auS {
    padding: 54px 0;
}

.auS__head {
    margin-bottom: 16px;
}

.auS__tag {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #64748b;
}

.auS__h2 {
    margin: 10px 0 6px;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 980;
    letter-spacing: -.02em;
    color: #0f172a;
}

.auS__sub {
    margin: 0;
    color: #475569;
    font-weight: 650;
    line-height: 1.7;
    max-width: 75ch;
}

/* Section box */
.auS__box {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .08);
    padding: 22px;
}

.auS__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    align-items: start;
}

.auS__p {
    margin: 0;
    color: #334155;
    font-weight: 600;
    line-height: 1.9;
}

/* Mission Vision */
.mvPro {
    padding-bottom: 54px;
}

.mvPro__box {
    border-radius: 26px;
    padding: 26px;
    background:
        radial-gradient(900px 520px at 10% 0%, rgba(181, 65, 39, .10), transparent 58%),
        radial-gradient(900px 520px at 95% 30%, rgba(2, 6, 23, .07), transparent 55%),
        #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 26px 90px rgba(2, 6, 23, .10);
}

.mvPro__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 20px;
    align-items: center;
}

/* LEFT */
.mvPro__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #64748b;
}

.mvPro__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 10px 22px rgba(181, 65, 39, .22);
}

.mvPro__title {
    margin: 10px 0 12px;
    font-size: clamp(26px, 2.3vw, 36px);
    font-weight: 980;
    letter-spacing: -.03em;
    color: #0f172a;
    line-height: 1.08;
}

.mvPro__text {
    margin: 0;
    color: #334155;
    font-weight: 600;
    line-height: 1.9;
    max-width: 70ch;
}

/* mini trust line */
.mvPro__mini {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(15, 23, 42, .70);
    font-weight: 750;
    font-size: 13px;
}

.mvPro__mini i {
    color: #b54127;
}

.mvPro__sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .18);
}

/* RIGHT */
.mvPro__right {
    position: relative;
    display: grid;
    gap: 12px;
    padding-left: 18px;
}

/* vertical accent rail */
.mvPro__rail {
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(180deg, #b54127, #aa3511);
    opacity: .9;
}

/* cards */
.mvPro__card {
    position: relative;
    border-radius: 22px;
    padding: 16px 16px 16px 16px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 20px 65px rgba(2, 6, 23, .10);
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: start;
    overflow: hidden;
}

/* subtle top glow line */
.mvPro__card:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(135deg, rgba(181, 65, 39, .55), rgba(170, 53, 17, .40));
}

/* icon */
.mvPro__ic {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(181, 65, 39, .10);
    border: 1px solid rgba(181, 65, 39, .18);
    color: #b54127;
    font-size: 20px;
}

/* content */
.mvPro__h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 950;
    color: #0f172a;
}

.mvPro__p {
    margin: 0;
    color: #475569;
    font-weight: 650;
    line-height: 1.7;
}

/* chip */
.mvPro__chip {
    align-self: start;
    margin-top: 4px;
    padding: .42rem .7rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(181, 65, 39, .10);
    border: 1px solid rgba(181, 65, 39, .18);
    color: #0f172a;
}

.mvPro__chip--soft {
    background: rgba(15, 23, 42, .06);
    border-color: rgba(15, 23, 42, .10);
}

/* responsive */
@media (max-width: 991px) {
    .mvPro__grid {
        grid-template-columns: 1fr;
    }

    .mvPro__right {
        padding-left: 0;
    }

    .mvPro__rail {
        display: none;
    }
}

/* Process */
.procX {
    padding-bottom: 54px;
}

/* head */
.procX__head {
    margin-bottom: 18px;
}

.procX__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #64748b;
}

.procX__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 12px 30px rgba(181, 65, 39, .22);
}

.procX__title {
    margin: 10px 0 6px;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 980;
    letter-spacing: -.03em;
    color: #0f172a;
}

.procX__sub {
    margin: 0;
    color: #475569;
    font-weight: 650;
    line-height: 1.7;
    max-width: 78ch;
}

/* wrap */
.procX__wrap {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(1000px 520px at 12% 0%, rgba(181, 65, 39, .10), transparent 60%),
        radial-gradient(900px 520px at 92% 10%, rgba(2, 6, 23, .08), transparent 55%),
        #fff;
    box-shadow: 0 26px 90px rgba(2, 6, 23, .10);
    padding: 22px;
    overflow: hidden;
}

/* center rail */
.procX__rail {
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 18px;
    width: 2px;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: .9;
}

.procX__railLine {
    position: absolute;
    inset: 18px 0;
    background: linear-gradient(180deg, rgba(181, 65, 39, .05), rgba(181, 65, 39, .35), rgba(15, 23, 42, .12));
    border-radius: 99px;
}

.procX__railTop,
.procX__railBot {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 18px 55px rgba(181, 65, 39, .22);
}

.procX__railTop {
    top: 0;
}

.procX__railBot {
    bottom: 0;
}

/* grid */
.procX__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* step positioning (makes it look like a journey) */
.procX__step--a,
.procX__step--c {
    padding-right: 28px;
}

.procX__step--b,
.procX__step--d {
    padding-left: 28px;
}

/* chip */
.procX__chip {
    width: max-content;
    padding: .40rem .70rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .08);
    margin-bottom: 10px;
}

/* card */
.procX__card {
    position: relative;
    border-radius: 22px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10);
    padding: 16px 16px 16px 16px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* subtle accent bar */
.procX__card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #b54127, #aa3511);
    opacity: .9;
}

/* hover */
.procX__card:hover {
    transform: translateY(-6px);
    border-color: rgba(181, 65, 39, .26);
    box-shadow: 0 28px 95px rgba(2, 6, 23, .14);
}

/* icon */
.procX__ic {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(181, 65, 39, .10);
    border: 1px solid rgba(181, 65, 39, .18);
    color: #b54127;
    font-size: 20px;
}

/* text */
.procX__h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 950;
    color: #0f172a;
}

.procX__p {
    margin: 0;
    color: #475569;
    font-weight: 650;
    line-height: 1.7;
}

/* big number watermark */
.procX__num {
    position: absolute;
    right: 14px;
    bottom: -10px;
    font-size: 54px;
    font-weight: 980;
    letter-spacing: -.04em;
    color: rgba(15, 23, 42, .06);
    pointer-events: none;
}

/* responsive */
@media (max-width: 991px) {
    .procX__rail {
        display: none;
    }

    .procX__grid {
        grid-template-columns: 1fr;
    }

    .procX__step--a,
    .procX__step--b,
    .procX__step--c,
    .procX__step--d {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Final CTA */
.auCTA {
    padding-bottom: 54px;
}

.auCTA__box {
    border-radius: 26px;
    padding: 22px;
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(181, 65, 39, .14), transparent 60%),
        #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.auCTA__t {
    margin: 0 0 6px;
    font-weight: 980;
    letter-spacing: -.02em;
}

.auCTA__p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-weight: 650;
    line-height: 1.7;
    max-width: 70ch;
}

.auCTA__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.auCTA__btn {
    text-decoration: none;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 950;
    color: #fff;
    background: linear-gradient(135deg, #b54127, #aa3511);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.auCTA__btn--wa {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}

/* responsive */
@media (max-width: 991px) {
    .auS__grid {
        grid-template-columns: 1fr;
    }

    .auF {
        grid-template-columns: 1fr;
    }

    .auR {
        grid-template-columns: 1fr;
    }

    .auC__right {
        justify-content: flex-start;
    }
}



/* =========================
      CONTACT PAGE (PREMIUM)
    ========================= */
.ct-hero {
    padding: 58px 0 26px;
    background:
        radial-gradient(1100px 520px at 12% 0%, rgba(181, 65, 39, .14), transparent 60%),
        radial-gradient(1000px 520px at 92% 10%, rgba(2, 6, 23, .10), transparent 55%),
        #fff;
}

.ct-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #64748b;
}

.ct-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b54127, #aa3511);
    box-shadow: 0 12px 30px rgba(181, 65, 39, .22);
}

.ct-title {
    margin: 12px 0 10px;
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 980;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: #0f172a;
}

.ct-sub {
    margin: 0;
    max-width: 78ch;
    color: #475569;
    font-weight: 650;
    line-height: 1.85;
    font-size: 15.5px;
}


/* main grid */
.ct-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: start;
}

/* cards */
.ct-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .08);
    padding: 18px;
}

.ct-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.ct-h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.01em;
    color: #0f172a;
}

.ct-line {
    width: 62px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b54127, #aa3511);
}

/* form */
.ct-form {
    display: grid;
    gap: 10px;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ct-field label {
    display: block;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    outline: none;
    font-weight: 650;
    color: #0f172a;
    background: #fff;
}

.ct-field textarea {
    resize: vertical;
}

.ct-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ct-btn {
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(15, 23, 42, .04);
    color: #0f172a;
}

.ct-btn--primary {
    border-color: transparent;
    background: linear-gradient(135deg, #b54127, #aa3511);
    color: #fff;
    box-shadow: 0 16px 45px rgba(181, 65, 39, .18);
}

.ct-btn--wa {
    background: rgba(37, 211, 102, .14);
    border-color: rgba(37, 211, 102, .28);
    color: #0f172a;
    font-weight: 950;
}

.ct-btn--wa i {
    color: #1dbf73;
}

.ct-hint {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 650;
    line-height: 1.6;
    font-size: 13px;
}

/* sidebar */
.ct-side {
    position: sticky;
    top: 14px;
    display: grid;
    gap: 14px;
}

.ct-info {
    display: grid;
    gap: 10px;
}

.ct-infoRow {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
    font-weight: 750;
    color: #0f172a;
}

.ct-infoRow i {
    margin-top: 2px;
    color: #b54127;
    font-size: 18px;
}

.ct-infoRow a {
    color: #0f172a;
    text-decoration: none;
}

.ct-infoRow a:hover {
    text-decoration: underline;
}

.ct-links {
    display: grid;
    gap: 10px;
}

.ct-links a {
    text-decoration: none;
    font-weight: 850;
    color: #0f172a;
    padding: 12px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ct-links a:hover {
    border-color: rgba(181, 65, 39, .24);
}

/* map */
.ct-map {
    margin-top: 14px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 22px 70px rgba(2, 6, 23, .08);
}

.ct-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

/* responsive */
@media (max-width: 991px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-side {
        position: static;
    }

    .ct-row {
        grid-template-columns: 1fr;
    }

    .ct-map iframe {
        height: 300px;
    }
}