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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    background-color: white;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.vivanta-logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #4f772d;
}

.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
    padding: 8px 18px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #4f772d;
}

.login-link {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.login-link:hover {
    color: #4f772d;
}

.btn-search {
    background: none;
    border: 2px solid #666;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    border-color: #4f772d;
    color: #4f772d;
}

.btn-book-now {
    background-color: #4f772d;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-book-now:hover {
    background-color: #31572c;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
}

#heroCarousel {
    height: 500px;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 20px;
}

.hero-title {
    color: white;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: white;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: white;
}

/* Booking Widget */
.booking-widget {
    background-color: #f0f0f0;
    padding: 40px 0;
    margin-top: -1px;
}

.booking-form-wrapper {
    background-color: white;
    padding: 30px;
    border-radius: 0;
}

.booking-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4f772d;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.booking-heading i {
    font-size: 36px;
    color: #4f772d;
}

.booking-form .form-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.booking-form .form-control,
.booking-form .form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    background-color: transparent;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    box-shadow: none;
    border-bottom-color: #4f772d;
}

.btn-search-booking {
    background-color: #4f772d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-search-booking:hover {
    background-color: #31572c;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: white;
    padding: 20px 0;
}

.breadcrumb {
    font-size: 13px;
}

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

.breadcrumb-item a:hover {
    color: #4f772d;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
    padding: 0 8px;
}

.btn-share {
    background: white;
    border: 2px solid #4f772d;
    color: #4f772d;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share:hover {
    background-color: #4f772d;
    color: white;
}

.btn-share i {
    margin-right: 5px;
}

/* Tabs */
.tabs-section {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.custom-tabs {
    border-bottom: none;
    justify-content: center;
}

.custom-tabs .nav-link {
    border: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 18px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.custom-tabs .nav-link:hover {
    color: #4f772d;
    background-color: transparent;
}

.custom-tabs .nav-link.active {
    color: #4f772d;
    background-color: transparent;
    border-bottom: 3px solid #4f772d;
}

/* Tab Content */
.tab-content-section {
    background-color: white;
    padding: 60px 0;
    min-height: 400px;
}

.tab-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tab-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Journey Section */
.journey-section {
    background-color: #f8f4f0;
    padding: 80px 0;
}

.journey-images {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.journey-img-1 {
    flex: 0 0 250px;
}

.journey-img-2 {
    flex: 0 0 180px;
    margin-top: 40px;
}

.journey-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.journey-content {
    padding-left: 40px;
}

.journey-title {
    font-size: 56px;
    font-weight: 700;
    color: #4f772d;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.journey-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.journey-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.journey-link:hover {
    color: #4f772d;
}

/* Designed For Section */
.designed-section {
    background-color: white;
    padding: 80px 0;
}

.designed-content {
    padding: 40px 30px;
}

.designed-title {
    font-size: 36px;
    font-weight: 700;
    color: #4f772d;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.designed-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.designed-gallery {
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Offers Section */
.offers-section {
    background: #4f772d;
    padding: 80px 0;
    color: white;
}

.section-title-white {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

.view-all-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid white;
    padding-bottom: 3px;
}

.view-all-link:hover {
    opacity: 0.8;
}

.offers-carousel-wrapper {
    position: relative;
}

.offer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f772d;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.offer-nav:hover {
    background-color: #f0f0f0;
}

.offer-prev {
    left: -20px;
}

.offer-next {
    right: -20px;
}

.offer-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(79, 119, 45, 0.2);
}

.offer-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.offer-content {
    padding: 30px;
    color: #333;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    min-height: 50px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

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

.offer-validity {
    font-size: 11px;
    color: #4f772d;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 8px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.btn-offer {
    display: inline-block;
    background: #4f772d;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(79, 119, 45, 0.3);
}

.btn-offer:hover {
    background: #31572c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 119, 45, 0.4);
}

.btn-offer-outline {
    display: inline-block;
    background: transparent;
    color: #4f772d;
    padding: 12px 35px;
    border: 2px solid #4f772d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-offer-outline:hover {
    background: #4f772d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 119, 45, 0.3);
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.carousel-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-pagination .dot.active {
    background-color: white;
    width: 10px;
    height: 10px;
}

.carousel-pagination .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* News Section */
.news-section {
    background-color: #f8f4f0;
    padding: 80px 0;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.news-highlight {
    color: #4f772d;
}

.news-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.news-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.feature-item i {
    font-size: 14px;
}

.news-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-explore {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-book-btn {
    background-color: #4f772d;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.news-book-btn:hover {
    background-color: #31572c;
    color: white;
}

/* Exclusive Section */
.exclusive-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.exclusive-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.exclusive-highlight {
    color: #b294d1;
}

.exclusive-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
}

.exclusive-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    overflow: visible;
}

#exclusiveCarousel .carousel-inner {
    overflow: visible;
}

#exclusiveCarousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.exclusive-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.exclusive-prev {
    left: 10px;
}

.exclusive-next {
    right: 10px;
}

.exclusive-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.exclusive-card-center {
    width: 60%;
    max-width: 700px;
    margin: 0 auto;
}

.exclusive-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.exclusive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-card-content {
    padding: 40px;
    text-align: center;
    background: white;
}

.exclusive-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #4f772d;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.exclusive-card-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.exclusive-card-link {
    color: #4f772d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    transition: color 0.3s;
}

.exclusive-card-link:hover {
    color: #31572c;
}

.exclusive-section .carousel-pagination .dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.exclusive-section .carousel-pagination .dot.active {
    background-color: rgba(178, 148, 209, 0.8);
}

/* Discover Coimbatore Section */
.discover-section {
    padding: 80px 0;
    background: white;
}

.discover-images {
    padding-right: 30px;
}

.discover-main-img {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.discover-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.discover-main-img:hover img {
    transform: scale(1.05);
}

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

.grid-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-img:hover img {
    transform: scale(1.05);
}

.discover-content {
    padding-left: 40px;
}

.discover-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #31572c;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.discover-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.discover-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #4f772d;
    margin-top: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.discover-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.discover-closing {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-top: 20px;
    font-style: italic;
    text-align: justify;
    padding-left: 15px;
    border-left: 3px solid #4f772d;
}

@media (max-width: 991px) {
    .discover-section {
        padding: 60px 0;
    }
    
    .discover-images {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .discover-title {
        font-size: 32px;
    }
    
    .discover-content {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .discover-title {
        font-size: 28px;
    }
    
    .discover-intro,
    .discover-text,
    .discover-closing {
        font-size: 14px;
    }
    
    .discover-subtitle {
        font-size: 16px;
    }
    
    .discover-grid-imgs {
        gap: 10px;
    }
}

/* Footer */
.footer {
    background: #31572c;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(79, 119, 45, 0.15);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

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

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: background 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-contact,
.footer-support {
    margin-top: 30px;
}

.footer-contact-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-phone {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    color: white;
}

.footer-email {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
}

.footer-email:hover {
    opacity: 0.8;
    color: white;
}

.footer-newsletter {
    background: transparent;
}

.footer-newsletter-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-form .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    font-size: 13px;
    border-radius: 25px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    color: white;
}

.btn-subscribe {
    background: white;
    color: #31572c;
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 25px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #f0f0f0;
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-destinations {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.destinations-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    transition: opacity 0.3s;
}

.destinations-toggle:hover {
    opacity: 0.8;
}

.destinations-toggle i {
    font-size: 16px;
}

.footer-brands {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    margin-top: 40px;
}

.brands-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: white;
}

.brand-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-logos img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}

.brand-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
    position: relative;
}

.copyright {
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-links-bottom a:hover {
    color: white;
}

.btn-back-top {
    position: absolute;
    right: 0;
    top: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-back-top:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #4f772d;
    color: white;
    border: 2px solid #4f772d;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(79, 119, 45, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .booking-heading h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .booking-form {
        margin-top: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .journey-title {
        font-size: 36px;
    }
    
    .journey-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .designed-title {
        font-size: 28px;
    }
    
    .news-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .exclusive-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    #heroCarousel {
        height: 350px;
    }
    
    .custom-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .custom-tabs .nav-link {
        white-space: nowrap;
        padding: 15px 16px;
        font-size: 12px;
    }
    
    .journey-images {
        flex-direction: column;
    }
    
    .journey-img-2 {
        margin-top: 0;
    }
    
    .journey-title {
        font-size: 28px;
    }
    
    .designed-title {
        font-size: 24px;
    }
    
    .section-title-white {
        font-size: 32px;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .exclusive-title {
        font-size: 28px;
    }
    
    .exclusive-card {
        height: 350px;
    }
    
    .brand-logos {
        justify-content: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== BOOKING PAGE STYLES ==================== */

/* Booking Hero Section */
.booking-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.booking-hero-section .carousel-inner,
.booking-hero-section .carousel-item {
    height: 500px;
}

.booking-hero-section .carousel-item img {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

.booking-hero-section .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.booking-hero-title {
    color: white;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Booking Page Section */
.booking-page-section {
    padding: 80px 0;
    background: #f8f4f0;
}

.booking-page-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    position: relative;
}

.booking-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-close-btn:hover {
    color: #4f772d;
}

.booking-page-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Groups */
.booking-form-group {
    position: relative;
}

.booking-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
}

.required-asterisk {
    color: #e74c3c;
    margin-left: 3px;
}

.booking-form-select,
.booking-form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

/* Mobile Number Wrapper */
.booking-mobile-wrapper {
    display: flex;
    gap: 10px;
}

.booking-country-select {
    width: 160px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.booking-mobile-input {
    flex: 1;
}

.booking-country-select:focus {
    outline: none;
    border-color: #4f772d;
    box-shadow: 0 0 0 3px rgba(79, 119, 45, 0.1);
}

.booking-form-select:focus,
.booking-form-input:focus {
    outline: none;
    border-color: #4f772d;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.booking-select-icon {
    position: absolute;
    right: 15px;
    top: 43px;
    pointer-events: none;
    color: #666;
}

/* Room Price Display */
.room-price-display {
    margin-top: 15px;
    padding: 20px;
    background: #f8f4f0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #4f772d;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #4f772d;
    letter-spacing: 0.5px;
}

/* Payment Type Options */
.payment-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option {
    position: relative;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    min-height: 100px;
    gap: 10px;
}

.payment-option-label i {
    font-size: 32px;
    color: #666;
    transition: color 0.3s ease;
}

.payment-option-label span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    letter-spacing: 0.5px;
}

.payment-option input[type="radio"]:checked + .payment-option-label {
    border-color: #4f772d;
    background: rgba(79, 119, 45, 0.05);
    box-shadow: 0 4px 15px rgba(79, 119, 45, 0.15);
}

.payment-option input[type="radio"]:checked + .payment-option-label i {
    color: #4f772d;
}

.payment-option-label:hover {
    border-color: #4f772d;
    box-shadow: 0 2px 10px rgba(79, 119, 45, 0.1);
}

/* Date Wrapper */
.booking-date-wrapper {
    position: relative;
}

.booking-calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

/* Expandable Section */
.booking-expandable {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.booking-expandable:hover {
    border-color: #4f772d;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.booking-expandable-text {
    font-size: 14px;
    color: #333;
}

.booking-expand-icon {
    color: #666;
    transition: transform 0.3s ease;
}

/* Rooms Panel */
.booking-rooms-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 15px;
}

.booking-rooms-panel.active {
    max-height: 500px;
}

.booking-room-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.booking-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.booking-room-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
}

.booking-remove-room-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.booking-remove-room-btn:hover {
    color: #e74c3c;
}

.booking-room-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Counter */
.booking-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 15px;
    border-radius: 4px;
}

.booking-counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.booking-counter-value {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.booking-counter-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-top: 5px;
}

.booking-counter-sublabel {
    font-size: 10px;
    color: #999;
}

.booking-counter-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-counter-btn:hover {
    background: #4f772d;
    color: white;
    border-color: #4f772d;
}

.booking-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Add More Rooms Button */
.booking-add-room-btn {
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px dashed #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-add-room-btn:hover {
    border-color: #4f772d;
    color: #4f772d;
}

/* Search Button */
.booking-search-btn {
    padding: 18px;
    background: #4f772d;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.booking-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

/* Room Detail Pages */
.room-hero {
    margin-top: 0;
    position: relative;
}

.room-hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.room-hero-title {
    font-size: 56px;
    font-weight: 300;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.room-hero-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
}

.room-hero-price {
    font-size: 48px;
    font-weight: 700;
    color: #4f772d;
    background: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
}

.room-hero-price span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.room-details-section {
    padding: 80px 0;
    background: white;
}

.room-description {
    margin-bottom: 40px;
}

.room-description .lead {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.room-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.room-gallery img {
    transition: transform 0.3s ease;
}

.room-gallery img:hover {
    transform: scale(1.05);
}

.room-facilities-card {
    background: #f8f4f0;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #4f772d;
    position: sticky;
    top: 100px;
}

.room-facilities-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4f772d;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.facilities-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(79, 119, 45, 0.1);
    color: #333;
    font-size: 14px;
}

.facilities-list li:last-child {
    border-bottom: none;
}

.facilities-list li i {
    color: #4f772d;
    margin-right: 10px;
    font-size: 18px;
}

.btn-primary {
    background: #4f772d;
    border: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #31572c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 119, 45, 0.4);
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 0;
    height: 400px;
    background: linear-gradient(rgba(49, 87, 44, 0.8), rgba(79, 119, 45, 0.8)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-overlay {
    text-align: center;
    color: white;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}

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

.contact-card {
    background: #f8f4f0;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 2px solid #4f772d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(79, 119, 45, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #4f772d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4f772d;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-detail a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #4f772d;
}

.contact-description {
    font-size: 14px;
    color: #666;
}

.contact-map-section {
    padding: 80px 0;
    background: #f8f4f0;
}

.map-container {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

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

.contact-form-card {
    background: #f8f4f0;
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #4f772d;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #4f772d;
    box-shadow: 0 0 0 0.2rem rgba(79, 119, 45, 0.1);
}

.btn-submit-contact {
    background: #4f772d;
    color: white;
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 119, 45, 0.3);
}

.btn-submit-contact:hover {
    background: #31572c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 119, 45, 0.4);
}

.operating-hours-section {
    padding: 80px 0;
    background: #4f772d;
}

.hours-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hours-item {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.hours-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #4f772d;
    margin-bottom: 10px;
}

.hours-item h4 i {
    margin-right: 8px;
}

.hours-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: 2px solid #4f772d;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #4f772d;
    color: white;
}

.nav-link.active {
    color: #4f772d !important;
    font-weight: 600;
}



/* Active Button State */
.btn-book-now.active {
    background: #4f772d;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .booking-page-wrapper {
        padding: 30px 20px;
    }
    
    .booking-counter {
        padding: 10px;
    }
}
