:root {
    --main-color: #cc8400;
    --heading-color: #ffa500;
    --secondary-color: #ff4969;
    --light-dark: #3e3e3e;
    --text-color: #ccc;
    --white-color: #fff;
    --heading-font-family: "Playfair Display", serif;
    --para-font-family: "Roboto", sans-serif;
    --shadow: 0 6px 12px rgb(0 0 0 / .15);
    --green-gradient: linear-gradient(45deg, #25d366, #32c850);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

}

/* Navbar header code start--------------------------------------------------------------- */
.main-header {
    background: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: center;
}

.main-header .logo img {
    height: 70px;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 7px 12px;
    border-radius: 24px;
    background: #f1f1f1;
    gap: 7px;
}

.header-actions a.whatsapp {
    color: #25D366;
    background: #e8f7ee;
}

.header-actions a.whatsapp:hover {
    background: #25d36622;
}

.header-actions a.phone {
    color: #e0006c;
    background: #ffeaf4;
}

.header-actions a.phone:hover {
    background: #ffeaf4b6;
}

.header-actions svg {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 767px) {
    .header-container {
        height: 56px;
        padding: 0 10px;
    }

    .main-header .logo img {
        height: 58px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions a {
        font-size: 0;
        padding: 7px 7px;
        background: none;
    }

    .header-actions a span {
        display: none;
    }

    .header-actions svg {
        width: 28px;
        height: 28px;
    }
}

/* Navbar header code END-------------------------------------------------------------------- */

/* Banner css code Statt--------------------------------------------------------- */

/* =========================
   HERO BANNER STYLES
   ========================= */
.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    contain: layout paint;
    isolation: isolate;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s ease, transform 1.2s ease;
    opacity: 0;
}

.hero-bg[src] {
    opacity: 1;
}

/* Overlay (semi-transparent gradient) */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(224, 0, 108, 0.45), rgba(0, 0, 0, 0.25)); */
    z-index: 1;
    pointer-events: none;
}

/* Hero Text Content */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    will-change: opacity, transform;
    animation: fadeUp 1s ease forwards;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0;
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks */
@media (max-width: 991px) {
    .hero-banner {
        aspect-ratio: 3 / 2;
        max-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Use full image in mobile with object-fit: cover and full height */
@media (max-width: 576px) {
    .hero-banner {
        aspect-ratio: unset;
        max-height: unset;
        height: 38vw;
        min-height: 170px;
        max-height: 250px;
    }

    .hero-bg {
        object-fit: cover;
        width: 100vw;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* custom content section ----------------------------------------------*/
section {
    padding: 44px 0 42px;
}

.heading {
    font-family: var(--heading-font-family);
    color: var(--heading-color);
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    display: block;
    letter-spacing: 1.2px;
    line-height: 1.18;
    text-shadow: 0 2px 16px rgba(255, 191, 50, 0.08);
}

.custom-welcome-section {
    background: linear-gradient(120deg, #181818 55%, #222 100%);
    position: relative;
    overflow: hidden;
}

.custom-welcome-container {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}


.custom-welcome-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 54px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 2px;
}

.custom-welcome-content {
    font-family: var(--para-font-family);
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
    /* max-width: 650px; */
    margin: 0 auto 34px;
    text-align: justify;
}

.custom-btn-modern {
    display: inline-block;
    padding: 12px 30px;
    background: var(--green-gradient);
    color: var(--white-color);
    font-family: var(--para-font-family);
    font-weight: 600;
    text-decoration: none;
    border-radius: 26px;
    transition: all 0.20s cubic-bezier(.4, 2, .2, .8);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.13);
    text-transform: uppercase;
    letter-spacing: .75px;
    font-size: 14px;
    margin: 8px 0 24px 0;
}

.custom-btn-modern:hover {
    background: linear-gradient(45deg, var(--main-color), var(--heading-color));
    color: #fff;
    transform: translateY(-1.5px) scale(1.035);
    box-shadow: 0 8px 32px rgba(204, 132, 0, 0.21);
}

.custom-welcome-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.custom-welcome-card {
    background: rgba(45, 45, 45, 0.93);
    padding: 26px 22px 22px 22px;
    border-radius: 14px;
    flex: 1 1 230px;
    min-width: 230px;
    /* max-width: 330px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
    border: 1.5px solid rgba(255, 255, 255, 0.045);
    transition: all 0.33s cubic-bezier(.55, 1.4, .6, 1.01);
    position: relative;
    overflow: hidden;
    text-align: left;
    margin-bottom: 12px;
}

.custom-welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.55, 1.3, .6, 1.04);
}

.custom-welcome-card:hover {
    transform: translateY(-7px) scale(1.018);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 165, 0, 0.22);
}

.custom-welcome-card:hover::before {
    transform: scaleX(1);
}

.custom-welcome-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(255, 206, 86, 0.08);
    font-size: 24px;
}

.custom-welcome-card h3 {
    font-family: var(--heading-font-family);
    color: var(--main-color);
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: .12em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-welcome-card p {
    font-family: var(--para-font-family);
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.62;
    margin: 0;
}

/* Blurred Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(73px);
    z-index: 1;
    opacity: 0.13;
    pointer-events: none;
}

.deco-1 {
    width: 190px;
    height: 190px;
    background: var(--heading-color);
    top: -70px;
    left: -70px;
}

.deco-2 {
    width: 260px;
    height: 260px;
    background: var(--secondary-color);
    bottom: -90px;
    right: -70px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .custom-welcome-heading {
        font-size: 28px;
    }

    .custom-welcome-content {
        font-size: 14px;
    }

    .custom-welcome-card-wrapper {
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .custom-welcome-section {
        padding: 36px 0 30px 0;
    }

    .heading {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .custom-welcome-content {
        font-size: 14px;
        padding: 0 2px;
        margin-bottom: 18px;
        line-height: 1.62;
    }

    .custom-welcome-card-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
    }

    .custom-welcome-card {
        min-width: unset;
        max-width: 100%;
        padding: 16px 10px 14px 10px;
    }

    .custom-btn-modern {
        padding: 10px 18px;
        font-size: 13.2px;
    }

    .deco-1,
    .deco-2 {
        display: none;
    }
}

/* Profile showcase section--------------------------------------------------- */
.profile-showcase-section {
    background-color: #181818;
    position: relative;
}

.profile-showcase-container {
    margin: 0 auto;
}

.profile-section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.profile-section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    width: 68px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 2px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    justify-content: center;
}

.profile-card {
    background: var(--light-dark);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s, transform 0.35s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 11px 32px rgba(0, 0, 0, 0.27);
    border-color: var(--heading-color);
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 120%;
    /* 5:6 aspect ratio */
    overflow: hidden;
    background: #222;
}

.profile-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.64s cubic-bezier(0.3, 0.9, 0.3, 1.2);
    border-radius: 0;
}

.profile-card:hover .profile-image-wrapper img {
    transform: scale(1.07);
}

.profile-info-content {
    padding: 17px 16px 15px 16px;
    /* Reduced vertical padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-family: var(--heading-font-family);
    color: var(--white-color);
    font-size: 1.27rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.profile-stats {
    display: flex;
    gap: 13px;
    margin-bottom: 11px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.13);
    padding: 5px 10px;
    border-radius: 6px;
    font-family: var(--para-font-family);
    color: var(--text-color);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
}

.stat-item span {
    color: var(--main-color);
    font-weight: 600;
    font-size: 1em;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 6px 0 6px 0;
    border-radius: 8px;
    /* Reduced border radius */
    font-family: var(--para-font-family);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--white-color);
    border: none;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.11);
    transition: filter 0.20s, transform 0.20s, box-shadow 0.3s;
}

.btn-whatsapp {
    background: var(--green-gradient, linear-gradient(90deg, #25d366, #128c7e));
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.15);
    border-radius: 8px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    filter: brightness(1.09);
    transform: translateY(-1.5px) scale(1.03);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.30);
}

.btn-call {
    background: linear-gradient(45deg, var(--secondary-color, #fd3c7a), #d1004c 95%);
    box-shadow: 0 2px 10px rgba(255, 73, 105, 0.15);
    border-radius: 8px;
}

.btn-call:hover,
.btn-call:focus {
    filter: brightness(1.09);
    transform: translateY(-1.5px) scale(1.03);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(255, 73, 105, 0.30);
}

.btn-action i {
    font-size: 1.16em;
    opacity: 0.93;
}

/* MOBILE ONLY: Actions row, icons-only */
@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 14px;
    }

    .profile-actions {
        flex-direction: row !important;
        gap: 12px;
    }

    .btn-action {
        flex: 1 1 0%;
        padding: 8px !important;
        justify-content: center;
    }

    .btn-action.icon-only {
        gap: 0 !important;
        justify-content: center;
        min-width: 40px;
        padding: 4px !important;
    }

    .btn-action.icon-only span {
        display: none !important;
    }

    .profile-info-content {
        padding: 12px 7px 10px 7px;
    }
}

/* Split Content with img */
.info-split-section {
    background: linear-gradient(120deg, #2b2c2f 0%, #1b191c 100%);
    position: relative;
    overflow: hidden;
}

.info-split-container {
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 38px;
    z-index: 2;
    position: relative;
}

.info-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-split-heading {
    margin-bottom: 22px;
    display: inline-block;
    text-shadow: 0 2px 24px rgba(85, 27, 52, 0.23);
    padding-left: 8px;
}


.info-split-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 68px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.82;
}

.info-split-text {
    font-family: var(--para-font-family);
    color: var(--text-light, #e5def5);
    font-size: 14px;
    text-align: justify;
    line-height: 1.7;
    margin-top: 20px;

    background: var(--box-bg, rgb(24 23 24 / 28%));
    border-radius: 9px;
    padding: 18px 16px;
    box-shadow: 0 7px 32px 0 rgba(64, 9, 54, 0.11);
    border-left: 2.5px solid var(--main-color, #fd3c7a44);
    transition: box-shadow 0.23s;
}

.info-split-text p {
    margin-bottom: 10px;
}

.info-split-text p:last-child {
    margin-bottom: 0;
}

.info-split-image-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 415px;
    position: relative;
    border-radius: 23px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.info-split-image-wrapper img {
    width: 100%;
    /* height: 370px; */
    object-fit: cover;
    border: 2px solid var(--main-color);
    display: block;
    transition: transform 0.46s cubic-bezier(0.21, 0.91, 0.45, 1.13), filter 0.22s;
    border-radius: 22px;
    filter: grayscale(0.06) brightness(0.97) contrast(0.98);
}

.info-split-image-wrapper:hover img {
    transform: scale(1.045) rotate(-1.05deg);
    filter: grayscale(0.02) brightness(1.01) contrast(1.05);
}

@media (max-width: 1100px) {
    .info-split-container {
        gap: 22px;
    }

    .info-split-image-wrapper {
        max-width: 350px;
        min-width: 220px;
    }
}

@media (max-width: 991px) {
    .info-split-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .info-split-heading {
        text-align: center;
        padding-left: 0;
    }

    .info-split-heading::before {
        left: 50%;
        top: 7px;
        transform: translateX(-50%);
    }

    .info-split-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-split-text {
        margin-top: 10px;
    }

    .info-split-image-wrapper {
        margin: 0 auto;
        max-width: 410px;
        width: 97%;
    }
}

@media (max-width: 700px) {
    .info-split-section {
        padding: 30px 0 23px 0;
    }

    .info-split-container {
        gap: 13px;
        padding: 0 2px;
    }

    .info-split-text {
        padding: 11px 7px;
    }

    .info-split-image-wrapper {
        max-width: 97vw;
        min-width: unset;
    }

}

/* Hotel section --------------------------------------*/
.custom-hotel-section {
    background: linear-gradient(120deg, #181818 0%, #23232b 100%);
    position: relative;
    overflow: hidden;
}

.hotel-container {
    margin: 0 auto;
}

.hotel-section-heading {
    text-align: center;
    margin-bottom: 32px;
    z-index: 2;
}

.hotel-section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    width: 80px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.8;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    justify-content: center;
}

.hotel-card {
    background: linear-gradient(135deg, rgba(33, 40, 46, 0.99) 46%, rgba(50, 35, 45, 0.73) 100%);
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(50, 12, 51, 0.15);
    position: relative;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.78);
    transition: transform 0.3s cubic-bezier(.46, .03, .52, .96), box-shadow 0.3s;
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 20px 50px 0 rgba(86, 24, 88, 0.17), 0 2px 14px rgba(0, 0, 0, .28);
    border-color: var(--main-color, #fd3c7a96);
}

.hotel-image {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 180px;
    max-height: 210px;
    overflow: hidden;
    position: relative;
    background: #23222e;
    border-bottom: 1.5px solid rgba(245, 225, 245, 0.06);
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.42s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05) rotate(-1.6deg);
    filter: brightness(1.06) saturate(1.17);
}

.hotel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24%;
    background: linear-gradient(to top, rgba(22, 19, 33, 0.66), transparent);
    pointer-events: none;
}

.hotel-name-wrapper {
    padding: 18px 17px 17px 17px;
    background: transparent;
    position: relative;
    z-index: 2;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-card h3 {
    font-family: var(--heading-font-family, 'Montserrat', Arial, sans-serif);
    color: var(--white-color, #faf1ff);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
    transition: color 0.28s;
    letter-spacing: 0.015em;
    line-height: 1.4;
}

.hotel-card:hover h3 {
    color: var(--heading-color, #eab5ea);
}

@media (max-width: 900px) {
    .hotel-section-heading {
        font-size: 1.15rem;
    }

    .hotel-grid {
        gap: 17px;
    }
}

@media (max-width: 600px) {
    .custom-hotel-section {
        padding: 27px 0 14px 0;
    }

    .hotel-section-heading {
        margin-bottom: 18px;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hotel-card {
        border-radius: 13px;
    }

    .hotel-image {
        min-height: 124px;
        max-height: unset;
    }

    .hotel-name-wrapper {
        min-height: 52px;
        padding: 12px 9px 10px 9px;
    }
}

/* Footer -----------------------------------------------*/


/*------------- footer icons css ---------------------*/
.fixed-icons {
    position: fixed;
    bottom: 4px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.fixed-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    text-decoration: none;
}

.fixed-icons a.call-icon {
    background: #34B7F1;
    color: #fff;
}

.fixed-icons a.whatsapp-icon {
    background: #25d366;
    color: #fff;
}

.fixed-icons a .fa-telegram,
.fixed-icons a .fab.fa-telegram {
    color: #fff;
}



@media screen and (max-width: 600px) {
    .fixed-icons {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100vw;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        /* background: rgba(20, 20, 20, 0.97); */
        padding: 0 0 0 0;
        z-index: 1200;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.13);

    }

    .fixed-icons a {
        width: 100%;
        height: 32px;
        border-radius: 0;
        margin: 0;
        flex: 1 1 0;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        background: none;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
        display: flex;
    }

    .fixed-icons a:last-child {
        border-right: none;
    }

    .fixed-icons a.call-icon {
        background: #34B7F1;
        color: #fff;
    }

    .fixed-icons a.whatsapp-icon {
        background: #25d366;
        color: #fff;
    }

    .fixed-icons a .fa-telegram,
    .fixed-icons a .fab.fa-telegram {
        color: #ffffff;
    }

    .fixed-icons a:hover {
        filter: brightness(1.1);
        transform: none;
    }
}


/* Design 6: Luxury */
.hotel-section {
    background-color: #1a1a1a;

}

.luxury-card {
    transition: all 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-8px);
}

.luxury-border {
    background: linear-gradient(45deg, var(--main-color), var(--heading-color), var(--secondary-color));
    padding: 2px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.luxury-card:hover .luxury-border {
    background: linear-gradient(45deg, var(--secondary-color), var(--main-color), var(--heading-color));
    box-shadow: 0 15px 30px rgba(204, 132, 0, 0.3);
}

.luxury-border>div {
    background: #2a2a2a;
    border-radius: 13px;
    /* overflow: hidden; */
}

.luxury-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.luxury-card:hover .luxury-image img {
    transform: scale(1.1);
}

.luxury-content {
    padding: 1.5rem;
    position: relative;
}

.luxury-badge {
    position: absolute;
    top: -15px;
    right: 1.5rem;
    background: var(--main-color);
    color: var(--background-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.luxury-content .hotel-name {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.luxury-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Improved Minimal Modern Footer Section  */
.custom-footer {
    background-color: #0d0d0d;
    padding: 22px 0 12px;
    color: var(--text-color);
    border-top: 2px solid rgba(204, 132, 0, 0.2);
    font-size: 14px !important;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 12px;
}

.footer-quicklinks-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.footer-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--para-font-family);
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
    padding-top: 12px;
    text-align: center;
    font-family: var(--para-font-family);
    font-size: 14px !important;
    color: #888;
}

@media (max-width: 600px) {
    .custom-footer {
        padding: 10px 0 6px;
        margin-bottom: 32px;
    }

    .footer-container {
        padding: 0 7px;
    }

    .footer-quicklinks-wrap {
        margin-bottom: 5px;
    }

    .footer-links {
        gap: 10px;
        flex-wrap: wrap;
    }
}