* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none; 
    overflow-x: hidden;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none; 
}
body {
    color: #ffffff;
    /* background-color: #0c0d0e; */
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
.sticky-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 13, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
}
.top-bar-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.top-bar-social a {
    color: #ffffff;
    font-size: 13px;
    transition: color 0.3s ease;
}
.top-bar-social a:hover {
    color: #c5a880;
}
.top-bar-contact {
    display: flex;
    gap: 20px;
    color: #d8d8d8;
}
.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-contact i {
    color: #c5a880;
    font-size: 12px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    position: relative;
    width: 100%;
}
.logo-container {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.logo-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    white-space: nowrap;
}
.logo-subtitle {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c5a880;
    margin-top: 2px;
    white-space: nowrap;
}
.nav-container {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    gap: 43px;
}
.nav-link {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #e0e0e0;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}
.nav-link.active,
.nav-link:hover {
    color: #ffffff;
}
.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c5a880;
}
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url('images/hotel-banner.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 40px 20px;
    padding-top: 12%;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.font{
    color:#ac854e;
}

.booking-container {
    max-width: 1100px;
    margin-top: 30px;
    width: 90%;
    background: #ffffff;
    border-radius: 40px 10px 10px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 10px 15px 10px 25px;
    color: #333333;
    overflow: hidden;
}
.booking-field {
    flex: 1;
    padding: 12px 18px;
    border-right: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-field:last-of-type {
    border-right: none;
}

.booking-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888888;
    font-weight: bold;
}

.booking-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-input-wrapper i {
    color: #c5a880;
    font-size: 14px;
}

.booking-input-wrapper select,
.booking-input-wrapper input {
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.booking-btn {
    background-color: #111111;
    color: #ffffff;
    border: none;
    padding: 20px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.booking-btn:hover {
    background-color: #c5a880;
}

/* about-us.css */
.shanthi-about-section {
    position: relative;
    background-color: #ffffff;
    color: #222222;
    padding: 120px 40px 140px 40px;
    overflow: hidden;
}
.shanthi-about-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.shanthi-about-content {
    flex: 1;
    max-width: 500px;
    z-index: 5;
}
.shanthi-tag {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 16px;
    margin-bottom: 24px;
}
.shanthi-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.18;
    color: #111111;
    margin-bottom: 20px;
}
.shanthi-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}
.shanthi-features-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.shanthi-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.shanthi-feature-box i {
    font-size: 26px;
    color: #c5a880;
    margin-top: 2px;
}
.shanthi-feature-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}
.shanthi-feature-box p {
    font-size: 14px;
    color: #777777;
    line-height: 1.4;
}
.shanthi-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.shanthi-check-list li {
    font-size: 15px;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
}
.shanthi-check-list i {
    color: #c5a880;
    font-size: 15px;
}

/* Global button style (single canonical definition) */
.shanthi-btn {
    display: inline-block;
    background-color: #c5a880;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #c5a880;
    text-decoration: none;
}

.shanthi-btn:hover {
    background-color: #111111;
    border-color: #111111;
}

/* Right Media Wrapper */
.shanthi-media-wrapper {
    flex: 1;
    position: relative;
    height: 560px;
    width: 100%;
    max-width: 620px;
}

.shanthi-img-card {
    position: absolute;
    background-color: #ffffff;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    overflow: hidden;
}

.shanthi-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shanthi-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shanthi-img-card:hover img {
    transform: scale(1.04) translateY(3px);
}

.shanthi-img-card.card-top {
    top: 0;
    right: 30px;
    width: 370px;
    height: 380px;
    z-index: 3;
}

.shanthi-img-card.card-bottom {
    bottom: 0;
    left: 40px;
    width: 340px;
    height: 380px;
    z-index: 4;
}

.architectural-sketch-bg {
    position: absolute;
    left: -780px;
    top: 312px;
    width: 440px;
    height: auto;
    object-fit: contain;
    opacity: 0.18;
    filter: grayscale(100%);
    transform: none;
    pointer-events: none;
    z-index: 1;
    padding-top: 21%;
}

.hotel-serv-banner {
    position: relative;
    background: url('images/service.jpg') no-repeat center center/cover;
    background-attachment: fixed; 
    padding: 100px 20px;
    color: #ffffff;
}

.hotel-serv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 13, 14, 0.82);
    z-index: 1;
}

.hotel-serv-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hotel-serv-header {
    text-align: center;
    margin-bottom: 50px;
}

.hotel-serv-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c5a880;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.hotel-serv-subtitle::before,
.hotel-serv-subtitle::after {
    content: '~';
    color: #c5a880;
    margin: 0 6px;
}

.hotel-serv-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.hotel-serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.hotel-serv-card {
    position: relative;
    text-decoration: none;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.hotel-serv-card:hover {
    transform: translateY(-8px);
}

.hotel-serv-img-box {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hotel-serv-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-serv-card:hover .hotel-serv-img-box img {
    transform: scale(1.08);
}

.hotel-serv-card-overlay {
    position: absolute;
    bottom: 25px;
    left: -1px;
    right: 20px;
    background: rgba(225, 228, 232, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hotel-serv-card-title {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hotel-serv-arrow {
    font-size: 16px;
    color: #2c2c2c;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.hotel-serv-card:hover .hotel-serv-card-overlay {
    background: rgba(197, 168, 128, 0.95);
}

.hotel-serv-card:hover .hotel-serv-card-title,
.hotel-serv-card:hover .hotel-serv-arrow {
    color: #ffffff;
}

.hotel-serv-card:hover .hotel-serv-arrow {
    opacity: 1;
    transform: translateX(0);
}

.shanthi-v2-gallery-section {
    background-color: #f5eedc;
    padding: 55px 0;
    overflow: hidden;
}

.shanthi-v2-gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.shanthi-v2-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.shanthi-v2-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.shanthi-v2-slider-mask {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    padding: 15px 0;
}

.shanthi-v2-sliders-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 18px;
}

.shanthi-v2-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.shanthi-v2-slide-left {
    animation: shanthiSlideLeft 50s linear infinite;
}

.shanthi-v2-slide-right {
    animation: shanthiSlideRight 50s linear infinite;
}

.shanthi-v2-sliders-wrapper:hover .shanthi-v2-slider-track {
    animation-play-state: paused;
}

.shanthi-v2-slide-item {
    position: relative;
    width: 295px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shanthi-v2-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shanthi-v2-slide-item:hover img {
    transform: scale(1.08);
}

.shanthi-v2-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.shanthi-v2-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.shanthi-v2-card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

@keyframes shanthiSlideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes shanthiSlideRight {
    0% {
        transform: translateX(calc(-50% - 10px));
    }
    100% {
        transform: translateX(0);
    }
}

.shanthi-v2-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.shanthi-v2-lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shanthi-v2-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.shanthi-v2-modal-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.shanthi-v2-close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.shanthi-v2-close-btn:hover {
    color: #c5a880;
}
.shanthi-testimonial-section {
    position: relative;
    background-color: #f7f4ee;
    padding: 100px 20px;
    overflow: hidden;
}

.shanthi-bg-pattern-svg {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.shanthi-testimonial-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.shanthi-testimonial-header {
    margin-bottom: 25px;
}

.shanthi-testimonial-header .shanthi-sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c5a880;
    text-transform: uppercase;
}

.shanthi-testimonial-header .shanthi-sub-title::before,
.shanthi-testimonial-header .shanthi-sub-title::after {
    content: '~';
    color: #c5a880;
    margin: 0 6px;
}

.shanthi-testimonial-slider {
    position: relative;
    min-height: 180px;
}

.shanthi-testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.shanthi-testimonial-item.active {
    display: block;
    opacity: 1;
}

.shanthi-testimonial-text {
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.6;
    color: #444444;
    font-weight: 400;
    margin-bottom: 30px;
}

.shanthi-client-name {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 4px 0;
}

.shanthi-client-role {
    font-size: 13px;
    color: #888888;
    display: block;
}

.shanthi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 22px;
    color: #222222;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 10px;
    z-index: 10;
}

.shanthi-prev-btn {
    left: -70px;
}

.shanthi-next-btn {
    right: -70px;
}

.shanthi-nav-btn:hover {
    color: #c5a880;
    transform: translateY(-50%) scale(1.25);
}
/* Footer Base Styling */
.shanthi-footer {
    background-color: black;
    color: #cccccc;
    font-family: inherit;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.shanthi-footer-bg-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shanthi-footer-bg-graphic svg {
    width: 100%;
    height: 100%;
}

.shanthi-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.shanthi-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.shanthi-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; 
    height: 2px;
    background-color: #c5a880;
    transition: width 0.3s ease;
}

.shanthi-footer-title:hover::after {
    width: 100%;
}

.shanthi-footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.shanthi-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #aaaaaa;
}

.shanthi-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shanthi-footer-links li {
    margin-bottom: 10px;
}

.shanthi-footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding 0.3s ease;
}

.shanthi-footer-links a:hover {
    color: #c5a880;
    padding-left: 4px;
}

.shanthi-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 48px);
    gap: 12px;
}

.shanthi-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shanthi-partner-item img {
   
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* .shanthi-partner-item:hover {
    transform: translateY(-3px);
    border-color: #c5a880;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.2);
} */

.shanthi-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #c5a880;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-item a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c5a880;
}

.shanthi-footer-bottom {
    background-color: #111111;
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.shanthi-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888888;
}

.shanthi-developer {
    font-size: 15px;
}

.shanthi-developer a {
    color: white;
    text-decoration: none;
}

.shanthi-developer a:hover {
    text-decoration: underline;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 96%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #c5a880;
    color: #ffffff;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #111111;
}
@media (max-width: 768px) {

    /* --- Header / Nav Dropdown --- */
    .main-header {
        padding: 14px 20px;
        flex-wrap: wrap;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(12, 13, 14, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: max-height 0.35s ease;
        z-index: 999;
    }

    .nav-container.active {
        max-height: 500px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    }

    .nav-container nav {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        white-space: normal;
    }

    .nav-link.active::after,
    .nav-link:hover::after {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        background: rgba(197, 168, 128, 0.12);
        color: #c5a880;
    }

    /* --- Hero --- */
    .hero-section {
        padding-top: 22%;
    }

    .hero-title {
        font-size: 32px;
    }

    .booking-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }

    .booking-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }

    .booking-field:last-of-type {
        border-bottom: none;
    }

    .booking-btn {
        width: 100%;
        margin-top: 10px;
        padding: 16px;
    }

    /* --- About Section --- */
    .shanthi-about-section {
        padding: 70px 20px 90px 20px;
    }

    .shanthi-about-container {
        flex-direction: column;
    }

    .shanthi-about-content {
        max-width: 100%;
    }

    .shanthi-title {
        font-size: 30px;
    }

    .shanthi-features-grid {
        flex-direction: column;
        gap: 18px;
    }

    .shanthi-media-wrapper {
        max-width: 100%;
        height: auto;
        margin: 30px 0 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .architectural-sketch-bg {
        display: none;
    }

    .shanthi-img-card,
    .shanthi-img-card.card-top,
    .shanthi-img-card.card-bottom {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 220px;
    }
    .hotel-serv-banner {
        background-attachment: scroll;
        padding: 60px 16px;
    }

    .hotel-serv-grid {
        grid-template-columns: 1fr;
    }

    .hotel-serv-img-box {
        height: 320px;
    }

    .shanthi-v2-gallery-section {
        padding: 40px 0;
    }

    .shanthi-v2-slide-item {
        width: 240px;
        height: 180px;
    }

    .shanthi-testimonial-section {
        padding: 60px 16px;
    }

    .shanthi-testimonial-text {
        font-size: 18px;
    }

    .shanthi-prev-btn {
        left: 0;
    }

    .shanthi-next-btn {
        right: 0;
    }
    
    .shanthi-prev-btn,.shanthi-next-btn{
        display: none;
    }
    .shanthi-footer-container {
        grid-template-columns: 1fr;
    }

    .shanthi-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .back-to-top-btn {
        bottom: 20px;
        right: 82%;
        width: 42px;
        height: 42px;
        font-size: 16px;
        padding: 29px;
    }
}
        .reveal-text {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        .reveal-text.active {
            opacity: 1;
            transform: translateY(0);
        }
        .hero-title {
            animation: heroTextEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes heroTextEntrance {
            0% {
                opacity: 0;
                transform: scale(0.92) translateY(25px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        .nav-link, .shanthi-footer-links a {
            transition: transform 0.3s ease, letter-spacing 0.3s ease;
            display: inline-block;
        }

        .nav-link:hover, .shanthi-footer-links a:hover {
            transform: translateX(5px);
            letter-spacing: 0.5px;
        }

        .shanthi-title, .hotel-serv-title, .shanthi-v2-main-title {
            transition: transform 0.4s ease;
        }

        .shanthi-title:hover, .hotel-serv-title:hover, .shanthi-v2-main-title:hover {
            transform: scale(1.02);
        }

        .shanthi-feature-box h4 {
            transition: transform 0.3s ease;
        }
        .shanthi-feature-box:hover h4 {
            transform: translateX(3px);
        }
        .delay-1 { transition-delay: 0.15s; }
        .delay-2 { transition-delay: 0.3s; }
        .delay-3 { transition-delay: 0.45s; }

/*inner-about-us.css*/
.ab-hero-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-image: url('images/branch-room1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.ab-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.75) 0%, rgba(15, 15, 15, 0.6) 100%);
    z-index: 1;
}

.ab-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.ab-banner-title {
    font-family: outfit;
    padding-top: 78px;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-20px);
    animation: abBannerFadeDown 0.8s ease forwards 0.2s;
}

.ab-image-column {
    position: relative;
    padding: 40px 30px 60px 0;
    min-height: 560px;
    z-index: 1;
}

.ab-architectural-sketch-bg {
    position: absolute;
    left: -156px;
    top: 79%;
    width: 460px;
    height: auto;
    object-fit: contain;
    opacity: 0.18;
    filter: grayscale(100%);
    transform: none;
    pointer-events: none;
    z-index: 1;
}

.ab-img-frame {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    padding: 8px; /* White Border Frame */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}

.ab-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ab-img-frame:hover img {
    transform: scale(1.05);
}

.ab-img-primary {
    width: 62%;
    height: 260px;
    margin-left: auto;
}

.ab-img-secondary {
    position: absolute;
    top: 230px;
    left: 0;
    width: 62%;
    height: 260px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.ab-main-wrapper {
    padding: 90px 20px;
    background-color: #fcfbfa;
    overflow: hidden;
}

.ab-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-subheading {
    font-family:Fraunces;
    display: inline-block;
    color: #c5a880;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(197, 168, 128, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.ab-main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    color: #222222;
    line-height: 1.35;
    margin-bottom: 20px;
}

.ab-main-heading span {
    color: #c5a880;
}

.ab-text-para {
    color: #666666;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.ab-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.ab-feature-card {
    background: #ffffff;
    padding: 18px 10px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ab-feature-card:hover {
    transform: translateY(-5px);
    border-color: #c5a880;
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.2);
}

.ab-icon-wrap {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px auto;
    background: rgba(197, 168, 128, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.ab-feature-card:hover .ab-icon-wrap {
    background: #c5a880;
}

.ab-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #c5a880;
    transition: stroke 0.3s ease;
}

.ab-feature-card:hover .ab-icon-wrap svg {
    stroke: #ffffff;
}

.ab-feature-card h4 {
    font-size: 12px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
}

.ab-floating-bell-wrapper {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.ab-bell-tooltip {
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    position: relative;
    animation: abFloatBadge 2s infinite ease-in-out;
}

.ab-bell-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #111111;
}

.ab-bell-btn {
    width: 58px;
    height: 58px;
    background: #c5a880;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.ab-bell-btn:hover {
    background: #111111;
    transform: scale(1.08);
}

.ab-shaking-bell {
    animation: abBellRing 2s infinite ease-in-out;
}

@keyframes abBellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50% { transform: rotate(15deg); }
    20%, 40%, 60% { transform: rotate(-15deg); }
    70% { transform: rotate(0); }
}

@keyframes abFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ab-popup-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ab-popup-booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.ab-popup-booking-card {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.ab-popup-booking-modal.active .ab-popup-booking-card {
    transform: scale(1);
}

.ab-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #888888;
    cursor: pointer;
}

.ab-popup-booking-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #111111;
}

.ab-popup-field {
    margin-bottom: 15px;
    text-align: left;
}

.ab-popup-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 6px;
}

.ab-popup-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    padding: 10px 14px;
    border-radius: 8px;
}

.ab-popup-input i {
    color: #c5a880;
}

.ab-popup-input select,
.ab-popup-input input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
    color: #222222;
}

.ab-popup-submit-btn {
    width: 100%;
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.ab-popup-submit-btn:hover {
    background: #c5a880;
}

@keyframes abBannerFadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ab-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ab-animate.ab-visible {
    opacity: 1;
    transform: translateY(0);
}
.ab-content-column .ab-subheading,
.ab-content-column .ab-main-heading,
.ab-content-column .ab-text-para {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-content-column.ab-visible .ab-subheading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.ab-content-column.ab-visible .ab-main-heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.ab-content-column.ab-visible .ab-text-para:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.ab-content-column.ab-visible .ab-text-para:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.ab-banner-title {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    animation: bannerTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes bannerTextIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@media screen and (max-width: 768px) {
    .ab-hero-banner {
        min-height: 200px;
        padding: 40px 15px;
    }

    .ab-banner-title {
        font-size: 32px;
    }

    .ab-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ab-image-column {
        padding: 20px 20px 30px 0;
        min-height: 380px;
    }

    .ab-architectural-sketch-bg {
        left: 137px;
        top: 236px;
        width: 233px;
        opacity: 0.15;
    }
}

    .ab-frame-outline {
        display: none;
    }

    .ab-img-primary {
        width: 88%;
        height: 220px;
    }

    .ab-img-secondary {
        top: 190px;
        width: 60%;
        height: 170px;
    }

    .ab-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ab-floating-bell-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .ab-text-para{
        text-align: justify;
    }

/*rooms-css*/
.rm-hero-banner-sec {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
}

.rm-hero-banner-wrapper {
    width: 100%;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rm-hero-banner-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.rm-hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Black shade intensity */
    z-index: 1;
}

.rm-hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px; /* Navbar padding alignment */
}

.rm-hero-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.rm-card-section {
    padding: 70px 20px;
    background-color: #fcfbfa;
}

.rm-container {
    max-width: 1240px;
    margin: 0 auto;
}
.rm-section-title {
    text-align: center;
    margin-bottom: 45px;
}

.rm-halls-title {
    margin-top: 70px;
}

.rm-subheading {
    display: inline-block;
    color: #c5a880;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(197, 168, 128, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.rm-section-title h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    color: #222222;
    margin: 0;
}

.rm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rm-halls-grid {
    max-width: 820px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}
.rm-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}
.rm-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.rm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rm-card:hover .rm-card-img img {
    transform: scale(1.05);
}
.rm-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rm-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rm-room-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}
.rm-price-badge {
    position: static;
    background-color: #c5a880;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}
.rm-amenities-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 14px;
}

.rm-amenities-row span {
    font-size: 12px;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rm-amenities-row i {
    font-size: 12px;
}
.rm-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.rm-btn-group {
    width: 100%;
    margin-top: auto;
}

.rm-btn-details {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background-color: #c5a880;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.rm-btn-details .arrow {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}
.rm-btn-details:hover {
    background-color: black;
    color: #ffffff;
}

.rm-btn-details:hover .arrow {
    opacity: 1;
    visibility: visible;
    transform: translateX(4px);
}
.view-more-overlay-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.view-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
    transition: background 0.3s ease;
}

.view-more-overlay-box:hover .view-more-overlay {
    background: rgba(0, 0, 0, 0.82);
}
@media screen and (max-width: 992px) {
    .rm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .rm-hero-banner-img {
        max-height: 300px;
        object-fit: contain;
        padding-top: 69px;
    }
    .rm-card-section {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 650px) {
    .rm-grid, .rm-halls-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .rm-hero-banner-img {
        max-height: 220px;
    }
}
.custom-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f7f5f0;
    color: #c5a880;
    border: 1px solid #e0d8ca;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.custom-back-btn .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}
.custom-back-btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}
.custom-back-btn:hover .arrow-icon {
    transform: translateX(-5px);
}

.dt-main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}
.dt-category-tag {
    font-size: 12px;
    font-weight: 700;
    color: #c5a880;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.dt-main-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    color: #222;
    margin: 0;
}
.dt-price-badge-box {
    text-align: right;
    background: #faf8f5;
    padding: 8px 18px;
    border-left: 3px solid #c5a880;
}
.price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    display: block;
}
.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #c5a880;
}
.price-value small {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

.dt-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}
.dt-section-heading {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    border-left: 3px solid #c5a880;
    padding-left: 10px;
}

.dt-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.dt-feature-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 14px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.2s ease;
}
.dt-feature-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dt-icon-circle {
    width: 42px;
    height: 42px;
    background-color: #fbf7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a880;
    font-size: 16px;
    flex-shrink: 0;
}
.dt-feature-text {
    font-size: 14px;
    color: #444;
}
.dt-feature-text strong {
    color: #111;
}

.hall-notice {
    background: #fdf8f3;
    border: 1px solid #f3e5d8;
    color: #8a6d3b;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.dt-booking-card {
    background: #fdfdfd;
    border: 1px solid #e2e2e2;
    padding: 24px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 30px;
}
.b-card-header {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.b-card-sub {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}
.btn-book-custom {
    display: block;
    width: 100%;
    background-color: #c5a880;
    color: #ffffff;
    text-align: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3);
}
.btn-book-custom:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}
.dt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gallery-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 95px;
}
.gallery-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-img-link:hover img {
    transform: scale(1.1);
}

@media(max-width: 768px) {
    .dt-layout-wrapper { grid-template-columns: 1fr; }
    .dt-features-list { grid-template-columns: 1fr; }
    .dt-main-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/*services and facilites.css*/
:root {
    --primary-green: #062b24;
    --gold-accent: #e5b067;
    --gold-light: #fdf8f0;
    --card-bg: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
}

.service-hero-banner-sec {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #0d0d0d;
}

.service-hero-banner-wrapper {
    width: 100%;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-hero-banner-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.service-hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.service-hero-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
    color: var(--gold-accent);
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.fac-section {
    padding: 60px 20px;
    background-color: #fcfbf7;
    position: relative;
    overflow: hidden;
}

.doodle {
    position: absolute;
    color: rgba(229, 176, 103, 0.25);
    font-size: 24px;
    pointer-events: none;
    animation: floatDoodle 8s ease-in-out infinite alternate;
    z-index: 0;
}

.doodle-1 { top: 10%; left: 5%; font-size: 28px; animation-duration: 6s; }
.doodle-2 { top: 25%; right: 8%; font-size: 20px; animation-duration: 9s; }
.doodle-3 { top: 50%; left: 3%; font-size: 18px; animation-duration: 7s; }
.doodle-4 { top: 70%; right: 5%; font-size: 32px; animation-duration: 10s; }
.doodle-5 { top: 85%; left: 8%; font-size: 22px; animation-duration: 8s; }
.doodle-6 { top: 40%; right: 2%; font-size: 26px; animation-duration: 11s; }

@keyframes floatDoodle {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(180deg) scale(1.15); }
    100% { transform: translateY(10px) rotate(360deg) scale(0.9); }
}

.fac-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.fac-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 0px 0 0px 65px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
.fac-card-reveal {
    animation: scaleFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes scaleFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fac-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(6, 43, 36, 0.12);
}

.fac-card-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.fac-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 65px;
    border-bottom-left-radius: 65px;
    transition: transform 0.5s ease;
}

.fac-card:hover .fac-card-img img {
    transform: scale(1.08);
}

.fac-card-content {
    width: 55%;
    padding: 20px 18px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.fac-icon-wrapper {
    width: 38px;
    height: 38px;
    background-color: var(--gold-light);
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #9e6d28;
    font-size: 16px;
    transition: transform 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.fac-card:hover .fac-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background-color: var(--gold-accent);
    color: #ffffff;
}

.fac-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.fac-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.fac-bottom-bar {
    position: relative;
    background-color: var(--primary-green);
    border-radius: 14px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(10, 60, 54, 0.15);
    overflow: hidden;
}

.pulse-icon {
    animation: pulseIcon 2.5s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.leaf-decor {
    position: absolute;
    width: 110px;
    height: 110px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.leaf-left {
    bottom: -10px;
    left: -10px;
    transform: rotate(0deg);
}

.leaf-right {
    bottom: -10px;
    right: -10px;
    transform: scaleX(-1);
}

.fac-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* .fac-bar-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
} */

.fac-bar-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.fac-bar-link:hover {
    transform: translateY(-3px);
}

.fac-bar-icon {
    font-size: 22px;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.fac-bar-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.fac-bar-sub {
    font-size: 11px;
    color: #9cb5b0;
}

@media (max-width: 992px) {
    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fac-bottom-bar {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    .fac-bar-item:not(:last-child)::after {
        display: none;
    }
    .leaf-decor {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 600px) {
    .fac-grid {
        grid-template-columns: 1fr;
    }
    .service-hero-banner-title {
        font-size: 28px;
    }
}
/*contact-us*/
.contactus-hero-banner-sec {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
}

.contactus-hero-banner-wrapper {
    width: 100%;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contactus-hero-banner-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.contactus-hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.contactus-hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.contactus-hero-banner-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hotel-contact-section {
  background-color: #f7f9fb;
  padding: 60px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #334155;
  box-sizing: border-box;
}

.hotel-contact-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hcs-container {
  max-width: 1180px;
  margin: 0 auto;
}

.hcs-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.hcs-side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hcs-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
}

.hcs-form-card {
  position: relative;
}

.hcs-leaf-bg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 210px;
  height: 210px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18; 
  transform: rotate(-5deg); 
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hcs-form-card:hover .hcs-leaf-bg {
  opacity: 0.28;
  transform: rotate(0deg) scale(1.03);
}

.hcs-title-bar {
  width: 32px;
  height: 2px;
  background-color: #b89146;
  margin-bottom: 12px;
}

.hcs-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.hcs-subtext {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.hcs-contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hcs-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.hcs-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.hcs-input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.3s ease;
}

.hcs-input-wrapper input,
.hcs-input-wrapper textarea {
  width: 100%;
  padding: 12px 16px 12px 42px;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.hcs-textarea-wrapper {
  align-items: flex-start;
}

.hcs-textarea-wrapper .hcs-input-icon {
  top: 14px;
}

.hcs-input-wrapper input:focus,
.hcs-input-wrapper textarea:focus {
  background-color: #ffffff;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.08);
}

.hcs-input-wrapper input:focus + .hcs-input-icon,
.hcs-input-wrapper textarea:focus + .hcs-input-icon {
  color: #1e3a8a;
}

.hcs-btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0f2a4a;
  color: #ffffff;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 42, 74, 0.15);
}

.hcs-btn-submit:hover:not(:disabled) {
  background-color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 42, 74, 0.25);
}

.hcs-btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.hcs-btn-icon, .hcs-arrow-icon {
  width: 16px;
  height: 16px;
}

.hcs-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: hcs-spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes hcs-spin {
  to { transform: rotate(360deg); }
}

.hcs-form-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: hcs-fadeIn 0.3s ease;
}

@keyframes hcs-fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hcs-alert-success {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.hcs-alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.hcs-banner-card {
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.hcs-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hcs-info-card {
  padding: 28px;
}

.hcs-info-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.hcs-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.hcs-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
}

.hcs-info-list a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hcs-info-list a:hover {
  color: #0f2a4a;
}

.hcs-info-icon-box {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: #0f2a4a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcs-info-icon-box svg {
  width: 16px;
  height: 16px;
}

.hcs-divider {
  height: 1px;
  background-color: #f1f5f9;
  margin: 20px 0;
}

.hcs-social-heading {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 14px;
}

.hcs-social-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hcs-social-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.hcs-social-icon:hover {
  transform: scale(1.15) translateY(-2px);
  opacity: 0.95;
}

.hcs-social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: #1e293b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

.hcs-social-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hcs-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hcs-contact-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.hcs-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 18px;
}

.hcs-badge-icon svg {
  width: 22px;
  height: 22px;
}

.hcs-bg-navy {
  background-color: #1e3a8a;
}

.hcs-bg-olive {
  background-color: #1e3a8a;
}

.hcs-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.hcs-card-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hcs-card-text a {
  color: #64748b;
  text-decoration: none;
  word-break: break-all;
}

.hcs-phone-list {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hcs-phone-list span {
  font-weight: 500;
  color: #475569;
}

.hcs-phone-list a {
  color: #64748b;
  text-decoration: none;
}

.hcs-circle-btn {
  margin-top: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0f2a4a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hcs-circle-btn svg {
  width: 14px;
  height: 14px;
}

.hcs-contact-card:hover .hcs-circle-btn {
  background-color: #1e3a8a;
  transform: translateX(4px);
}
.hcs-animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hcs-animate-up.hcs-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hcs-main-grid {
    grid-template-columns: 1fr;
  }
  .hcs-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hcs-bottom-grid {
    grid-template-columns: 1fr;
  }
  .hcs-card {
    padding: 24px;
  }
}
/*gallery-sections*/
:root {
    --h-bg: #fcfbf7;
    --h-primary: #062b24;
    --h-gold: #e5b067;
    --h-text-dark: #1a1a1a;
    --h-text-muted: #666666;
}

.h-gal-sec {
    background-color: var(--h-bg);
    padding: 60px 20px;
}

.h-gal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.h-gal-header {
    text-align: center;
    margin-bottom: 30px;
}

.h-gal-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--h-gold);
    display: inline-block;
    position: relative;
    padding: 0 20px;
    margin-bottom: 8px;
}

.h-gal-tagline::before,
.h-gal-tagline::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 1px;
    background-color: var(--h-gold);
}

.h-gal-tagline::before { left: 0; }
.h-gal-tagline::after { right: 0; }

.h-gal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--h-text-dark);
    margin: 0 0 12px 0;
}

.h-gal-subtitle {
    font-size: 13px;
    color: var(--h-text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.h-gal-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}
.h-gal-btn {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease;
}
.h-gal-btn:hover,
.h-gal-btn.active {
    background: var(--h-primary);
    color: #ffffff;
    border-color: var(--h-primary);
}

.h-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.h-gal-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    background: #e0e0e0;
}

.h-gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.h-gal-card:hover img {
    transform: scale(1.08);
}

.h-gal-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 4px;
}

.h-gal-label {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}

.h-cta-banner {
    background: url('images/room-banner.png') center/cover no-repeat;
    position: relative;
    padding:78px 20px;
}
.h-cta-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 43, 36, 0.88);
}

.h-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.h-cta-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--h-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--h-gold);
    font-size: 18px;
}

.h-cta-info h3 {
    color: #ffffff;
    margin: 0 0 4px 0;
    font-size: 18px;
}

.h-cta-info p {
    color: #a3c2bb;
    margin: 0;
    font-size: 12px;
}

.h-cta-btn {
    background-color: var(--h-gold);
    color: #000000;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s ease;
}

.h-cta-btn:hover {
    background-color: #ffffff;
}
@media (max-width: 992px) {
    .h-gal-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .h-gal-grid { grid-template-columns: repeat(2, 1fr); }
    .h-cta-container { flex-direction: column; gap: 20px; text-align: center; }
    .h-cta-left { flex-direction: column; }
}
.hotel-tooltip-container {
    position: fixed;
    bottom: 130px;
    right:15px;
    z-index: 9999;
    display: inline-block;
    text-decoration: none;

    /* Hide/Show transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.hotel-tooltip-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hotel-icon-btn {
    width: 58px;
    height: 58px;
    background-color: #c4a482;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hotel-tooltip-container:hover .hotel-icon-btn {
    transform: scale(1.08);
    background-color: #b39270;
}

.hotel-icon-btn svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.hotel-tooltip-bubble {
    position: absolute;
    bottom: 85px;
    right: 0px;
    background-color: #121212;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    animation: hotelPopUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotel-tooltip-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #121212;
}

@keyframes hotelPopUp {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ab-floating-bell-wrapper {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.ab-floating-bell-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}