/********** Template CSS **********/

/*** Global Styles ***/
body {
    font-family: "Poppins", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.book-now {
    display: inline-block;
    padding: 15px 35px;
    background: #0d6b68;
    border: 1px solid transparent;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.book-now:hover {
    background: transparent;
    color: #0d6b68;
    border: 1px solid #0d6b68;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 45px;
    z-index: 99;
    border-radius: 50%;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 60px;
    height: 60px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: 0;
    transition: all .5s;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgb(140, 104, 66);
}

.sticky-top.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 10px 0;
    font-family: "Inter", "Google Sans", sans-serif;
    font-size: 16px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 40px;
    padding: 0;
    outline: none;
    color: #ffffff;
    transition: all 0.3s;
}

.sticky-top.scrolled .navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(210 179 111);
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Section ***/
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero {
    background: url(../img/about-hero-bg.png) top center no-repeat !important;
}

.hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 19%);
    z-index: 0;
}

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

.owl-carousel .owl-item img {
    border: 2px solid #9f6619;
}

/* Hero Content */
.hero-content {
    padding: 20px 0;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-title-gold {
    color: #d6ba74;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #092c2a;
    border: 1px solid #876624;
    color: #C9A961;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-btn:hover {
    background: #C9A961;
    color: #000;
}

.hero-btn i {
    margin-left: 10px;
    font-size: 14px;
}

/* Hero Image Slider */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.header-carousel {
    position: relative;
    width: calc(100% + 50px);
}

.header-carousel .owl-stage-outer {
    overflow: hidden !important;
}

.header-carousel .owl-stage {
    display: flex;
}

.header-carousel .owl-item {
    flex: 0 0 auto;
}

.header-carousel img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    display: block;
}


.header-carousel {
    position: relative;
}

/* 
.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: #ffffff;
} */

@media (max-width: 991px) {
    .img-n {
        width: 100%;
    }

    .hero-carousel-wrapper {
        padding: 0px 45px 0px 0;
        margin-top: 0px !important;
    }
      .header-carousel {
        width: calc(100% + 100px);
    }

    .hero-carousel-wrapper::before {
        width: calc(60% + 45px);
    }

    .why-choose-section .col-lg-7 {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-carousel-wrapper {
        padding: 30px 30px 30px 0;
    }

    .header-carousel {
        width: calc(100% + 85px);
    }



    .header-carousel .owl-dots {
        right: 20px;

}
}

/* Hero Features */
.hero-features {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: #C9A961;
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #092c2a85;
    border: 1px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #C9A961;
    margin-bottom: 20px;
}

.feature-content {
    width: 100%;
}

.feature-content h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 30px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
        padding: 20px;
    }

    .hero-features {
        margin-top: 30px;
    }

    .feature-content h5 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .book-now {

        padding: 12px 35px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

/*** Old Hero Header - Keep for other pages ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 52%);
    z-index: 0;
}

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

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 30px 90px 30px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

/* .header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
} */


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}

.project-item:hover img {
    transform: scale(1.2);
}

.project-overlay h4 {
    font-size: 16px;
}

.project-overlay small {
    font-size: 12px;
}

.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, #040709);
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

/* .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
} */

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.navbar-brand {
    padding: 0px;

}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.logo-brand {
    width: 230px;
    position: relative;
}

/* Logo Switching on Scroll */
.logo-brand .logo-white {
    display: block;
    transition: opacity 0.3s ease;
}

.logo-brand .logo-dark {
    display: none;
    transition: opacity 0.3s ease;
}

/* When navbar is scrolled */
.scrolled .logo-brand .logo-white {
    display: none;
}

.scrolled .logo-brand .logo-dark {
    display: block;
}

.book-now {
    color: white;
}


/*** Property Highlights Section ***/
.property-highlights-section {
    position: relative;
    background: #0a0a0a;
    padding: 0;

}

.highlights-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.highlights-image-wrapper img {
    object-fit: cover;
    height: 100%;
}

.highlights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 51%) 100%);
}

.highlights-content-wrapper {
    background: linear-gradient(259deg, rgb(0 0 0 / 94%) 0%, rgb(0 0 0 / 79%) 100%), url(../img/property-1.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlights-header {
    margin-bottom: 50px;
}

.highlights-title {
    font-size: 32px;
    font-weight: 700;
    color: #C9A961;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: #C9A961;
    margin-bottom: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.highlight-item {
    position: relative;
    padding-left: 70px;
}

.highlight-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #C9A961;
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.highlight-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Responsive for Property Highlights */
@media (max-width: 991px) {
    .highlights-content-wrapper {
        padding: 60px 40px;
    }

    .highlights-image-wrapper {
        min-height: 400px;
    }

    .highlights-title {
        font-size: 28px;
    }

    .highlights-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .property-highlights-section {
        margin: 60px 0;
    }

    .highlights-content-wrapper {
        padding: 40px 25px;
    }

    .highlights-image-wrapper {
        min-height: 300px;
    }

    .highlights-title {
        font-size: 24px;
    }

    .highlight-item {
        padding-left: 60px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .highlight-item h4 {
        font-size: 15px;
    }

    .highlight-item p {
        font-size: 13px;
    }
}


/*** Amenities Section ***/
.amenities-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-divider-center {
    width: 80px;
    height: 3px;
    background: #C9A961;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;

}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-10px);
}

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ffffff;
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #C9A961;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1);
}

.amenity-item:hover .amenity-icon-wrapper {
    background: #C9A961;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.3);
}

.amenity-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Responsive for Amenities */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }
}

@media (max-width: 991px) {
    .amenities-section {
        padding: 80px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

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

    .amenity-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .amenities-section {
        padding: 60px 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

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

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

    .amenity-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .amenity-item h5 {
        font-size: 12px;
    }
}

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

    .section-header {
        margin-bottom: 40px;
    }
}


/*** New Amenities Section - Unique Design ***/
.amenities-section-new {
    padding: 100px 0;

    background: linear-gradient(259deg, rgb(0 0 0 / 56%) 0%, rgba(0, 0, 0, 0.79) 100%), url(../img/aminites-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}


.amenities-section-new .container {
    position: relative;
    z-index: 1;
}

.amenities-header {
    margin-bottom: 70px;
}

.amenities-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 15px;
}

.amenities-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.text-gold {
    color: #C9A961;
}

.amenities-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #C9A961 50%, transparent 100%);
    margin: 0 auto;
}

.amenities-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.testimonial-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.testimonial-text p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Change to 2 if you want only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.amenity-card {
    /* background: rgba(255, 255, 255, 0.03); */
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: rgb(4 7 10 / 35%);
    border-color: #c9a961ab;
    box-shadow: 0 15px 40px rgb(201 169 97 / 9%);
}

.amenity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);

}

.amenity-card:hover::before {
    left: 100%;
}

/* .amenity-card:hover {
    background: rgba(201, 169, 97, 0.08);
    border-color: #C9A961;
   
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
} */

.amenity-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #C9A961;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-card-icon {
    background: #554f39;

    border-color: #C9A961;

}

.amenity-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.amenity-card:hover h5 {
    color: #C9A961;
}

/* Responsive for New Amenities */
@media (max-width: 1200px) {
    .amenities-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .amenities-section-new {
        padding: 30px 0;
    }

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

    .amenities-main-title {
        font-size: 36px;
    }

    .amenity-card {
        padding: 30px 15px;
    }

    .amenity-card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .amenities-section-new {
        padding: 30px 0;
    }

    .amenities-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .amenities-main-title {
        font-size: 30px;
    }

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

    .amenity-card {
        padding: 25px 12px;
        border-radius: 12px;
    }

    .amenity-card-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .amenity-card h5 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .amenities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenities-header {
        margin-bottom: 50px;
    }

    .amenity-card {
        padding: 20px 10px;
    }
}


/*** Ekayan Footer ***/
.ekayan-footer {
    background: #0a0a0a;
    position: relative;
}

/* CTA Section */
.footer-cta {
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.15) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(201, 169, 97, 0.15) 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    padding: 25px 0;
    position: relative;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.05) 50%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

/* Main Footer */
.footer-main {
    padding: 60px 0 30px;
}

.footer-brand-section {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A961;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #C9A961;
    color: #000;
    border-color: #C9A961;
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #C9A961;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 113px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #ffffff;
    transform: scale(1.1);
}

.whatsapp-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff0000;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .cta-title {
        font-size: 20px;
    }

    .footer-links-section {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .footer-cta {
        padding: 20px 0;
    }

    .cta-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .cta-title {
        font-size: 18px;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-links-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-link {
        font-size: 13px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 80px;
        right: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.project-overlay h4 {}

/*** Why Choose Section ***/
.why-choose-section {
    padding: 60px 0;
    background: #ffffff;
}

.why-choose-content {
    padding-right: 30px;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-desc-2 {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
    padding: 30px;
    border-left: 4px solid #C9A961;
}

.contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* transition: all 0.4s ease; */
}

.feature-card:hover {

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: all 0.4s ease; */
}


.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.feature-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-card p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    min-height: 113px;
}

.feature-dark {
    background: #1a1a1a;
}

.feature-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-light {
    background: #f8f9fa;
    border: 1px solid #e1d2af;
}

.feature-light p {
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .section-heading {
        font-size: 36px;
    }

    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .feature-img-wrapper {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-desc,
    .section-desc-2 {
        font-size: 15px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px !important;
    }

    .testimonial-text {
        padding-bottom: 3rem !important;
    }

    .why-choose-section .why-choose-content {
        margin-bottom: 0px;
    }

    .contact-info h4 {
        font-size: 20px;
    }

    .feature-img-wrapper {
        height: 220px;
    }
}


/*** Villa Gallery Left Side ***/
.villa-gallery-left {
    background: url(../img/slide-3.png) center center no-repeat;
    background-size: cover;
    border-radius: 0;
    position: relative;
}

.villa-gallery-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(259deg, rgb(0 0 0 / 51%) 0%, rgb(0 0 0 / 79%) 100%);
    z-index: 0;
}

.villa-gallery-left>* {
    position: relative;
    z-index: 1;
}

.villa-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.villa-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.villa-highlight {
    color: #C9A961;
}

.villa-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 20px 0;
}

.villa-count {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 18px;
}

.villa-count .display-1 {
    color: #C9A961;
    font-weight: 700;
}

@media (max-width: 991px) {
    .villa-main-title {
        font-size: 38px;
    }

    .villa-gallery-left {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .villa-main-title {
        font-size: 32px;
    }

    .villa-description {
        font-size: 15px;
    }
}


/*** Room Configuration Section - Banner Style ***/
.room-config-section-new {
    position: relative;
    margin: 80px 0;
}

.config-banner {
    position: relative;
    background: url(../img/about-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 80px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.config-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

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

.config-item {
    padding: 30px 15px;
    text-align: center;
    position: relative;
}

.config-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: rgba(201, 169, 97, 0.3);
}

.col-lg-3:last-child .config-item::after,
.col-md-6:nth-child(2n) .config-item::after {
    display: none;
}

@media (max-width: 991px) {
    .col-lg-3:nth-child(2) .config-item::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .col-6:nth-child(2n) .config-item::after {
        display: none;
    }
}

.config-label {
    font-size: 16px;
    font-weight: 600;
    color: #8C6842;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.config-number {
    font-size: 72px;
    font-weight: 300;
    color: #8C6842;
    margin: 0;
    line-height: 1;
    font-family: "Playfair Display", serif;
}

@media (max-width: 991px) {
    .config-banner {
        padding: 60px 0;
        min-height: 280px;
    }

    .config-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .config-number {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .room-config-section-new {
        margin: 60px 0;
    }

    .config-banner {
        padding: 50px 0;
        min-height: 220px;
    }

    .config-item {
        padding: 20px 10px;
    }

    .config-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .config-number {
        font-size: 48px;
    }

    .config-item::after {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .config-label {
        font-size: 11px;
    }

    .config-number {
        font-size: 42px;
    }
}



/*** Villa Experience Section ***/
.villa-experience-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background: #ffffff;
}

.experience-images {
    position: relative;
}

.exp-img-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #c1c3c2;
}

.exp-img-main img {
    width: 100%;
    height: auto;
}

.exp-img-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.exp-img-floating img {
    width: 100%;
    height: auto;
}

.exp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.exp-badge i {
    font-size: 18px;
    color: #ffffff;
}

.exp-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.exp-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.exp-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.exp-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.exp-feature-icon {
    min-width: 25px;
    width: 25px;
    height: 25px;
    /* background: #C9A961; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #ffffff;
    
}

.exp-feature-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.exp-feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .villa-experience-section {
        padding: 30px 0;
    }

    .exp-img-floating {
        bottom: -20px;
        right: -20px;
        width: 55%;
    }
}

@media (max-width: 767px) {
    .book-now {
        margin-top: 0px;
    }

    .villa-experience-section {
        padding: 30px 0;
    }

    .experience-images {
        margin-bottom: 40px;
    }

    .exp-img-floating {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }

    .exp-description {
        font-size: 15px;
    }

    .exp-feature-content h4 {
        font-size: 16px;
    }
}


/*** Common Section Styles ***/
.section-title-dark {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .section-title-dark {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-title-dark {
        font-size: 28px;
    }
}


/*** Booking Info Section - Unique Design ***/
.booking-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.booking-image-wrapper {
    position: relative;
}

.main-booking-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.main-booking-img img {
    width: 100%;
    height: auto;
}

.booking-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.info-card-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-card-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Booking Content */
.booking-content {
    padding-left: 20px;
}

.header-main {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.booking-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-text {
    color: #C9A961;
}

.booking-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature Boxes */
.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9e0cb;
    transition: all 0.3s ease;
}



.feature-box-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0d6b68;
}

.feature-box-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.feature-box-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Booking CTA */
.booking-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-book-now {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-book-now:hover {
    background: transparent;
    color: #0d6b68;
    border-color: #0d6b68;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 107, 104, 0.2);
}

.booking-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-contact i {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #C9A961;
}

.booking-contact div {
    display: flex;
    flex-direction: column;
}

.booking-contact span {
    font-size: 13px;
    color: #666;
}

.booking-contact strong {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .booking-info-section {
        padding: 30px 0;
    }

    .booking-content {
        padding-left: 0;

    }

    .booking-heading {
        font-size: 32px;
    }

    .booking-info-card {
        bottom: 20px;
        left: 20px;
        padding: 20px;
        max-width: 260px;
    }

}

@media (max-width: 767px) {
    .booking-features {
        gap: 0px !important;
    }

    .booking-info-section {
        padding: 30px 0;
    }

    .booking-heading {
        font-size: 26px;
    }

    .booking-text {
        font-size: 15px;
        margin-bottom: 15px;
    }

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

    .feature-box {
        padding: 15px;
    }

    .booking-info-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .booking-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-book-now {
        padding: 14px 30px;
        font-size: 15px;
    }
}


/*** What Guests Love Section - Theme Consistent ***/
.guests-love-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Stats Sidebar */
.stats-wrapper {
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.stats-title span {
    color: #C9A961;
}

.stats-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.stat-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #C9A961;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .plus,
.stat-number .percent {
    font-size: 36px;
    margin-left: 5px;
}

.stat-number .star {
    color: #C9A961;
    font-size: 36px;
    margin-left: 5px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Love Cards Grid - Theme Colors */
.love-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(201, 169, 97, 0.15);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.love-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.05), transparent);
    transition: all 0.6s ease;
}

.love-card:hover::before {
    left: 100%;
}

.love-card:hover {
    border-color: #C9A961;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
}

.love-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: rgba(13, 107, 104, 0.08);
    color: #0d6b68;
}

.love-card:hover .love-icon {
    background: #C9A961;
    color: #ffffff;
    transform: scale(1.1);
}

.love-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.love-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.love-rating {
    color: #C9A961;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .guests-love-section {
        padding: 80px 0;
    }

    .stats-wrapper {
        padding: 50px 30px;
        margin-bottom: 30px;
    }

    .stats-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .guests-love-section {
        padding: 60px 0;
    }

    .stats-wrapper {
        padding: 40px 25px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-number .plus,
    .stat-number .percent,
    .stat-number .star {
        font-size: 30px;
    }

    .love-card {
        padding: 25px;
        margin-bottom: 15px;
    }

    .love-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .love-card h4 {
        font-size: 18px;
    }

    .love-card p {
        font-size: 13px;
    }
}


/*** About Page Specific Styles ***/

/* About Panchgani Section */
.about-panchgani-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.panchgani-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #efe6d1;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box i {
    font-size: 20px;
    color: #0d6b68;
}

.highlight-box span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.panchgani-img {
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
}

.panchgani-img img {
    width: 100%;
    height: auto;
}

/* Vision Mission Section - Ultra Premium Design */
.vision-mission-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.vm-premium-card {
    position: relative;
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    height: 100%;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}


.vm-premium-card:hover::before {
    height: 100%;
}

.vm-premium-card:hover {

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Background Pattern */
.vm-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.03) 0%, rgba(201, 169, 97, 0.03) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

/* Number Badge */
.vm-number {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    border: 3px solid #ffffff;
}

/* Icon Wrapper */
.vm-icon-wrapper {
    padding: 40px 40px 0;
    position: relative;
    z-index: 1;
}

.vm-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.1) 0%, rgba(10, 85, 82, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.vm-icon-circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed #C9A961;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.vm-icon-circle i {
    font-size: 42px;
    color: #0d6b68;
    transition: all 0.5s ease;
}

.vm-premium-card:hover .vm-icon-circle i {
    color: #C9A961;

}

.lh-base {
    font-size: 20px;
}

/* Content */
.vm-content {
    padding: 30px 40px 40px;
    position: relative;
    z-index: 1;
}

.vm-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vm-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961 0%, #0d6b68 100%);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.vm-premium-card:hover .vm-divider {
    width: 100px;
}

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

/* Quote */
.vm-quote {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(13, 107, 104, 0.05);
    border-left: 3px solid #C9A961;
    border-radius: 0 8px 8px 0;
}

.vm-quote i {
    font-size: 20px;
    color: #C9A961;
}

.vm-quote span {
    font-size: 14px;
    font-weight: 600;
    color: #0d6b68;
    font-style: italic;
}

/* Vision Card Specific */
.vm-vision-card {
    border-top: 4px solid #C9A961;
}

/* Mission Card Specific */
.vm-mission-card {
    border-top: 4px solid #0d6b68;
}

/* Responsive Vision Mission */
@media (max-width: 991px) {
    .vision-mission-section {
        padding: 80px 0;
    }

    .vm-icon-wrapper {
        padding: 35px 35px 0;
    }

    .vm-icon-circle {
        width: 85px;
        height: 85px;
    }

    .vm-icon-circle i {
        font-size: 36px;
    }

    .vm-content {
        padding: 25px 35px 35px;
    }

    .vm-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .vm-number {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-width: 2px;
    }

    .vm-card-bg {
        width: 180px;
        height: 180px;
    }

    .vm-icon-wrapper {
        padding: 30px 25px 0;
    }

    .vm-icon-circle {
        width: 75px;
        height: 75px;
    }

    .vm-icon-circle i {
        font-size: 32px;
    }

    .vm-content {
        padding: 20px 25px 30px;
    }

    .vm-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .vm-divider {
        width: 50px;
        height: 2px;
        margin-bottom: 15px;
    }

    .vm-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .vm-quote {
        padding: 12px 15px;
        gap: 10px;
    }

    .vm-quote i {
        font-size: 16px;
    }

    .vm-quote span {
        font-size: 13px;
    }
}

/* What Makes Us Special Section */
.special-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.special-images {
    position: relative;
}

.special-img-main {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.special-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;

}

.special-badge h4 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.special-badge p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.special-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.special-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eadcba;
}


.special-feature-item:hover {

    box-shadow: 0 5px 25px rgba(201, 169, 97, 0.15);

}

.sf-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(13, 107, 104, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0d6b68;
}

.sf-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.heading-container {
    padding-top: 140px;
    padding-bottom: 15px;
}

.sf-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-hero {
    padding: 0px !important;
    min-height: 40px;
}

/* Call to Action About Page */
.cta-section-about {
    padding: 60px 0;
    background: url(../img/hero-bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(259deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 76%) 100%);
    z-index: 0;
}



.cta-section-about .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 33px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Responsive About Page */
@media (max-width: 991px) {

    .about-panchgani-section,
    .vision-mission-section,
    .special-section,
    .cta-section-about {
        padding: 30px 0;
    }

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

    .special-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 30px;
    }
}

@media (max-width: 767px) {

    .about-panchgani-section,
    .vision-mission-section,
    .special-section,
    .cta-section-about {
        padding: 30px 0;
    }

    .panchgani-highlights {
        flex-direction: column;
    }

    .highlight-box {
        width: 100%;
    }

    .vm-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .vm-card h3 {
        font-size: 22px;
    }

    .special-feature-item {
        padding: 20px;
    }

    .sf-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    .special-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}


/*** Our Villa Page - Premium Design ***/

/* Villa Overview Section */
.villa-overview-section {
    padding: 60px 0;
    background: #ffffff;
}

.overview-image-grid {
    position: relative;
    padding-bottom: 50px;
}

.overview-img-1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-img-1 img {
    width: 100%;
    height: auto;
}

.overview-img-2 {
    position: absolute;
    bottom: 0;
    right: -18px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.overview-img-2 img {
    width: 100%;
    height: auto;
}

.overview-stats {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0d6b68;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.villa-intro {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

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

.quick-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ddc0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.quick-feature:hover {
    border-color: #e9ddc0;

}

.quick-feature i {
    font-size: 26px;
    color: #0d6b68;
    min-width: 30px;
}

.quick-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Amenities Grid Section - Ultra Premium Cards */
.amenities-grid-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.amenities-subtitle {
    font-size: 17px;
    color: #666;
    margin-top: 15px;
}

.amenity-premium-card {
    background: #ffffff;
    border-radius: 0;
    overflow: visible;
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    border: 1px solid #f2ddbf;
}



.amenity-premium-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}



.amenity-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}


.amenity-premium-content {
    padding: 35px 30px 30px;
    background: #ffffff;
    position: relative;
    margin-top: -25px;
    z-index: 2;



}



.amenity-premium-card:hover .amenity-premium-content::after {
    width: 100%;
}

 .amenity-premium-content h4 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;

} 

.amenity-premium-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Premium Number Badge */
.amenity-premium-card .amenity-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    border: 3px solid #ffffff;
}

/* Responsive Amenities */
@media (max-width: 991px) {
    .amenities-grid-section {
        padding: 100px 0;
    }

    .amenity-premium-image {
        height: 230px;
    }

    .amenity-premium-content {
        padding: 30px 25px 25px;
    }

    .amenity-premium-content h4 {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .amenities-grid-section {
        padding: 80px 0;
    }

    .amenity-premium-image {
        height: 200px;
    }

    .amenity-premium-content {
        padding: 25px 20px 20px;
        margin-top: -20px;
    }

    .amenity-premium-content h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

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

    .amenity-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}



/* 24 Hours at Villa - Timeline Section */
.villa-timeline-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow-x: hidden;
}

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #C9A961 0%, #0d6b68 50%, #C9A961 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-line::before,
.timeline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #C9A961;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.2);
}

.timeline-line::before {
    top: -10px;
}

.timeline-line::after {
    bottom: -10px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Timeline */
.timeline-left .timeline-content {
    grid-template-areas: "info time image";
}

.timeline-left .timeline-info {
    grid-area: info;
    text-align: right;
}

.timeline-left .timeline-time {
    grid-area: time;
}

.timeline-left .timeline-image {
    grid-area: image;
}

/* Right Timeline */
.timeline-right .timeline-content {
    grid-template-areas: "image time info";
}

.timeline-right .timeline-info {
    grid-area: info;
    text-align: left;
}

.timeline-right .timeline-time {
    grid-area: time;
}

.timeline-right .timeline-image {
    grid-area: image;
}

/* Time Circle */
.timeline-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.time-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(13, 107, 104, 0.15), 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.time-circle i {
    font-size: 32px;
    color: #C9A961;
}

.time-text {
    font-size: 16px;
    font-weight: 700;
    color: #0d6b68;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Timeline Image */
.timeline-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.timeline-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.timeline-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.7s ease;
}

.timeline-image:hover img {
    transform: scale(1.1);
}

.timeline-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(201, 169, 97, 0.95);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Timeline Info */
.timeline-info {
    padding: 20px 0;
}

.timeline-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.timeline-left .timeline-activities {
    justify-content: flex-end;
}

.timeline-right .timeline-activities {
    justify-content: flex-start;
}

.timeline-activities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    background: rgba(13, 107, 104, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    border-left: 3px solid #C9A961;
}

.timeline-activities li i {
    color: #0d6b68;
    font-size: 14px;
}

/* Responsive Timeline */
@media (max-width: 991px) {
    .villa-timeline-section {
        padding: 60px 0;
    }

    .villa-timeline-section .section-tag {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .villa-timeline-section .section-title-dark {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .villa-timeline-section .amenities-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .timeline-wrapper {
        padding: 30px 0;
        max-width: 100%;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding-left: 50px;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        display: flex !important;
        flex-direction: column !important;
    }

    .timeline-time {
        order: 1;
        align-self: flex-start;
        margin-left: -50px;
    }

    .timeline-image {
        order: 2;
        width: 100%;
    }

    .timeline-info {
        order: 3;
        width: 100%;
    }

    .timeline-left .timeline-info,
    .timeline-right .timeline-info {
        text-align: left !important;
        padding: 0;
    }

    .timeline-left .timeline-activities,
    .timeline-right .timeline-activities {
        justify-content: flex-start !important;
    }

    .timeline-image {
        margin-bottom: 0;
    }

    .timeline-image img {
        height: 260px;
        width: 100%;
        object-fit: cover;
    }

    .timeline-info h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .timeline-info p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .time-circle {
        width: 65px;
        height: 65px;
    }

    .time-circle i {
        font-size: 26px;
    }

    .time-text {
        font-size: 14px;
        padding: 6px 14px;
    }

    .timeline-item {
        margin-bottom: 60px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-wrapper {
        padding: 45px 0 !important;
    }
}

@media (max-width: 767px) {
    .villa-timeline-section {
        padding: 40px 0;
    }

    .villa-timeline-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .villa-timeline-section .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .villa-timeline-section .section-title-dark {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .villa-timeline-section .amenities-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .villa-timeline-section .mb-5 {
        margin-bottom: 2rem !important;
    }

    .timeline-wrapper {
        padding: 20px 0;
    }

    .timeline-item {
        margin-bottom: 50px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-line {
        left: 25px;
        width: 3px;
    }

    .timeline-content {
        padding-left: 45px;
        gap: 15px !important;
    }

    .timeline-time {
        margin-left: -45px;
    }

    .time-circle {
        width: 55px;
        height: 55px;
        box-shadow: 0 0 0 6px rgba(13, 107, 104, 0.15), 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .time-circle i {
        font-size: 22px;
    }

    .time-text {
        font-size: 13px;
        padding: 5px 12px;
    }

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

    .timeline-badge {
        font-size: 9px;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }

    .timeline-info h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .timeline-info p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .timeline-activities {
        gap: 8px;
    }

    .timeline-activities li {
        font-size: 12px;
        padding: 6px 10px;
        border-left-width: 2px;
    }

    .timeline-activities li i {
        font-size: 12px;
    }

    .timeline-wrapper {
        padding: 45px 0 !important;
    }
}

@media (max-width: 575px) {
    .villa-timeline-section {
        padding: 40px 0;
    }

    .villa-timeline-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .villa-timeline-section .section-tag {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .villa-timeline-section .section-title-dark {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .villa-timeline-section .amenities-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .villa-timeline-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .timeline-wrapper {
        padding: 15px 0;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-line {
        left: 22px;
        width: 2px;
    }

    .timeline-content {
        padding-left: 42px;
    }

    .timeline-time {
        margin-left: -28px;
    }

    .time-circle {
        width: 48px;
        height: 48px;
        box-shadow: 0 0 0 5px rgba(13, 107, 104, 0.15), 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .time-circle i {
        font-size: 20px;
    }

    .time-text {
        font-size: 12px;
        padding: 4px 10px;
    }

    .timeline-image {
        border-radius: 12px;
    }

    .timeline-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .timeline-badge {
        font-size: 8px;
        padding: 5px 10px;
        letter-spacing: 1px;
        top: 12px;
        right: 12px;
    }

    .timeline-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .timeline-info p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .timeline-activities {
        gap: 6px;
    }

    .timeline-activities li {
        font-size: 11px;
        padding: 5px 8px;
        gap: 6px;
    }

    .timeline-activities li i {
        font-size: 11px;
    }
}

/* Villa Booking CTA */
.villa-booking-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    position: relative;
}

.villa-booking-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hero-bg.jpg) center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.villa-booking-cta .container {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.btn-cta-book {
    display: inline-block;
    padding: 18px 50px;
    background: #C9A961;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.btn-cta-book:hover {
    background: #ffffff;
    color: #0d6b68;


}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-left: 20px;
    font-weight: 600;
}

.cta-phone i {
    font-size: 20px;
    color: #C9A961;
}

/* Responsive Our Villa Page */
@media (max-width: 1200px) {
    .spaces-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .space-card.space-large {
        grid-column: span 1;
    }
}

@media (max-width: 991px) {

    .villa-overview-section,
    .amenities-grid-section,
    .villa-spaces-section {
        padding: 30px 0;
    }

    .villa-booking-cta {
        padding: 80px 0;
    }

    .overview-img-2 {
        bottom: -30px;
        right: -30px;
        width: 50%;
    }

    .overview-stats {
        top: 30px;
        left: 30px;
        gap: 15px;
    }

    .stat-box {
        padding: 20px 25px;
    }

    .villa-quick-features {
        grid-template-columns: 1fr;
    }

    .cta-heading {
        font-size: 36px;
    }

    .amenity-grid-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {

    .villa-overview-section,
    .amenities-grid-section,
    .villa-spaces-section {
        padding: 30px 0;
    }

    .villa-booking-cta {
        padding: 60px 0;
    }

    .overview-img-2 {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .overview-stats {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-box {
        padding: 18px 22px;
        flex: 1;
        min-width: 90px;
    }

    .stat-box h3 {
        font-size: 30px;
    }

    .stat-box p {
        font-size: 12px;
    }

    .villa-intro {
        font-size: 16px;
    }

    .quick-feature {
        padding: 18px 20px;
    }

    .quick-feature i {
        font-size: 22px;
    }

    .quick-feature span {
        font-size: 14px;
    }

    .amenity-grid-card {
        padding: 30px 20px;
    }

    .amenity-grid-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

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

    .space-card,
    .space-card.space-large {
        height: 280px;
    }

    .space-overlay {
        padding: 30px 25px;
    }

    .space-overlay h3 {
        font-size: 22px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-subtext {
        font-size: 17px;
    }

    .cta-phone {
        display: block;
        margin-left: 0;
        margin-top: 15px;
    }

    .btn-cta-book {
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding: 16px 40px;
    }
}


/* ========================================
   NEARBY ATTRACTIONS PAGE STYLES
======================================== */

/* Attractions Stats Section with Background */
.attractions-stats-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 0 80px;
}

.attractions-stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-premium-box {
    background: url(../img/hero-slider-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-premium-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.9) 0%, rgba(10, 85, 82, 0.9) 100%);
    z-index: 0;
    transition: all 0.4s ease;
}

.stat-premium-box:hover::before {
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.85) 0%, rgba(10, 85, 82, 0.85) 100%);
}

.stat-premium-box:hover {
    transform: translateY(-10px);
    border-color: #C9A961;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-premium-box:nth-child(2) {
    background-image: url(../img/hero-slider-2.jpg);
}

.stat-premium-box:nth-child(3) {
    background-image: url(../img/hero-slider-3.jpg);
}

.stat-icon {
    width: 75px;
    height: 75px;
    background: rgba(201, 169, 97, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(201, 169, 97, 0.4);
}

.stat-premium-box:hover .stat-icon {
    transform: rotateY(360deg);
    background: rgba(201, 169, 97, 0.35);
    border-color: #C9A961;
}

.stat-icon i {
    font-size: 34px;
    color: #C9A961;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Attractions Main Section */
.attractions-main-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Horizontal Attraction Cards */
.attraction-horizontal-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.attraction-horizontal-card:hover {

    border-color: #C9A961;
}

.attraction-h-image {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
}

.attraction-h-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}


.attraction-h-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.attraction-h-badge i {
    color: #0d6b68;
    font-size: 14px;
}

.attraction-h-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.attraction-h-category {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(201, 169, 97, 0.95);
    color: #ffffff;
    padding: 6px 15px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.attraction-h-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.attraction-h-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.attraction-h-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.attraction-h-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.attraction-h-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    background: rgba(13, 107, 104, 0.08);
    padding: 5px 12px;
    border-radius: 15px;
    border-left: 2px solid #C9A961;
}

.attraction-h-features span i {
    color: #0d6b68;
    font-size: 12px;
}

.btn-h-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    align-self: flex-start;
}

.btn-h-explore:hover {
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    color: #ffffff;

}



/* Attractions Map Section */
.attractions-map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-premium-wrapper {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #ffffff;
}

/* Responsive Attractions */
@media (max-width: 991px) {
    .attractions-stats-section {
        margin-top: -60px;
        padding: 0 0 60px;
    }

    .stat-premium-box {
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
    }

    .stat-icon i {
        font-size: 30px;
    }

    .stat-content h3 {
        font-size: 36px;
    }

    .attractions-main-section {
        padding: 30px 0;
    }

    .attraction-horizontal-card {
        flex-direction: column;
    }

    .attraction-h-image {
        width: 100%;
        height: 240px;
    }

    .attraction-h-content {
        padding: 22px 20px;
    }

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

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .attractions-stats-section {
        margin-top: -40px;
        padding: 0 0 40px;
    }

    .stat-premium-box {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 26px;
    }

    .stat-content h3 {
        font-size: 32px;
    }

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

    .attractions-main-section {
        padding: 30px 0;
    }

    .attraction-h-image {
        height: 200px;
    }

    .attraction-h-badge {
        padding: 6px 12px;
    }

    .attraction-h-badge i {
        font-size: 12px;
    }

    .attraction-h-badge span {
        font-size: 12px;
    }

    .attraction-h-category {
        font-size: 10px;
        padding: 5px 12px;
    }

    .attraction-h-content {
        padding: 20px 18px;
    }

    .attraction-h-content h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .attraction-h-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .attraction-h-features {
        gap: 6px;
        margin-bottom: 15px;
    }

    .attraction-h-features span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .btn-h-explore {
        padding: 9px 18px;
        font-size: 12px;

        justify-content: center;
    }
}


/* ========================================
   ATTRACTION DETAIL PAGE STYLES
======================================== */

/* Attraction Detail Hero */
.attraction-detail-hero {
    position: relative;
}

.attraction-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.9);
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.attraction-hero-badge i {
    color: #ffffff;
    font-size: 18px;
}

.attraction-hero-badge span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.hero-subtitle-large {
    font-size: 20px !important;
    margin-top: 15px;
}

/* Quick Info Bar */
.attraction-quick-info-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 0 80px;
}

.quick-info-item {

    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;

    border-radius: 0;

    position: relative;
    overflow: hidden;
}



.quick-info-item:last-child {
    border-right: none;
}



.quick-info-item i {
    font-size: 42px;
    color: #C9A961;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 50%;
}



.quick-info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.quick-info-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-info-item:hover .quick-info-label {
    color: rgba(255, 255, 255, 0.85);
}

.quick-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.4s ease;
    font-family: 'Playfair Display', serif;
}

.quick-info-item:hover .quick-info-value {
    color: #ffffff;
}

/* Detail Content Section */
.attraction-detail-content-section {
    padding: 50px 0;
    background: #ffffff;
}

.attraction-content-block {
    margin-bottom: 40px;
}

.content-block-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #C9A961;
    position: relative;
}

.content-block-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.content-block-text p {
    margin-bottom: 15px;
}

/* Activities Grid - Compact */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.activity-card {
    text-align: center;
    align-items: center !important;
    background: #ffffff;
    padding: 20px 18px;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: start;
    gap: 15px;
}


.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(13, 107, 104, 0.1) 0%, rgba(13, 107, 104, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}



.activity-icon i {
    font-size: 22px;
    color: #0d6b68;
    transition: all 0.4s ease;
}



.activity-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.activity-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Tips List - Compact */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid #C9A961;
    border: 1px solid #efe6d1;
}


.tip-item i {
    color: #0d6b68;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip-item span {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Reach Info - Compact */
.reach-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reach-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 1px solid #C9A961;


}



.reach-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}



.reach-icon i {
    font-size: 22px;
    color: #ffffff;
    transition: all 0.4s ease;
}


.reach-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.reach-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Cards */
.attraction-sidebar-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
}



.sidebar-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-card-title i {
    color: #C9A961;
    font-size: 20px;
}

.sidebar-card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.sidebar-map {
    margin-bottom: 18px;
}

.btn-get-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-get-directions:hover {
    background: linear-gradient(135deg, #C9A961 0%, #8C6842 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: #f8f9fa;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.sidebar-contact-btn:hover {
    background: #0d6b68;
    color: #ffffff;
    border-color: #0d6b68;
    transform: translateY(-2px);
}

.sidebar-contact-btn i {
    font-size: 14px;
}

/* Nearby List */
.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.nearby-item:hover {
    background: rgba(13, 107, 104, 0.08);


}

.nearby-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.nearby-distance {
    font-size: 12px;
    color: #0d6b68;
    font-weight: 600;
    background: rgba(13, 107, 104, 0.1);
    padding: 3px 10px;
    border-radius: 10px;
}

/* Attraction CTA Section */
.attraction-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5552 100%);
    position: relative;
}

.attraction-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hero-bg.jpg) center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.attraction-cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive Detail Page */
@media (max-width: 991px) {
    .attraction-quick-info-bar {
        margin-top: -40px;
        padding: 0 0 50px;
    }

    .quick-info-item {
        padding: 25px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    }

    .quick-info-item::before {
        height: 3px;
    }

    .quick-info-item:last-child {
        border-bottom: none;
    }

    .quick-info-item i {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }

    .quick-info-value {
        font-size: 16px;
    }

    .attraction-detail-content-section {
        padding: 50px 0;
    }

    .content-block-title {
        font-size: 24px;
    }

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

    .attraction-cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .attraction-hero-badge {
        padding: 8px 18px;
    }

    .attraction-hero-badge span {
        font-size: 13px;
    }

    .hero-subtitle-large {
        font-size: 16px !important;
    }

    .attraction-quick-info-bar {
        margin-top: -30px;
        padding: 0 0 40px;
    }

    .quick-info-item {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 12px;
    }

    .quick-info-card .quick-info-item {
        flex-direction: row !important;
        text-align: start !important;
    }

    .cta-card {
        margin-bottom: 0px !important;
    }

    .quick-info-item::before {
        height: 3px;
    }

    .quick-info-item i {
        font-size: 38px;
        width: 65px;
        height: 65px;
    }

    .quick-info-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .quick-info-value {
        font-size: 15px;
    }

    .quick-info-value {
        font-size: 14px;
    }

    .attraction-detail-content-section {
        padding: 30px 0;
    }

    .attraction-content-block {
        margin-bottom: 35px;
    }

    .content-block-title {
        font-size: 22px;
        margin-bottom: 18px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .content-block-text {
        font-size: 14px;
    }

    .content-block-text p {
        margin-bottom: 12px;
    }

    .activities-grid {
        gap: 12px;
    }

    .activity-card {
        padding: 15px;
        gap: 12px;
    }

    .activity-icon {
        width: 45px;
        height: 45px;
    }

    .activity-icon i {
        font-size: 20px;
    }

    .activity-card h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .activity-card p {
        font-size: 13px;
    }

    .tips-list {
        gap: 10px;
    }

    .tip-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .tip-item i {
        font-size: 14px;
    }

    .tip-item span {
        font-size: 13px;
    }

    .reach-info {
        gap: 15px;
    }

    .reach-item {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }

    .reach-icon {
        width: 45px;
        height: 45px;
    }

    .reach-icon i {
        font-size: 20px;
    }

    .reach-content h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .reach-content p {
        font-size: 13px;
    }

    .attraction-sidebar-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .sidebar-card-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .sidebar-card-title i {
        font-size: 18px;
    }

    .sidebar-card-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .sidebar-map {
        margin-bottom: 15px;
    }

    .btn-get-directions,
    .sidebar-contact-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .nearby-item {
        padding: 10px 12px;
    }

    .nearby-name {
        font-size: 13px;
    }

    .nearby-distance {
        font-size: 11px;
        padding: 2px 8px;
    }

    .attraction-cta-section {
        padding: 40px 0;
    }
}


/*======================================
    Blog Listing Page Styles
======================================*/

.blog-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6b68 0%, #1a8f8a 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 1 07, 104, 0.9) 0%, rgba(10, 85, 82, 0.85) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Responsive Blog Hero */
@media (max-width: 767px) {
    .blog-hero-section {
        min-height: 400px;
        padding: 100px 0 60px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-hero-subtitle {
        font-size: 16px;
    }
}


/* ========================================
   BLOG PAGE STYLES
======================================== */

/* Blog Grid Section */
.blog-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

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

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #C9A961;
}

.blog-grid-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.blog-card:hover .blog-grid-img img {
    transform: scale(1.1) rotate(2deg);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(201, 169, 97, 0.95);
    color: #ffffff;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta i {
    color: #C9A961;
    margin-right: 5px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title:hover {
    color: #0d6b68;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6b68;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #C9A961;
    gap: 12px;
}

.blog-read-more i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* No Blogs Message */
.no-blogs-message {
    text-align: center;
    padding: 80px 20px;
}

.no-blogs-message i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-blogs-message h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.no-blogs-message p {
    font-size: 16px;
    color: #999;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #0d6b68;
    color: #ffffff;
    border-color: #0d6b68;
}

/* Responsive Blog Grid */
@media (max-width: 991px) {
    .blog-grid-section {
        padding: 80px 0;
    }

    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-grid-img {
        height: 220px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-grid-section {
        padding: 60px 0;
    }

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

    .blog-grid-img {
        height: 200px;
    }

    .blog-category-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .blog-card-content {
        padding: 18px;
    }

    .blog-meta {
        font-size: 12px;
        gap: 12px;
    }

    .blog-card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .blog-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .blog-read-more {
        font-size: 13px;
    }

    .blog-pagination {
        margin-top: 40px;
    }

    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}


/* ===================================
   MODERN CONTACT PAGE STYLES
   =================================== */

/* Contact Info Section */
.contact-info-section {
    padding: 50px 0;

    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.contact-info-icon i {
    font-size: 32px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.contact-info-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: rotate(5deg) scale(1.1);
}

.contact-info-card:hover .contact-info-icon-bg {
    transform: scale(1.2);
}

.contact-info-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.contact-info-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.contact-info-link i {
    transition: transform 0.3s ease;
}

.contact-info-link:hover i {
    transform: translateX(5px);
}

/* Contact Form & Map Section */
.contact-form-map-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Modern Form Styles */
.form-group-modern {
    position: relative;

}

.form-input-modern {
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-input-modern:focus+.form-label-modern,
.form-input-modern:not(:placeholder-shown)+.form-label-modern {
    top: -12px;
    font-size: 12px;
    color: var(--primary);
    background: #ffffff;
    padding: 0 8px;
}

.form-label-modern {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input-modern:focus+.form-label-modern i,
.form-input-modern:not(:placeholder-shown)+.form-label-modern i {
    display: none;
}

textarea.form-input-modern {
    min-height: 150px;
    resize: vertical;
    padding-top: 20px;
}

textarea.form-input-modern+.form-label-modern {
    top: 25px;
    transform: none;
}

select.form-input-modern {
    cursor: pointer;
}

select.form-input-modern option {
    padding: 10px;
}

/* Alert Messages */
.alert-success-custom,
.alert-danger-custom {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    animation: slideInDown 0.4s ease;
}

.alert-success-custom {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger-custom {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success-custom i,
.alert-danger-custom i {
    font-size: 24px;
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    padding: 18px 40px;
    background: #0d6b68;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.btn-submit-modern:hover::before {
    left: 100%;
}



.btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    transition: transform 0.3s ease;
}


/* Quick Contact Modern */
.quick-contact-modern {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.quick-contact-divider {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.quick-contact-divider span {
    background: #ffffff;
    padding: 0 20px;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.quick-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.whatsapp-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.call-btn-modern {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
}

.call-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    color: #ffffff;
}

/* Map Wrapper Modern */
.map-wrapper-modern {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container-modern {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: 450px;
    margin-bottom: 30px;
}

.map-container-modern iframe {
    border: none;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.map-container-modern:hover iframe {
    filter: grayscale(0);
}

.map-features {
    display: flex;
    gap: 20px;
}

.map-feature-item {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.map-feature-text h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.map-feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Form Validation Error */
.contact-field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    display: block;
    animation: shake 0.3s ease;
}

.form-input-modern.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

@keyframes shake {

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

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 30px 0 30px;
        margin-top: -60px;
    }

    .contact-form-wrapper,
    .map-wrapper-modern {
        padding: 40px 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-form-map-section {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 30px 0;
        margin-top: -40px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .map-container-modern {
        height: 350px;
    }

    .map-features {
        flex-direction: column;
        gap: 15px;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .contact-form-map-section {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .contact-info-icon {
        width: 70px;
        height: 70px;
    }

    .contact-info-icon i {
        font-size: 28px;
    }

    .contact-info-content h4 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .btn-submit-modern {
        padding: 16px 30px;
        font-size: 14px;
    }
}


/* ===================================
   STEP 1: MODERN CONTACT HERO
   =================================== */

/*** Contact Page Styles ***/
.contact-info-section {
    padding: 50px 0 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;


    border-radius: 20px;

}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
}

.contact-info-box.full-width {
    grid-column: 1 / -1;
}

.contact-info-box:hover {

    border-color: #C9A961;

}

.contact-box-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #C9A961 0%, #b89550 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;

}

.contact-box-content h5 {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-box-content a {
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.contact-box-content a:hover {
    color: #C9A961;
}

.contact-box-content p {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form & Map Section */
.contact-form-map-section {
    padding: 50px 0;
    background: #ffffff;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f2ecdd;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Modern Form Styles with Grid */
.contact-form-grid {
    display: grid;

    gap: 18px;
}

.contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.form-group-modern {
    position: relative;
}

.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-input-modern:focus {
    border-color: #C9A961;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-input-modern.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-input-modern::placeholder {
    color: #aaa;
}

textarea.form-input-modern {
    resize: vertical;
    min-height: 110px;
}

/* Error Messages */
.contact-field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0d6b68 0%, #0a5350 100%);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;

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

}


.btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Map & Info Section */
.map-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container-half {
    border: 2px solid #f0eadb;
    width: 100%;
    height: 465px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}


.map-container-half iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Action Buttons Grid */
.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.action-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Why Choose Cards */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.why-card:hover {

    border-color: #C9A961;

}

.why-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #C9A961 0%, #b89550 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.why-card-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.why-card-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-icon {
    transition: all 0.3s ease;
}

/* Map Section - Old Styles */
.map-wrapper-modern {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container-modern {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Action Buttons */
.quick-action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.whatsapp-action {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
    color: #ffffff;
}

.whatsapp-action:hover {

    color: #ffffff;
}


.input-wrapper {
    position: relative;
}

.required-star {
    position: absolute;
    left: 63px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    pointer-events: none;
}

.mobile-number-wrap {
    position: relative;
}

.mobile-number-star {
    position: absolute;
    left: 126px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    pointer-events: none;
}


.people-count-wrapper {
    position: relative;
}

.people-count-star {
    position: absolute;
    left: 148px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    pointer-events: none;
}







.call-action {
    background: linear-gradient(135deg, #C9A961 0%, #b89550 100%);
    color: #ffffff;
}

.call-action:hover {

    color: #ffffff;
}

.direction-action {
    background: linear-gradient(135deg, #C9A961 0%, #b89550 100%);
    /* background: linear-gradient(135deg, #0d6b68 0%, #0a5350 100%); */

    color: #ffffff;
}


.infinity {
    color: #0d6b68;
}



.direction-action:hover {

    color: #ffffff;
}

/* Alert Styles */
.alert-success-custom {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert-danger-custom {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #f5c6cb;
    color: #721c24;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert-success-custom i,
.alert-danger-custom i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-map-section {
        padding: 30px 0;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .map-container-half {
        height: 280px;
    }

    .map-container-modern {
        min-height: 400px;
    }

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

@media (max-width: 767px) {
    .contact-info-section {
        padding: 30px 0 30px;
    }

    .contact-info-boxes {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .contact-info-box {
        padding: 20px;
    }

    .contact-box-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .contact-form-map-section {
        padding: 30px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container-half {
        height: 250px;
    }

    .map-container-modern {
        min-height: 350px;
    }

    .action-buttons-grid,
    .quick-action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .action-btn-compact,
    .action-btn {
        padding: 12px 16px;
    }

    .why-choose-cards {
        gap: 12px;
    }

    .why-card {
        padding: 15px;
    }

    .why-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .why-card-content h5 {
        font-size: 14px;
    }

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


/* Empty State Design */
.empty-gallery-state {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-state-content {
    max-width: 600px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(9, 44, 42, 0.05) 100%);
    border: 2px dashed #C9A961;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.empty-state-content::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #C9A961 0%, #876624 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 1;
}

.empty-state-icon i {
    font-size: 50px;
    color: #ffffff;
}

.empty-state-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.empty-state-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.empty-state-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.empty-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.empty-feature i {
    font-size: 28px;
    color: #C9A961;
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.empty-feature:hover i {
    background: #C9A961;
    color: #ffffff;
    transform: translateY(-5px);
}

.empty-feature span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.empty-state-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #C9A961;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 1;
}

.empty-state-btn:hover {
    background: #092c2a;
    color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 44, 42, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
    .empty-state-content {
        padding: 40px 25px;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-icon i {
        font-size: 40px;
    }

    .empty-state-title {
        font-size: 24px;
    }

    .empty-state-text {
        font-size: 14px;
    }

    .empty-state-features {
        gap: 20px;
    }

    .empty-feature i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .empty-feature span {
        font-size: 12px;
    }

    .empty-state-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Filter No Results Design */
.filter-no-results {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(9, 44, 42, 0.03) 100%);
    border: 2px dashed rgba(201, 169, 97, 0.3);
    border-radius: 15px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 35px;
    color: #C9A961;
}

.no-results-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.no-results-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .filter-no-results {
        padding: 40px 20px;
    }

    .no-results-icon {
        width: 70px;
        height: 70px;
    }

    .no-results-icon i {
        font-size: 30px;
    }

    .no-results-title {
        font-size: 18px;
    }

    .no-results-text {
        font-size: 14px;
    }
}

.gallery-item-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.gallery-item-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 10px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9) 0%, rgba(9, 44, 42, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-card:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-content-modern {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item-card:hover .gallery-content-modern {
    transform: translateY(0);
}

/* Filter Buttons */
.gallery-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
}

.gallery-filter-btn {
    padding: 8px 15px;
    border: 2px solid #C9A961;
    background: #fff;
    color: #C9A961;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #C9A961;
    color: #fff;
}

@media (max-width: 991px) {
    .gallery-image-container {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .gallery-image-container {
        height: 220px;
    }

    .gallery-filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .gallery-image-container {
        height: 200px;
    }

    .gallery-filter-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .gallery-filter-btn i {
        display: none;
    }
}


/*** Attraction Detail Page ***/
.attraction-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Hero Image Full Width */
.attraction-hero-image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.attraction-hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Overview Header with Line */
.overview-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.overview-line {
    width: 80px;
    height: 4px;
    background: #C9A961;
    border-radius: 2px;
}

.overview-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.overview-summary {
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;

}

.attraction-info-banner {
    display: flex;
    border: 1px solid #e6d8b7;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 15px;

    margin-bottom: 20px;
    overflow: hidden;
}

.info-item-elegant {
    flex: 1;
    min-width: 200px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid #e9ecef;
}

.info-item-elegant:first-child {
    border-left: none;
}

.info-item-elegant i {
    font-size: 28px;
    color: #C9A961;
}

.info-item-elegant strong {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item-elegant p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.attraction-content-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #efe5cf;
    margin-bottom: 30px;
}

.attraction-description {
    font-size: 16px;
    line-height: 1.9;
    color: #999;
}

.attraction-description p {
    margin-bottom: 20px;
    color: #999;
}

.attraction-description strong,
.attraction-description b {
    color: #1a1a1a;
    font-weight: 600;
}

.features-section,
.amenities-section,
.tips-section,
.location-map-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;

    margin-bottom: 30px;
    border: 1px solid #efe5cf;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-card-small {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(201, 169, 97, 0.05);
    border: 1px solid #e3d3ae;
    border-radius: 8px;
}

.feature-card-small i {
    font-size: 18px;
    color: #C9A961;
}

.feature-card-small span {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: #C9A961;
    transform: translateY(-2px);
}

.amenity-badge i {
    font-size: 12px;
    color: #28a745;
}

.tips-content {
    padding: 25px;
    background: rgba(255, 193, 7, 0.08);
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar Cards */
.quick-info-card,
.attraction-image-card,
.related-attractions-card,
.cta-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #efe5cf;
    margin-bottom: 30px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C9A961;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-info-item:last-child {
    border-bottom: none;
}

.quick-info-item i {
    font-size: 20px;
    color: #C9A961;
    margin-top: 3px;
}

.quick-info-item strong {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.quick-info-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.attraction-image-card img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}



.related-item:last-child {
    border-bottom: none;
}

.related-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.related-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.related-info .distance {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, #0d6b68 0%, #092c2a 100%);
    color: #ffffff;
}

.cta-card i {
    font-size: 48px;
    color: #C9A961;
}

.cta-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.attraction-h-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 991px) {
    .attraction-detail-section {
        padding: 30px 0;
    }

    .info-item-elegant {
        flex: 1 1 100%;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }

    .info-item-elegant:first-child {
        border-top: none;
    }

    .attraction-content-section,
    .features-section,
    .amenities-section,
    .tips-section,
    .location-map-section {
        padding: 30px 25px;
    }

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

@media (max-width: 767px) {
    .attraction-detail-section {
        padding: 40px 0;
    }

    .attraction-content-section,
    .features-section,
    .amenities-section,
    .tips-section,
    .location-map-section,
    .quick-info-card,
    .attraction-image-card,
    .related-attractions-card,
    .cta-card {
        padding: 20px;
    }

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

    .card-title {
        font-size: 18px;
    }
}