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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: #faf7f5;
    color: #333;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

:root {
    --primary: #7B1028;
    --gold: #C89B3C;
    --white: #fff;
}

/* HEADER */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.logo img {
    width: 280px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.book-btn {
    background: var(--primary);
    color: #fff;
    padding: 8px 28px;
    border-radius: 20px;
    text-decoration: none;
}

/* SIDEBAR */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .4s;
    overflow-y: auto;
    padding: 20px;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: .4s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-top img {
    width: 180px;
}

.close-sidebar {
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
    background: red;
    padding: 5px 10px;
    border-radius: 5px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.sidebar-contact {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    line-height: 1.7;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 14px;
    color: #333;
    display: block;
}

.contact-item a:hover span {
    color: #9b1535;
}

.address-item a {
    align-items: flex-start;
}

.address-item svg {
    margin-top: 6px;
}

/* MOBILE */


@media(max-width:480px) {

    .mobile-sidebar {
        width: 320px;
    }

    .logo img {
        width: 180px;
    }

}

/* HAMBURGER */
.menu-toggle {
    display: none;
    width: 35px;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #7b1028;
    border-radius: 10px;
}

/* Mobile */

@media (max-width:991px) {

    .menu {
        display: none !important;
    }

    .book-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .logo img {
        width: 220px;
    }
}


.sidebar-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.sidebar-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #9b1535;
    color: #9b1535;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.sidebar-social a:hover {
    background: #9b1535;
    color: #fff;
}

.sidebar-social svg {
    width: 20px;
    height: 20px;
}

/* Slider */
/* ====================================
   HERO SECTION
==================================== */

.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

/* ===================================
   HERO SLIDER
=================================== */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===================================
   OVERLAY
=================================== */

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .95) 30%,
            rgba(255, 255, 255, .80) 50%,
            rgba(255, 255, 255, .30) 70%,
            rgba(255, 255, 255, 0) 100%);
}

/* ===================================
   CONTENT
=================================== */

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    color: #7b1028;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    max-width: 550px;
}

/* ===================================
   ICONS
=================================== */

.hero-icons {
    display: flex;
    align-items: center;
    margin: 40px 0;
}

.icon-box {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.icon-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 90px;
    background: #e5d8cb;
}

.icon-box svg {
    width: 55px;
    height: 55px;
    display: block;
    margin: 0 auto 15px;
}

.icon-box span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* ===================================
   BUTTON
=================================== */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8b0d2f;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    background: #6b1026;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px) {

    .hero {
        min-height: 700px;
        padding: 100px 0;
    }

    .hero::after {
        background: rgba(255, 255, 255, .35);
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .icon-box svg {
        width: 45px;
        height: 45px;
    }

    .icon-box span {
        font-size: 15px;
    }

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px) {

    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    /* IMPORTANT FIX */

    .hero-slider {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero::after {
        background: rgba(255, 255, 255, .20);
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .icon-box {
        padding: 0;
    }

    .icon-box:not(:last-child)::after {
        display: none;
    }

    .icon-box svg {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .icon-box span {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-btn {
        width: 100%;
    }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:480px) {

    .hero {
        min-height: 95vh;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .icon-box svg {
        width: 34px;
        height: 34px;
    }

    .icon-box span {
        font-size: 12px;
    }

}

/* BOOKING */

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    margin-top: -50px;
    position: relative;
    z-index: 99;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.check-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    height: 50px;
    margin-top: 25px;
}

/* ABOUT */

.about-section {
    padding: 120px 0;
}

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

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}



.about-content h2 {
    font-size: 62px;
    line-height: 1.1;
    margin: 10px 0 20px;
    color: #7b1028;
    font-family: 'Cormorant Garamond', serif;
}

.about-content p {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    background: #fff;
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #e7e1dc;
}

.about-features svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #444;
    font-weight: 500;
}

/* WHY SECTION */

.why-section {
    padding: 80px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

.why-left h2 {
    font-size: 45px;
    line-height: 1.1;
    color: #7b1028;
    margin: 10px 0 25px;
    font-family: 'Cormorant Garamond', serif;
}

/* RIGHT BOX */

.why-right {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* CARD */

.why-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px 15px;
    background: none;
    border-radius: 0;
    position: relative;
    transition: .3s ease;
}

.why-card:hover {
    background: #faf8f6;
}

.why-card svg {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
}

.why-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

/* DESKTOP BORDERS */

.why-card:nth-child(1),
.why-card:nth-child(2),
.why-card:nth-child(3),
.why-card:nth-child(5),
.why-card:nth-child(6),
.why-card:nth-child(7) {
    border-right: 1px solid #eee7df;
}

.why-card:nth-child(-n+4) {
    border-bottom: 1px solid #eee7df;
}

/* TABLET */

@media(max-width:991px) {

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

    .why-left {
        text-align: center;
    }

    .why-left h2 {
        font-size: 42px;
    }

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

    .why-card {
        border: none !important;
        border-bottom: 1px solid #eee7df !important;
        border-right: none !important;
        padding: 25px 20px;
    }

    .why-card:nth-last-child(1),
    .why-card:nth-last-child(2) {
        border-bottom: none !important;
    }

    .why-card p {
        font-size: 17px;
    }
}

/* MOBILE */

@media(max-width:767px) {

    .why-grid {
        gap: 25px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 20px;
    }

    .why-card:not(:last-child) {
        border-bottom: 1px solid #eee7df !important;
    }

    .why-card:last-child {
        border-bottom: none !important;
    }

    .why-card svg {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .why-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* SMALL MOBILE */

@media(max-width:480px) {

    .why-card {
        gap: 15px;
        padding: 18px;
    }

    .why-card svg {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .why-card p {
        font-size: 15px;
    }

    .why-left h2 {
        font-size: 30px;
    }
}

/* ROOMS */

/* ROOMS */

.rooms-section {
    padding: 100px 0;
    background: #faf7f5;
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    color: #c89b3c;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 58px;
    line-height: 1.1;
    color: #7b1028;
    font-family: 'Cormorant Garamond', serif;
}

.rooms-btn {
    border: 2px solid #caa6af;
    color: #7b1028;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.rooms-btn:hover {
    background: #7b1028;
    color: #fff;
}

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

.room-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .35s;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 22px;
}

.room-content h3 {
    font-size: 25px;
    color: #7b1028;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.room-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #555;
    font-size: 15px;
}

.price span {
    color: #9b1535;
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.room-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #9b1535;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .3s;
}

.room-arrow:hover {
    background: #7b1028;
}

/* =========================
   LARGE TABLET
========================= */

@media(max-width:1200px) {

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

    .section-title {
        font-size: 48px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .rooms-header {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 42px;
    }

    .room-image img {
        height: 250px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

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

    .section-title {
        font-size: 34px;
    }

    .rooms-btn {
        width: 100%;
        text-align: center;
    }

    .room-image img {
        height: 230px;
    }

    .room-content {
        padding: 18px;
    }

    .room-content h3 {
        font-size: 20px;
    }

    .price span {
        font-size: 28px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .section-title {
        font-size: 30px;
    }

    .room-image img {
        height: 200px;
    }

    .room-footer {
        gap: 15px;
    }

    .room-arrow {
        width: 38px;
        height: 38px;
    }
}

/* ATTRACTIONS */
.attractions-section {
    padding: 80px 0;
    background: #faf8f6;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.attraction-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.attraction-card:hover {
    transform: translateY(-8px);
}

.attraction-image {
    height: 260px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.08);
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
}

.attraction-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.attraction-content span {
    font-weight: 700;
    color: #9b1535;
}

/* Tablet */

@media(max-width:991px) {

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

}

/* Mobile */

@media(max-width:767px) {

    .attractions-section {
        padding: 80px 0;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .attraction-image {
        height: 220px;
    }

    .attraction-content h3 {
        font-size: 22px;
    }

}

/* TESTIMONIAL */

/* ===========================
   TESTIMONIAL SECTION
=========================== */

.testimonial-section {
    position: relative;
    padding: 80px 0;
    background: url('images/rameswaram temple.webp') center center/cover no-repeat;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(91, 8, 31, 0.52),
            rgba(155, 21, 53, 0.58));
    z-index: 1;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

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

.testimonial-section .section-subtitle {
    color: #d6a43a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.testimonial-section .section-title {
    color: #fff;
    font-size: 54px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-section .section-desc {
    max-width: 700px;
    margin: auto;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.8;
}

/* Slider */

.testimonial-slider {
    margin-top: 60px;
    padding-bottom: 60px;
}

/* Card */

.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    color: #fff;
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

.stars {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #fff;
}

.testimonial-card h4 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

/* Pagination */

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 30px;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px) {

    .testimonial-section {
        padding: 90px 0;
    }

    .testimonial-section .section-title {
        font-size: 42px;
    }

    .testimonial-section .section-desc {
        font-size: 16px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px) {

    .testimonial-section {
        padding: 80px 0;
        background-position: center center;
    }

    .testimonial-section .section-title {
        font-size: 34px;
    }

    .testimonial-section .section-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-slider {
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px;
        border-radius: 20px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .testimonial-card h4 {
        font-size: 16px;
    }

    .stars {
        font-size: 18px;
    }

}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px) {

    .testimonial-section .section-title {
        font-size: 30px;
    }

    .testimonial-card {
        padding: 20px;
    }

}

/* CONTACT */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* FOOTER */

/* ===================================
   FOOTER
=================================== */

.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #5d071d 0%,
            #8b0d2f 50%,
            #a00f34 100%);
    color: #fff;
    padding: 80px 0 25px;
}

/* Temple Background */

.footer::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('images/footer-temple-outline.webp') no-repeat right bottom;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER GRID
=================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col {
    position: relative;
    padding-right: 30px;
}

/* Vertical Divider */

.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -20px;
    width: 1px;
    height: 85%;
    background: rgba(255, 255, 255, .15);
}

/* ===================================
   TITLES
=================================== */

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.footer-col h4 img {
    width: 250px;
    max-width: 100%;
}

/* ===================================
   TEXT
=================================== */

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.9;
    text-decoration: none;
}

.footer-col a:hover {
    color: #d6a43a;
}

/* ===================================
   QUICK LINKS
=================================== */

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 4px;
}

/* ===================================
   CONTACT
=================================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 5px;
    color: #fff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    line-height: 1.7;
    transition: .3s;
}

.footer-contact a:hover {
    color: #d6a43a;
}

/* ===================================
   SOCIAL
=================================== */

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: #d6a43a;
    border-color: #d6a43a;
    color: #5d071d;
    transform: translateY(-3px);
}

/* ===================================
   COPYRIGHT
=================================== */

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 20px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.copyright a {
    color: #d6a43a;
    text-decoration: none;
}

.copyright a:hover {
    color: #fff;
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 991px) {

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

    .footer-col {
        padding-right: 0;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-col::after {
        display: none;
    }

    .footer::after {
        opacity: .08;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {

    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-col {
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4 img {
        margin: 0 auto;
        display: block;
        width: 220px;
    }

    .copyright {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer::after {
        background-position: center bottom;
        background-size: 280px;
        opacity: .06;
    }
}

/* ===================================
   LARGE TABLET
=================================== */

@media (max-width:1200px) {

    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .about-content h2 {
        font-size: 52px;
    }

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

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

}

/* ===================================
   TABLET
=================================== */

@media (max-width:991px) {

    .logo img {
        width: 220px;
    }

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

    .hero::before {
        background-size: cover;
        opacity: .12;
    }

    .hero::after {
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, .95) 30%,
                rgba(255, 255, 255, .80) 50%,
                rgba(255, 255, 255, .30) 70%,
                rgba(255, 255, 255, 0) 100%);
    }

    .hero-grid {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-btn {
        padding: 12px 30px;
    }

    .hero-icons {
        justify-content: center;
        gap: 20px;
    }

    .icon-box {
        padding: 0 10px;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-image img {
        height: auto;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-features {
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 0 0 50%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:767px) {

    .container {
        width: 92%;
    }

    .logo img {
        width: 180px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-icons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .icon-box {
        flex: 0 0 calc(50% - 10px);
    }

    .icon-box:not(:last-child)::after {
        display: none;
    }

    .icon-box svg {
        width: 40px;
        height: 40px;
    }

    .icon-box span {
        font-size: 14px;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-features {
        flex-direction: column;
    }

    .feature-card {
        flex: 100%;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

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

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid div {
        text-align: center;
    }

}

/* ===================================
   SMALL MOBILE
=================================== */
@media (max-width:380px) {
    .booking-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width:480px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-icons {
        flex-direction: column;
    }

    .icon-box {
        width: 100%;
    }

    .icon-box svg {
        width: 35px;
        height: 35px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .book-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .check-btn {
        width: 100%;
    }

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.counter-section {
    padding: 100px 0;
    background: #fff;
}

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

.counter-box {
    background: #faf8f6;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;

    box-shadow:
        0 2px 10px rgba(250, 218, 218, 0.8);

    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}

.counter-box h2 {
    font-size: 72px;
    font-weight: 800;
    color: #8b0d2f;
    line-height: 1;
    margin-bottom: 15px;
}

.counter-box p {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Tablet */

@media(max-width:991px) {

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

    .counter-box h2 {
        font-size: 58px;
    }

    .counter-box p {
        font-size: 20px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .counter-section {
        padding: 70px 0;
    }

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

    .counter-box {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .counter-box h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .counter-box p {
        font-size: 16px;
    }

}

/* Video Section */

.video-enquiry-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2;
}

.video-enquiry-section .container {
    position: relative;
    z-index: 3;
}

.video-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */

.video-content {
    color: #fff;
}

.video-content .section-subtitle {
    color: #d6a43a;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.video-content h2 {
    font-size: 60px;
    line-height: 1.1;
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
}

.video-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Form */

.enquiry-box {
    background: rgba(255, 255, 255, .95);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.enquiry-box h3 {
    margin-bottom: 25px;
    color: #8b0d2f;
    font-size: 32px;
}

.enquiry-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enquiry-box input,
.enquiry-box select {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 15px;
}

.enquiry-box button {
    height: 55px;
    border: none;
    background: #8b0d2f;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
}

.enquiry-box button:hover {
    background: #6b1026;
}

@media(max-width:991px) {

    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-content h2 {
        font-size: 46px;
    }

}

@media(max-width:767px) {

    .video-enquiry-section {
        padding: 80px 0;
    }

    .video-content h2 {
        font-size: 34px;
    }

    .video-content p,
    .feature-list li {
        font-size: 16px;
    }

    .enquiry-box {
        padding: 25px;
    }

    .enquiry-box h3 {
        font-size: 26px;
    }

}

/* Abouts Page */
.page-banner {
    position: relative;
    padding: 140px 0 80px;
    background: url('images/about-banner.webp') center center/cover no-repeat;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-content {
    text-align: center;
    color: #fff;
}

.page-banner-content h1 {
    font-size: 70px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: #d6a43a;
    text-decoration: none;
}

.breadcrumb span {
    color: #fff;
}

@media(max-width:767px) {

    .page-banner {
        padding: 120px 0 60px;
    }

    .page-banner-content h1 {
        font-size: 42px;
    }

}


/* ==========================
   WHO WE ARE
========================== */

.who-section {
    padding: 100px 0;
    background: #fff;
}

.who-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.who-subtitle {
    display: inline-block;
    color: #c69a3b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.who-title {
    font-size: 58px;
    line-height: 1.1;
    color: #7b1028;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.who-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.who-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.who-card {
    background: #faf7f7;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: .3s;
    border: 1px solid #eee;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.who-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.who-card h4 {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px) {

    .who-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-title {
        font-size: 46px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px) {

    .who-section {
        padding: 70px 0;
    }

    .who-title {
        font-size: 38px;
    }

    .who-content p {
        font-size: 16px;
    }

    .who-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .who-card {
        padding: 18px;
    }

    .who-icon {
        font-size: 30px;
    }

    .who-card h4 {
        font-size: 14px;
    }
}

/* Who Gallery */
.who-visual {
    position: relative;
    min-height: 650px;
    width: 100%;
}

.floating-img {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    transition: .4s;
}

.floating-img:hover {
    transform: translateY(-8px);
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Left */

.img-1 {
    width: 420px;
    height: 280px;
    top: 0;
    left: 10px;
}

/* Top Right */

.img-2 {
    width: 260px;
    height: 320px;
    top: 40px;
    right: 0;
}

/* Bottom Left */

.img-3 {
    width: 280px;
    height: 340px;
    bottom: 0;
    left: 0;
}

/* Bottom Right */

.img-4 {
    width: 220px;
    height: 250px;
    bottom: 0px;
    right: 10px;
}

/* Center Logo */

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    z-index: 20;
}

.center-logo img {
    width: 75px;
}

@media(max-width:991px) {

    .who-visual {
        min-height: 500px;
        margin-top: 40px;
    }

    .img-1,
    .img-2,
    .img-3,
    .img-4 {
        width: 45%;
        height: 180px;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .who-visual {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .center-logo {
        width: 80px;
        height: 80px;
    }

    .center-logo img {
        width: 45px;
    }
}

/*Contact Us Page */

/* =========================
CONTACT BANNER
========================= */

.contact-banner {
    padding: 140px 0 80px;
    text-align: center;
    background:
        linear-gradient(rgba(91, 7, 29, .8),
            rgba(91, 7, 29, .8)),
        url(images/contact-banner.webp);
    background-size: cover;
    background-position: center;
}

.contact-banner h1 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.breadcrumb {
    color: #fff;
}

.breadcrumb a {
    color: #d7b37a;
    text-decoration: none;
}

/* =========================
CONTACT SECTION
========================= */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 50px;
    color: #7b1028;
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
}

.contact-item {
    margin-top: 20px;
    line-height: 1.8;
    color: #444;
}

.contact-item a {
    color: #444;
    text-decoration: none;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 10px;
}

.contact-form button {
    width: 100%;
    border: none;
    background: #8b0d2f;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
}

/* =========================
MAP
========================= */

.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* =========================
FAQ
========================= */

.faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 22px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 24px;
    color: #8b0d2f;
    transition: .3s;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media(max-width:767px) {

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 15px;
    }

}

/* =========================
CTA
========================= */

.cta-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(91, 7, 29, .5),
            rgba(139, 13, 47, .6)),
        url(images/cta-bg.webp);
    background-size: cover;
    background-position: center;
}

.cta-content {
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #fff;
}

.cta-content span {
    color: #d7b37a;
    letter-spacing: 3px;
}

.cta-content h2 {
    font-size: 58px;
    margin: 20px 0;
    font-family: 'Cormorant Garamond', serif;
}

.cta-content p {
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-btn,
.cta-outline {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn {
    background: #fff;
    color: #8b0d2f;
}

.cta-outline {
    border: 2px solid #fff;
    color: #fff;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .cta-content h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .contact-banner {
        padding: 120px 0 60px;
    }

    .contact-banner h1 {
        font-size: 40px;
    }

    .contact-section,
    .faq-section,
    .cta-section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .map-section iframe {
        height: 350px;
    }
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info .contact-item svg {
    width: 22px;
    height: 22px;
    color: #8b0d2f;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-info .contact-item a,
.contact-info .contact-item span {
    color: #444;
    text-decoration: none;
    line-height: 1.8;
    font-size: 16px;
}

.contact-info .contact-item a:hover {
    color: #8b0d2f;
}

/* Gallery Page */

.gallery-section {
    padding: 100px 0;
    background: #fff;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    display: block;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    transition: .3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #8b0d2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 0;
    z-index: 2;
    transition: .3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media(max-width:991px) {

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

}

@media(max-width:767px) {

    .gallery-section {
        padding: 70px 0;
    }

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

    .gallery-item img {
        height: 180px;
    }

}

@media(max-width:480px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}

/*Facilities Page */

.facilities-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.facilities-section .section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.facilities-section .section-subtitle {
    display: inline-block;
    color: #c89d45;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.facilities-section h2 {
    font-size: 54px;
    color: #7b1028;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.facilities-section .section-heading p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
    border: 1px solid #eee;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #faf2f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon svg {
    width: 40px;
    height: 40px;
}

.facility-card h3 {
    font-size: 22px;
    color: #7b1028;
    margin-bottom: 15px;
}

.facility-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Tablet */

@media(max-width:991px) {

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

    .facilities-section h2 {
        font-size: 42px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .facilities-section {
        padding: 70px 0;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facilities-section h2 {
        font-size: 34px;
    }

    .facility-card {
        padding: 25px;
    }

    .facility-card h3 {
        font-size: 20px;
    }

}

/*Booking Page*/


.booking-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.booking-page-section .booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: baseline;
}

.sticon {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    animation: floatLogo 3s ease-in-out infinite;
}

.sticon img {
    width: 200px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .15));
}

@keyframes floatLogo {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.booking-page-section .booking-content h2 {
    font-size: 56px;
    color: #7b1028;
    margin: 20px 0;
    line-height: 1.1;
}

.booking-page-section .booking-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.booking-page-section .booking-content ul {
    list-style: none;
    padding: 0;
}

.booking-page-section .booking-content ul li {
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

.booking-page-section .booking-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.booking-page-section .booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.booking-page-section .form-group {
    width: 100%;
}

.booking-page-section .full-width {
    grid-column: span 2;
}

.booking-page-section .booking-form input,
.booking-page-section .booking-form select,
.booking-page-section .booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.booking-page-section .booking-form input:focus,
.booking-page-section .booking-form select:focus,
.booking-page-section .booking-form textarea:focus {
    border-color: #9b1535;
}

.booking-page-section .booking-btn {
    width: 100%;
    background: #9b1535;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.booking-page-section .booking-btn:hover {
    background: #7b1028;
}

@media(max-width:991px) {

    .booking-page-section .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-page-section .booking-content h2 {
        font-size: 42px;
    }

}

.whatsapp-btn {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    height: 65px;

    margin-top: 20px;

    background: #25D366;
    color: #fff;

    border-radius: 18px;
    text-decoration: none;

    font-size: 20px;
    font-weight: 700;

    transition: .3s;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, .25);
}

@media(max-width:767px) {

    .booking-page-section {
        padding: 70px 0;
    }

    .booking-page-section .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-page-section .full-width {
        grid-column: span 1;
    }

    .booking-page-section .booking-content h2 {
        font-size: 34px;
    }

    .booking-page-section .booking-form-wrap {
        padding: 25px;
    }

}