@charset "UTF-8";
/*
    Author: WEBS NP
    Author mail: websnp@gmail.com
    Optimized and Organized CSS - 2024
*/

/* ============================================
   FONTS
   ============================================ */
@font-face {
    font-family: "Jazmin-Thin";
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/Jazmin-Thin.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-ExtraLight";
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/Jazmin-ExtraLight.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-Light";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Jazmin-Light.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-Regular";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Jazmin-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-Medium";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Jazmin-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-SemiBold";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Jazmin-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-Bold";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Jazmin-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Jazmin-Black";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Jazmin-Black.ttf) format("truetype");
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary_color: #c49a6c;
    --secondary_color: #006a52;
    --bs-primary-rgb: #006a52;
    --primary_light: #b99267;
    --primary_dark: #41260f;
    --white_color: #ffffff;
    --cream_color: #f8f7f6;
    --black_color: #000000;
    --text_color: #5c5f5f;
    --logo_green_bg: #c49a6c;
    --light_bg: #f8f5f0;
    --dark_overlay: rgba(0, 0, 0, 0.5);
    --light_overlay: rgba(0, 0, 0, 0.7);

    /* Spacing */
    --round_sm: 3px;
    --round_md: 5px;
    --round_lg: 25px;
    --round_full: 50%;

    /* Transitions */
    --transition: all ease-in-out .5s;
    --transition-fast: all ease-in-out .3s;

    /* Fonts */
    --font_thin: "Jazmin-Thin", sans-serif;
    --font_extra_light: "Jazmin-ExtraLight", sans-serif;
    --font_light: "Jazmin-Light", sans-serif;
    --font_regular: "Jazmin-Regular", sans-serif;
    --font_medium: "Jazmin-Medium", sans-serif;
    --font_semibold: "Jazmin-SemiBold", sans-serif;
    --font_bold: "Jazmin-Bold", sans-serif;
    --font_black: "Jazmin-Black", sans-serif;
}

/* ============================================
   BASE/RESET STYLES
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream_color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary_color);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span,
address,
blockquote,
hr {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

img,
svg {
    vertical-align: middle;
}

body {
    scroll-behavior: smooth;
    font-family: var(--font_regular);
    background-color: var(--cream_color);
    color: var(--text_color);
}

/* ============================================
   COMMON UTILITY CLASSES
   ============================================ */
.section-padding {
    padding: 65px 0;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

/* Hero Section Standard Height */
.common-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}


.section-small-title {
    font-size: clamp(14px, 1.277vw, 19px);
    line-height: clamp(20px, 1.302vw, 20px);
    font-family: var(--font_medium);
    text-transform: uppercase;
    color: var(--secondary_color);
    padding-bottom: 2.5%;
}

.section-heading {
    font-size: clamp(20px, 1.823vw, 28px);
    line-height: clamp(30px, 2.083vw, 32px);
    text-transform: uppercase;
    color: var(--primary_color);
    font-family: var(--font_light);
    padding-bottom: 4.05%;
}

.section-description {
    color: var(--text_color);
    font-size: clamp(11px, .911vw, 14px);
    line-height: clamp(20px, 1.563vw, 24px);
}

/* ============================================
   HEADER SECTION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.main-header.fixed-header {
    background-color: var(--cream_color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.main-header .logo {
    width: 120px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.main-header.fixed-header .logo {
    filter: none;
}

.main-header .menu-nav-btn {
    display: flex;
    align-items: center;
    color: var(--white_color);
    background-color: transparent;
    border: 0;
    width: auto;
    height: 100%;
    padding: 20px 20px 20px 0;
    z-index: 10;
    position: relative;
}

.main-header.fixed-header .menu-nav-btn {
    color: var(--black_color);
}

.main-header .menu-nav-btn .hamburger-parent {
    display: flex;
    flex-direction: column;
    height: 17px;
    justify-content: space-between;
}

.main-header .menu-nav-btn .hamburger {
    display: inline-flex;
    position: relative;
    width: 22px;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.main-header .menu-nav-btn .menui {
    background-color: var(--white_color);
    display: block;
    position: absolute;
    height: 1px;
    width: 22px;
    transition: var(--transition-fast);
}

.main-header .menu-nav-btn .menui.top-bar {
    top: 0;
}

.main-header .menu-nav-btn .menui.mid-bar {
    top: 8px;
}

.main-header .menu-nav-btn .menui.bottom-bar {
    top: 16px;
}

.main-header .menu-nav-btn.open .menui.top-bar {
    top: 8px;
    transform: rotate(45deg);
}

.main-header .menu-nav-btn.open .menui.mid-bar {
    opacity: 0;
}

.main-header .menu-nav-btn:hover .menui.mid-bar {
    transform: translateX(-8px);
}

.main-header .menu-nav-btn.open .menui.bottom-bar {
    top: 8px;
    transform: rotate(-45deg);
}

.main-header.fixed-header .menu-nav-btn .menui {
    background-color: var(--black_color);
}

.main-header .sidebar {
    position: absolute;
    top: 90px;
    left: 0;
    display: none;
    z-index: 100;
    height: 100vh;
}

.main-header .sidebar ul {
    height: 100%;
    padding-left: 60px;
    padding-top: 60px;
    background-color: rgba(196, 154, 108, 0.7);
    width: 300px;
    overflow-y: auto;
}

.main-header .sidebar ul li:not(:last-child) {
    margin-bottom: 3.5%;
}

.main-header .sidebar ul a {
    color: var(--white_color);
    text-transform: uppercase;
    font-size: clamp(16px, 1.302vw, 20px);
    line-height: clamp(20px, 1.822vw, 28px);
    letter-spacing: 1px;
    font-family: var(--font_light);
    position: relative;
}

.main-header .sidebar ul a::after {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--white_color);
    transition: var(--transition);
}

.main-header .sidebar ul a:hover::after {
    width: 100%;
}

.main-header hr {
    border-color: rgba(243, 228, 206, 0.60);
}

.main-header.fixed-header hr {
    border-color: rgba(111, 71, 71, 0.7);
}

.main-header .nav-items a {
    color: var(--white_color);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
    /* Prevent wrapping */
}

.main-header.fixed-header .nav-items a {
    color: var(--primary_color);
}

.main-header .nav-items .dropdown-li .dropdown-child {
    position: absolute;
    top: 100%;
    left: -40px;
    padding: 8px;
    min-width: 200px;
    /* kept min-width */
    width: max-content;
    /* Allow width to expand to content */
    background-color: var(--white_color);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    display: none;
    transition: var(--transition);
}

.main-header .nav-items .dropdown-li:hover .dropdown-child {
    display: block;
}

.main-header .nav-items .dropdown-li .dropdown-child li:not(:last-child) {
    margin-bottom: 8px;
}

.main-header .nav-items .dropdown-li .dropdown-child a {
    color: var(--primary_color);
    white-space: nowrap;
    /* Prevent line break */
    display: block;
    /* Ensure full width clickable/block */
}

/* ============================================
   CONTENT SECTION
   ============================================ */

/* Hero Section */
#hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

#hero video,
#hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

/* About Page Styles */
.about-hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.our-story img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.our-story img:hover {
    transform: translateY(-5px);
}

.signature {
    font-style: italic;
    color: #888;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    color: #2a2a2a;
    margin-bottom: 15px;
}

/* Team Cards */
.team-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 180px;
    height: 180px;
    border: 5px solid var(--light_bg);
    border-radius: 50%;
    overflow: hidden;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #e9dccd;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: #cfbba4;
}


.testimonial-card .img {
    text-align: center;
    padding-top: 25px;
}

.testimonial-card .img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #f8f5f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f8f5f0 0%, #e9dccd 100%);
    padding: 2px;
}

.testimonial-card:hover .img img {
    transform: scale(1.05);
}

.testimonial-card .content {
    padding: 30px 20px;
    text-align: center;
}

.testimonial-card h3 {
    text-transform: uppercase;
    font-size: clamp(15px, 1.302vw, 20px);
    line-height: clamp(20px, 1.628vw, 25px);
    color: var(--primary_color);
}

.testimonial-card p {
    font-family: var(--font_light);
    font-size: clamp(11px, .911vw, 14px);
    line-height: clamp(20px, 1.563vw, 24px);
    color: var(--text_color);
}


.testimonial-card ul {
    justify-content: center;
}

.testimonial-card ul i {
    font-size: clamp(11px, 0.977vw, 15px);
    color: var(--primary_color);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--light_bg);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* About Section */
.about ul a {
    text-transform: uppercase;
    font-family: var(--font_medium);
    letter-spacing: 1.2px;
    font-size: clamp(11px, .846vw, 13px);
    line-height: clamp(24px, 1.563vw, 24px);
    color: var(--primary_color);
}

.about ul li:first-child a {
    position: relative;
}

.about ul li:first-child a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 60%;
    background-color: var(--primary_color);
    transition: var(--transition);
}

.about ul li:first-child a:hover::after {
    width: 80%;
}

/* Wellness Section */
.wellness .slider-content img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.wellness .slider-content .overlay {
    bottom: 12%;
    left: 0;
    width: 100%;
    background-color: rgba(238, 231, 221, 0.72);
    padding: 3%;
    text-align: center;
}

.wellness .slider-content .overlay h3 {
    text-transform: uppercase;
    color: var(--primary_color);
    font-size: clamp(20px, 1.563vw, 24px);
    line-height: clamp(30px, 1.953vw, 30px);
}

.wellness .slick-dots {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.wellness .slick-dots li {
    display: inline-block;
    margin: 0 2px;
}

.wellness .slick-dots li button {
    height: 10px;
    width: 10px;
    background-color: transparent;
    border: 1px solid var(--white_color);
    color: transparent;
    border-radius: var(--round_full);
    transition: var(--transition);
}

.wellness .slick-dots li.slick-active button {
    background-color: var(--white_color);
}

.wellness ul a {
    text-transform: uppercase;
    font-family: var(--font_medium);
    letter-spacing: 1.2px;
    font-size: clamp(11px, .846vw, 13px);
    line-height: clamp(24px, 1.563vw, 24px);
    color: var(--primary_color);
}

.wellness ul li:first-child a {
    position: relative;
}

.wellness ul li:first-child a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 60%;
    background-color: var(--primary_color);
    transition: var(--transition);
}

.wellness ul li:first-child a:hover::after {
    width: 80%;
}

.wellness .icon {
    bottom: -50px;
    right: 0;
}

/* Quote/Blockquote Section */
.quote {
    height: 500px;
    position: relative;
    z-index: 1;
    color: var(--white_color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.quote::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--dark_overlay);
    z-index: -1;
}

.quote blockquote {
    font-size: clamp(20px, 1.563vw, 24px);
    line-height: clamp(30px, 1.953vw, 30px);
}

/* FAQ Section */
.faq .slider-content img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.faq .faq-slider .slick-dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.faq .faq-slider .slick-dots li {
    display: inline-block;
    margin: 0 2px;
}

.faq .faq-slider .slick-dots li button {
    height: 10px;
    width: 10px;
    background-color: transparent;
    border: 1px solid var(--white_color);
    color: transparent;
    border-radius: var(--round_full);
    transition: var(--transition);
}

.faq .faq-slider .slick-dots li.slick-active button {
    background-color: var(--white_color);
}

.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.faq .accordion-item {
    background-color: transparent;
}

.faq .accordion-button {
    padding: var(--bs-accordion-btn-padding-y) 8px;
    background-color: transparent;
}

.faq .accordion-body {
    padding: 8px;
}

.faq h4.accordion-header button {
    color: var(--primary_light);
    text-transform: uppercase;
    font-family: var(--font_light);
    font-size: clamp(11px, .977vw, 15px);
    line-height: clamp(24px, 1.563vw, 24px);
}

.faq .accordion-body p {
    font-size: clamp(11px, .911vw, 14px);
    line-height: clamp(20px, 1.563vw, 24px);
}

/* Packages Section */
.packages .section-small-title {
    padding-bottom: 1%;
}

.packages .package-card img {
    height: 480px;
    object-fit: cover;
    object-position: center;
}

.packages .overlay {
    padding: 22% 6% 6%;
    width: 100%;
    color: var(--white_color);
    background: linear-gradient(0, var(--black_color) 0, rgba(111, 71, 37, 0.00) 100%);
}

.packages .package-card .overlay h3 {
    text-transform: uppercase;
    animation: translateDown .8s ease-in-out;
    font-family: var(--font_light);
    font-size: clamp(15px, 1.302vw, 20px);
    line-height: clamp(20px, 1.628vw, 25px);
}

.packages .package-card:hover .overlay h3 {
    animation: translateUp .8s ease-in-out;
}

.packages .package-card .overlay p {
    padding: 4% 9% 2% 0;
    display: none;
    font-size: clamp(11px, 1.075vw, 15px);
    animation: translateDown .8s ease-in-out;
}

.packages .package-card:hover .overlay p {
    display: block;
    animation: translateUp .8s ease-in-out;
}

.packages .package-card .overlay li a {
    color: var(--white_color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: clamp(11px, .846vw, 13px);
    line-height: clamp(24px, 1.563vw, 24px);
    position: relative;
}

.packages .package-card .overlay li a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 80%;
    background-color: var(--white_color);
    transition: var(--transition);
}

.packages .package-card:hover .overlay ul li:first-child a::after {
    width: 92%;
}

.packages .package-card .overlay ul li:last-child a:hover::after {
    width: 92%;
}

/* Experiences Section */
.experience-slider .slider-content img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.experiences .section-small-title {
    padding-bottom: 1%;
}

.experiences .experience-slider .slider-content.slick-slide {
    margin: 0 12px;
}

.experiences .experience-slider .slider-content.slick-slide a {
    width: 100%;
}

.experience-slider .slider-title {
    width: 75%;
    margin: 0 auto;
    padding: 12px 20px;
    text-align: center;
    color: var(--white_color);
    /* keeping text white as per previous change, but defining it here too is good practice */
    background-color: var(--secondary_color);
    /* Dark Green for contrast */
    transform: translateY(-20px);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.experience-slider .slider-content:hover .slider-title {
    background-color: var(--primary_color);
    /* Gold on hover */
}

.experience-slider .slider-title h5 {
    text-transform: uppercase;
    font-size: clamp(11px, .846vw, 13px);
    line-height: clamp(24px, 1.563vw, 24px);
    font-family: var(--font_medium);
    letter-spacing: 1.2px;
}

.experiences .experience-slider .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.experiences .experience-slider .slick-dots li {
    margin: 0;
    display: inline-block;
    width: 8%;
    transition: var(--transition);
    background: var(--primary_light);
    height: 1px;
}

.experiences .experience-slider .slick-dots li.slick-active {
    width: 16%;
    height: 2px;
    background: var(--primary_color);
    transform: translateY(-1px);
}

.experiences .experience-slider .slick-dots li button {
    width: 100%;
    border: none;
    color: transparent;
    background-color: transparent;
    transition: var(--transition);
}

.experiences .experience-slider .slick-dots li button:before {
    width: 100%;
    height: 100%;
    content: "";
}

/* Service Section */
.service ul a {
    text-transform: uppercase;
    font-family: var(--font_medium);
    letter-spacing: 1.2px;
    font-size: clamp(11px, .846vw, 13px);
    line-height: clamp(24px, 1.563vw, 24px);
    color: var(--primary_color);
    position: relative;
}

.service ul a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 60%;
    background-color: var(--primary_color);
    transition: var(--transition);
}

.service ul a:hover::after {
    width: 80%;
}

/* Booking Styles */
.booking-progress {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.step-number.active {
    background: #007bff;
    color: white;
}

.step-number.completed {
    background: #28a745;
    color: white;
}

.step-info {
    flex: 1;
}

.room-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.room-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.room-image {
    height: 200px;
    object-fit: cover;
}

.amenities-list {
    list-style-type: none;
    padding-left: 0;
}

.amenities-list li {
    margin-bottom: 5px;
}

.amenities-list li i {
    color: #007bff;
    margin-right: 8px;
}

.price-display {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.datepicker {
    z-index: 10000 !important;
}

.guest-selector {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.total-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.promo-code-group {
    display: none;
}

.promo-code-group.show {
    display: block !important;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Hero Sections for Different Pages */
.rooms-hero,
.dining-hero,
.events-hero,
.spa-hero,
.adventure-hero,
.culture-hero,
.offer-hero,
.contact-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rooms-hero::before,
.dining-hero::before,
.events-hero::before,
.spa-hero::before,
.adventure-hero::before,
.culture-hero::before,
.offer-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background Utilities */
.bg-light-section {
    background-color: var(--light_bg);
}

.bg-dark-overlay {
    background-color: var(--dark_overlay);
}

/* Vision Content */
.vision-content {
    border-radius: 8px;
}

.vision-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary_color);
    font-weight: bold;
}

.future-vision {
    position: relative;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.future-vision .vision-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 8px;
}

/* Awards Section */
.awards-list li {
    padding: 15px;
    background: white;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.awards-list h5 {
    color: #2a2a2a;
    font-size: 18px;
}

/* Community Cards */
.community-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.community-card img {
    height: 200px;
    object-fit: cover;
}

/* CTA Section */
.cta {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background-color: var(--light_bg);
}

.social-media {
    background-color: var(--light_bg);
}

/* Amenities & Rooms */
.amenities-section,
.room-testimonials {
    background-color: var(--light_bg);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.main-footer {
    color: var(--primary_color);
    font-size: clamp(12px, 1.041vw, 16px);
    line-height: clamp(20px, 1.953vw, 30px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main-footer .logo img {
    width: 180px;
}

.main-footer address {
    color: var(--primary_color);
}

.main-footer .nav-items a {
    color: var(--primary_color);
    padding-bottom: 2%;
}

.main-footer .nav-items a:hover {
    text-decoration: underline;
}

.main-footer .contact li {
    padding-bottom: 2%;
}

.main-footer .contact a,
.main-footer .contact span {
    color: var(--primary_color);
}

.main-footer .contact a:hover {
    text-decoration: underline;
}

.main-footer .social a {
    font-size: 20px;
    color: var(--primary_color);
}

.main-footer hr {
    border-color: var(--primary_dark);
}

.main-footer .copyright,
.main-footer .copyright a {
    color: var(--primary_color);
}

.main-footer .copyright a:hover {
    text-decoration: underline;
}

/* ============================================
   ADDITIONAL COMPONENTS
   ============================================ */

/* Easy Action Sidebar */
.ea {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 50;
}

.ea ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ea .modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.ea li:first-child button,
.ea li:first-child a {
    width: 50px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.0;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-orientation: upright;
    text-align: center;
    border: none;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    gap: 0;
}

.ea li:first-child a:hover {
    background-color: var(--primary_dark);
}

.ea li button,
.ea li a {
    width: 40px;
    color: var(--white_color);
    background-color: var(--logo_green_bg);
}

.ea li:not(:first-child) a {
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 6px;
    font-size: 17px;
}

.ea li:not(:first-child) a:hover {
    background-color: var(--primary_dark);
}

/* Book Now Modal */
.book-now .modal-content {
    color: var(--white_color);
    background-color: var(--black_color);
}

.book-now .modal-content .modal-header {
    border-color: #5c5f5f;
}

.book-now .modal-content .modal-title {
    font-size: clamp(16px, 1.563vw, 22px);
    line-height: clamp(30px, 1.953vw, 30px);
}

.book-now .modal-content .btn-close i {
    color: var(--white_color);
    font-size: 20px;
}

.book-now .modal-content .btn {
    color: var(--white_color);
    background-color: var(--primary_color);
    font-size: clamp(12px, .977vw, 16px);
    line-height: clamp(24px, 1.563vw, 24px);
}

/* Back to Top Button */
.btt {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 50;
    display: none;
}

.btt i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    color: var(--white_color);
    background-color: var(--primary_color);
    border-radius: var(--round_md);
    cursor: pointer;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method.active {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.payment-method img {
    height: 30px;
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes translateDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes translateUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-heading {
        font-size: 36px;
    }

    .section-description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 30px;
    }

    .about-hero {
        height: 60vh;
        min-height: 400px;
    }

    .rooms-hero,
    .dining-hero,
    .events-hero,
    .spa-hero,
    .adventure-hero,
    .culture-hero,
    .offer-hero,
    .contact-hero,
    .gallery-hero,
    .booking-hero {
        height: 60vh;
        min-height: 400px;
    }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Hero Banner */
.gallery-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.gallery-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.gallery-hero .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Gallery Styles */
.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 0.9rem;
    margin: 0;
}

/* Lightbox Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.modal-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.close-modal,
.nav-modal {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    user-select: none;
    transition: transform 0.2s ease;
}

.close-modal:hover,
.nav-modal:hover {
    transform: scale(1.2);
}

.close-modal {
    top: -50px;
    right: 0;
}

.nav-modal.prev {
    left: -50px;
}

.nav-modal.next {
    right: -50px;
}

/* SEO Rich Content */
.seo-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.seo-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content p {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-item {
    animation: fadeIn 0.5s ease forwards;
}

/* Gallery Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-hero {
        height: 60vh;
        min-height: 400px;
    }

    .gallery-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .close-modal,
    .nav-modal {
        font-size: 1.5rem;
    }

    .close-modal {
        top: -40px;
    }

    .nav-modal.prev {
        left: 10px;
    }

    .nav-modal.next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-hero .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-hero .hero-content p {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT PAGE ENHANCED STYLES
   ============================================ */

/* Contact Hero Banner */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
}

.contact-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out;
}

.contact-hero .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B99267, #D4A574);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F0E6D8 0%, #FAF6F0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.info-card:hover .icon {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    transform: scale(1.1) rotate(5deg);
}

.info-card:hover .icon svg {
    stroke: white;
}

.info-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.info-card p {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
}

.form-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #B99267;
}

.form-info p {
    color: #5a5a5a;
    font-size: 0.95rem;
}

/* Contact Form Styling */
#contactForm {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #B99267;
    box-shadow: 0 0 0 3px rgba(185, 146, 103, 0.1);
    color: #2c3e50;
}

.form-control::placeholder {
    color: #a0a0a0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 146, 103, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Form Success Message */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
    border: none;
    border-left: 4px solid #28a745;
    border-radius: 8px;
    animation: slideInDown 0.5s ease-out;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #ffebee 100%);
    border: none;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    animation: slideInDown 0.5s ease-out;
}

/* FAQ Section */
.contact-faq {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
    color: #B99267;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #B99267;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B99267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: #5a5a5a;
    line-height: 1.8;
    background: white;
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
}

.social-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.social-links li a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.social-links li a:hover {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 25px rgba(185, 146, 103, 0.3);
}

.social-links li a:hover svg {
    stroke: white;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Form Loading State */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero .hero-content p {
        font-size: 1rem;
    }

    #contactForm {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 60vh;
        min-height: 400px;
    }

    .contact-hero .hero-content h1 {
        font-size: 2rem;
    }

    .info-card {
        margin: 1rem 0;
    }

    .social-links {
        gap: 1rem !important;
    }

    .social-links li a {
        width: 50px;
        height: 50px;
    }

    .section-description {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 50vh;
        min-height: 300px;
    }

    .contact-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-hero .hero-content p {
        font-size: 0.9rem;
    }

    #contactForm {
        padding: 1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .social-links li a {
        width: 45px;
        height: 45px;
    }

    .social-links li a svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   BOOKING PAGE ENHANCED STYLES
   ============================================ */

.booking-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.booking-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.booking-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out;
}

.booking-hero .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
    border-radius: 8px;
    padding: 1rem;
}

.breadcrumb-item a {
    color: #B99267;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #D4A574;
    text-decoration: underline;
}

/* Booking Progress Tracker */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
    border-radius: 12px;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number.active {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    border-color: #B99267;
    color: white;
    box-shadow: 0 5px 15px rgba(185, 146, 103, 0.3);
    transform: scale(1.1);
}

.step-number.completed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
}

.step-number.completed::after {
    content: '✓';
}

.step-info h5 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.step-info small {
    color: #7f8c8d;
    display: block;
    font-size: 0.85rem;
}

/* Booking Form Styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    border: none;
    padding: 1.5rem;
}

.card-header h4 {
    color: white;
    font-weight: 700;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #B99267;
    box-shadow: 0 0 0 3px rgba(185, 146, 103, 0.1);
    color: #2c3e50;
}

.form-control::placeholder {
    color: #a0a0a0;
}

/* Guest Selector */
.guest-selector {
    background: #f8f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.guest-selector .form-group {
    margin-bottom: 0;
}

/* Promo Code Group */
.promo-code-group {
    display: none;
    animation: slideDown 0.3s ease-out forwards;
}

.promo-code-group.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Room Cards */
.room-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
}

.room-card:hover {
    border-color: #B99267;
    box-shadow: 0 10px 30px rgba(185, 146, 103, 0.2);
    transform: translateY(-5px);
}

.room-image {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.card-text {
    color: #5a5a5a;
    line-height: 1.6;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.amenities-list li {
    color: #5a5a5a;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.amenities-list i {
    color: #B99267;
    width: 20px;
    margin-right: 0.5rem;
}

/* Price Display */
.price-display {
    font-size: 2rem;
    color: #B99267;
    font-weight: 700;
}

.price-display small {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

/* Extra Checkboxes */
.extra-checkbox {
    cursor: pointer;
    accent-color: #B99267;
}

.form-check {
    padding: 0;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.3rem;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: #B99267;
    border-color: #B99267;
}

.form-check-label {
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
}

/* Guest Details Form */
#guestDetailsForm {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 146, 103, 0.3);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled,
.btn-primary.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-outline-secondary {
    border-color: #999;
    color: #999;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #999;
    border-color: #999;
    color: white;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* Booking Summary */
.booking-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.booking-summary h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #5a5a5a;
}

.summary-item strong {
    color: #2c3e50;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #B99267;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    border-left: 4px solid;
}

.alert-info {
    background: #e3f2fd;
    border-left-color: #2196f3;
    color: #1565c0;
}

.alert-success {
    background: #e8f5e9;
    border-left-color: #4caf50;
    color: #2e7d32;
}

.alert-warning {
    background: #fff3e0;
    border-left-color: #ff9800;
    color: #e65100;
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.is-valid {
    border-color: #28a745 !important;
}

.valid-feedback {
    display: block;
    color: #28a745;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Date Picker Styles */
.date-picker {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.date-picker:focus {
    border-color: #B99267;
    box-shadow: 0 0 0 3px rgba(185, 146, 103, 0.1);
}

/* Litepicker Customization */
.litepicker {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.litepicker .day {
    border-radius: 4px;
    transition: all 0.3s ease;
}

.litepicker .day:hover {
    background-color: #f0e6d8;
}

.litepicker .day.is-in-range {
    background-color: #f0e6d8;
}

.litepicker .day.is-start-date,
.litepicker .day.is-end-date {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    color: white;
}

.litepicker .day.is-start-date:hover,
.litepicker .day.is-end-date:hover {
    background: linear-gradient(135deg, #a67c55 0%, #c59462 100%);
}

/* Booking Page Responsive */
@media (max-width: 992px) {
    .booking-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-progress {
        flex-wrap: wrap;
    }

    .progress-step {
        flex-basis: 50%;
        margin-bottom: 1rem;
    }

    .sticky-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        height: 60vh;
        min-height: 400px;
    }

    .booking-hero .hero-content h1 {
        font-size: 2rem;
    }

    .booking-progress {
        flex-direction: column;
        padding: 1rem;
    }

    .booking-progress::before {
        display: none;
    }

    .progress-step {
        margin-bottom: 1rem;
        padding: 0;
    }

    .card-body {
        padding: 1.5rem;
    }

    .room-card .row {
        flex-direction: column;
    }

    .room-image {
        height: 200px;
    }

    .price-display {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .booking-hero {
        height: 50vh;
        min-height: 300px;
    }

    .booking-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .booking-hero .hero-content p {
        font-size: 0.9rem;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .form-control,
    .form-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .price-display {
        font-size: 1.3rem;
    }
}

/* ============================================
   BLOG SLIDER STYLES
   ============================================ */
.blog-slider .slider-content {
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.blog-slider .slider-content:hover {
    transform: translateY(-5px);
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    padding: 1.5rem;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    margin-bottom: 10px;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-date {
    color: #5c5f5f;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .read-more {
    color: #B99267;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card .read-more:hover {
    color: #D4A574;
    text-decoration: underline;
}

/* ============================================
   NEW CONTACT PAGE STYLES
   ============================================ */
.contact-section {
    background-color: #f8f5f0;
}

.contact-wrapper {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info-box {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    color: white;
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-item .icon svg {
    stroke: white;
}

.info-item .info-text a,
.info-item .info-text p {
    color: white;
    text-decoration: none;
    margin: 0;
}

.contact-form-box {
    padding: 40px;
}

.map-section {
    padding: 0;
}

/* ============================================
   MEETINGS & EVENTS PAGE STYLES
   ============================================ */

/* Meetings & Events Hero */
.meetings-events-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.meetings-events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.meetings-events-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.meetings-events-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out;
}

.meetings-events-hero .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Event Categories */
.event-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
}

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B99267, #D4A574);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F0E6D8 0%, #FAF6F0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.category-card:hover .icon {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover .icon svg {
    stroke: white;
}

.category-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.category-card p {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Featured Events */
.featured-events {
    padding: 4rem 0;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.event-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-content p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.event-capacity,
.event-price {
    color: #B99267;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Event Details */
.event-details {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #faf8f5 100%);
}

.event-gallery {
    margin-bottom: 3rem;
}

.event-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.event-info h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item .icon svg {
    stroke: white;
}

.info-text h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-text p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, #B99267 0%, #D4A574 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.booking-cta h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Corporate Events Specific */
.corporate-events .hero-content h1 {
    font-size: 3.5rem;
}

.corporate-events .category-card {
    border-left: 4px solid #B99267;
}

.corporate-events .event-card {
    border-left: 4px solid #B99267;
}

/* Meetings & Events Responsive */
@media (max-width: 992px) {
    .meetings-events-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .meetings-events-hero {
        height: 60vh;
        min-height: 400px;
    }

    .meetings-events-hero .hero-content h1 {
        font-size: 2rem;
    }

    .event-gallery img {
        height: 200px;
    }

    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .meetings-events-hero {
        height: 50vh;
        min-height: 300px;
    }

    .meetings-events-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .meetings-events-hero .hero-content p {
        font-size: 0.9rem;
    }

    .category-card,
    .event-card,
    .event-info {
        margin: 1rem 0;
    }

    .event-content {
        padding: 1rem;
    }

    .booking-cta {
        padding: 2rem 1rem;
    }
}
/* ============================================
   BOOKING FLOW STYLES (Extracted from optimized-step1)
   ============================================ */
:root {
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.6);
    --primary-gold: #b48c58;
    --deep-green: #006951;
    --text-dark: #2c3e50;
}

.hero-booking-badge {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.booking-progress-simple .step {
    opacity: 0.6;
    transition: all 0.4s ease;
    position: relative;
}
.booking-progress-simple .step.active {
    opacity: 1;
    transform: translateY(-2px);
}
.booking-progress-simple .step-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}
.booking-progress-simple .step.active .step-icon {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(180, 140, 88, 0.6);
}
.booking-progress-simple .step span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.booking-progress-simple .step-line {
    height: 2px;
    background: rgba(255,255,255,0.2);
    flex-grow: 1;
    max-width: 80px;
    margin: 0 15px 25px; 
}

.premium-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.section-heading-premium {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.section-subheading {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.premium-input-group {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.premium-input-group:focus-within {
    background: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(180, 140, 88, 0.15);
}
.premium-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95a5a6;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.premium-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0;
    height: auto;
}
.premium-input:focus {
    box-shadow: none;
    outline: none;
}
.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    opacity: 0.5;
}

.room-card-horizontal {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 30px;
}
.room-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.room-img-wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card-horizontal:hover .room-img-wrapper img {
    transform: scale(1.05);
}
.room-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.room-price-badge {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}
.room-price-badge small {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 400;
}

.summary-card-final {
    background: #c49a6c;
    color: white;
    border-radius: 15px;
    padding: 30px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-label {
    color: rgba(255,255,255,0.7);
}
.summary-value {
    font-weight: 600;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.flatpickr-input[readonly] {
    background-color: transparent !important;
    opacity: 1 !important;
    cursor: pointer;
}
.premium-input::placeholder {
    color: #2c3e50 !important;
    opacity: 1;
}
.summary-extra-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: rgba(255,255,255,0.8);
}
