/* ======================================================
   HOMESTAYS LUDHIANA – Landing Page Styles
   Color Palette & Fonts preserved from original theme.
   ====================================================== */

/* ----- CSS Variables (Same Theme) ----- */
:root {
    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --color-bronze: #fe4a49;
    --gradient-bronze: linear-gradient(135deg, #fe4a49, #dc4a4a);
    --gradient-bronze-hover: linear-gradient(135deg, #dc4a4a, #fe4a49);
    --color-bronze-dark: #dc4a4a;
    --color-dark: #292929;
    --color-darker: #111111;
    --color-grey-light: #f9f9f9;
    --color-grey: #888888;
    --color-border: #eeeeee;
    --max-width: 1170px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --color-black: #000000;
}

/* ----- CSS Reset & Global ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--color-grey);
    font-size: 15px;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--color-dark);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 40px 0;
}

.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 50px;
}

.full-width {
    width: 100%;
}

/* ----- Section Headers ----- */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-weight: 500;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.rooms-section .section-title,
.rooms-section .section-subtitle {
    color: var(--color-black) !important;
}

.section-title.white {
    color: white;
}

.section-desc {
    font-size: 16px;
    color: var(--color-grey);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.rooms-section .section-title,
.rooms-section .section-subtitle,
.rooms-section .section-desc {
    color: var(--color-black) !important;
}


/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
}

.btn-primary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

.btn-outline {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.btn-outline-bronze {
    border-color: var(--color-bronze);
    color: var(--color-bronze);
    background-color: transparent;
}

.btn-outline-bronze:hover {
    background: var(--gradient-bronze);
    color: #fff;
}

.btn-bronze {
    background: var(--gradient-bronze);
    color: #fff;
    border: none;
}

.btn-bronze:hover {
    background: var(--gradient-bronze-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px #fe494944;
}

.btn-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.btn-dark:hover {
    background-color: #000;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebd5a;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 16px;
}

/* ----- Top Bar ----- */
.top-bar {
    background-color: var(--color-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 40px;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* ----- Header ----- */
.site-header {
    background-color: #888888;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.site-header .btn-outline {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

.site-header .btn-outline:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.site-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    margin-right: 30px;
}

.main-nav li a {
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    position: relative;
}

.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-bronze);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
    width: 60%;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: var(--color-bronze-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-dark);
}

.mobile-nav {
    display: none;
    padding: 20px;
    background: #fff;
    border-top: 1px solid var(--color-border);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav li a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
}

/* ================================
   1. HERO SECTION 
   ================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    display: none;
    /* Replaced by slider */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.75) 0%, rgba(41, 41, 41, 0.5) 50%, rgba(17, 17, 17, 0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 233, 233, 0.2);
    border: 1px solid rgba(216, 215, 215, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--color-bronze);
    font-weight: 500;
}

.hero-badge i {
    color: var(--color-bronze);
}

.hero-title {
    font-size: 58px;
    font-family: var(--heading-font);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-text-group {
    display: none;
    animation: heroTextReveal 1.2s var(--ease-luxury) forwards;
}

.hero-text-group.active {
    display: block;
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i {
    color: var(--color-bronze);
    font-size: 14px;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
}

.hero-form-card h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
}

.quick-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quick-inquiry-form input,
.quick-inquiry-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    font-family: var(--primary-font);
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.quick-inquiry-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-inquiry-form input:focus,
.quick-inquiry-form select:focus {
    border-color: var(--color-bronze);
}

.quick-inquiry-form select {
    color: rgba(255, 255, 255, 0.5);
}

.quick-inquiry-form select option {
    background: var(--color-dark);
    color: white;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ================================
   2. ROOMS SECTION
   ================================ */
.rooms-section {
    background-color: #fcfaf5;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.room-card-new {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.room-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    position: relative;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-card-new:hover .room-card-img img {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.room-price-badge .from {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.room-price-badge .amount {
    display: block;
    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.1;
    color: var(--color-bronze);
}

.room-price-badge .per {
    font-size: 11px;
    opacity: 0.7;
}

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-bronze);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
}

.room-tag.premium {
    background: linear-gradient(135deg, #292929, #444);
}

/* Room main image fade transition */
.room-main-img {
    transition: opacity 0.25s ease;
}

/* Room Thumbnail Gallery */
.room-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 15px;
    background: #f5f5f5;
}

.room-thumb {
    flex: 1;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.room-thumb:hover {
    opacity: 0.9;
}

.room-thumb.active {
    border-color: var(--color-bronze);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-card-body {
    padding: 30px;
}

.room-card-body h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--color-black) !important;
}

.room-card-body .gold-shimmer-text {
    -webkit-text-fill-color: var(--color-black) !important;
    background: none !important;
}


.room-size {
    font-size: 13px;
    color: var(--color-grey);
    margin-bottom: 20px;
}

.room-size i {
    margin-right: 6px;
    color: var(--color-bronze);
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.room-features span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features i {
    color: var(--color-bronze);
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.room-card-footer {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.room-card-footer .btn {
    width: 100%;
    text-align: center;
}

/* ================================
   3. AMENITIES SECTION
   ================================ */
.amenities-section {
    background: var(--color-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 208, 70, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(221, 221, 219, 0.1);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(221, 221, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--gradient-bronze);
}

.amenity-icon i {
    font-size: 26px;
    color: var(--color-bronze);
    transition: color 0.3s ease;
}

.amenity-card:hover .amenity-icon i {
    color: white;
}

.amenity-card h4 {
    color: white !important;
    font-size: 19px;
    margin-bottom: 12px;
    font-family: var(--primary-font);
    font-weight: 700;
    letter-spacing: 0.5px;
}


.amenity-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
}


/* ================================
   4. GALLERY SECTION
   ================================ */
.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    height: 250px;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* ================================
   5. WHY CHOOSE US
   ================================ */
.why-choose-section {
    background: #fcfaf5;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-img {
    position: relative;
}

.why-choose-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--gradient-bronze);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px #fe4a492e;
}

.exp-number {
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 1.3;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-feature-item i {
    color: var(--color-bronze);
    font-size: 18px;
    flex-shrink: 0;
}

.why-feature-item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* ================================
   AWARDS & ACHIEVEMENTS
   ================================ */
.awards-section {
    background: #fff;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.awards-img {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
}

.awards-img img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.awards-img:hover img {
    transform: scale(1.0);
}



/* ================================
   6. LOCATION SECTION
   ================================ */
.location-section-new {
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

.location-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #fcfaf5;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.location-info-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(251, 208, 70, 0.3);
}

.loc-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-icon i {
    color: white;
    font-size: 16px;
}

.location-info-card h4 {
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.location-nearby {
    padding: 20px;
    background: var(--color-dark);
    border-radius: var(--radius);
    margin-top: 5px;
}

.location-nearby h4 {
    color: white;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.nearby-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nearby-items span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nearby-items i {
    color: var(--color-bronze);
    width: 16px;
    text-align: center;
}

/* ================================
   7. INQUIRY SECTION
   ================================ */
.inquiry-section {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.inquiry-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.inquiry-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.88) 0%, rgba(41, 41, 41, 0.85) 100%);
}

.inquiry-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inquiry-left {
    color: white;
}

.inquiry-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    margin-top: 10px;
}

.inquiry-trust-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.trust-badge i {
    font-size: 22px;
    color: var(--color-bronze);
}

.trust-badge span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    font-weight: 500;
}

.inquiry-reviews {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    transition: all 0.3s ease;
}

.inquiry-reviews:hover {
    transform: translateX(8px);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.review-stars i {
    color: var(--color-bronze);
    font-size: 16px;
    transition: all 0.3s ease;
}

.inquiry-reviews:hover .review-stars i {
    transform: scale(1.15);
    text-shadow: 0 0 10px var(--color-bronze);
}

.review-stars span {
    margin-left: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.inquiry-reviews:hover .review-stars span {
    color: var(--color-bronze);
}

.inquiry-reviews p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.inquiry-reviews:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Inquiry Form Card */
.inquiry-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: var(--shadow-lg);
}

.inquiry-form-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-dark);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: #fdfdfd;
    border-radius: var(--radius);
    font-family: var(--primary-font);
    font-size: 14px;
    outline: none;
    color: var(--color-dark);
    transition: border-color 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--color-bronze);
    box-shadow: 0 0 0 3px rgba(251, 208, 70, 0.1);
}

.inquiry-form button {
    border: none;
    margin-top: 5px;
    padding: 16px;
    font-size: 14px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-grey);
    margin-top: 5px;
}

.form-note i {
    color: var(--color-bronze);
    margin-right: 5px;
}

/* ================================
   CTA BANNER
   ================================ */
.cta-banner {
    background: var(--gradient-bronze);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-banner .gold-shimmer-text {
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn-bronze {
    background: var(--color-dark);
    color: white;
}

.cta-buttons .btn-bronze:hover {
    background: #000;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: var(--color-darker);
    color: white;
    padding-top: 80px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col-new h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #888;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-bronze);
    padding-left: 5px;
}

.footer-contact-items {
    margin-top: 15px;
}

.footer-contact-items p {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-items i {
    color: var(--color-bronze);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-bronze);
    border-color: var(--color-bronze);
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: white;
    outline: none;
    flex: 1;
    font-family: var(--primary-font);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 12px;
}

.payment-methods span {
    font-size: 24px;
    color: #555;
    transition: color 0.3s ease;
}

.payment-methods span:hover {
    color: var(--color-bronze);
}

/* ================================
   FLOATING ACTION BUTTONS
   ================================ */
.floating-actions {
    position: fixed;
    bottom: 100px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn i {
    color: white;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-enquiry {
    background: var(--gradient-bronze);
}

.float-call {
    background-color: #3f51b5;
}

.float-whatsapp {
    background-color: #25d366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Sticky Book Bar */
.sticky-book-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-book-bar.visible {
    transform: translateY(0);
}

.sticky-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    background: var(--gradient-bronze);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
}

.sticky-book-btn i {
    margin-right: 8px;
}

/* ================================
   MODAL STYLES
   ================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--color-grey);
}

.close-btn:hover {
    color: var(--color-dark);
}

.modal-box h2 {
    margin-bottom: 25px;
    font-size: 28px;
    text-align: center;
}

/* Enquiry form in modal & footer */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: #fdfdfd;
    border-radius: var(--radius);
    font-family: var(--primary-font);
    font-size: 14px;
    outline: none;
    color: var(--color-dark);
    transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--color-bronze);
    box-shadow: 0 0 0 3px rgba(251, 208, 70, 0.1);
}

.enquiry-form button {
    width: 100%;
    margin-top: 5px;
    border: none;
    font-size: 14px;
    padding: 16px;
}

/* Intl Tel Input */
.iti {
    width: 100%;
}

.iti__country-list {
    color: var(--color-dark);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays via nth-child */
.amenity-card:nth-child(2) {
    transition-delay: 0.08s;
}

.amenity-card:nth-child(3) {
    transition-delay: 0.16s;
}

.amenity-card:nth-child(4) {
    transition-delay: 0.24s;
}

.amenity-card:nth-child(5) {
    transition-delay: 0.32s;
}

.amenity-card:nth-child(6) {
    transition-delay: 0.4s;
}

.amenity-card:nth-child(7) {
    transition-delay: 0.48s;
}

.amenity-card:nth-child(8) {
    transition-delay: 0.56s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.06s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.12s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.18s;
}

.gallery-item:nth-child(5) {
    transition-delay: 0.24s;
}

.gallery-item:nth-child(6) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(7) {
    transition-delay: 0.36s;
}

.gallery-item:nth-child(8) {
    transition-delay: 0.42s;
}


/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .awards-grid,
    .why-choose-grid,
    .location-grid,
    .inquiry-container {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-title {
        font-size: 44px;
    }

    .inquiry-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero .container,
    .hero-content-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .hero-cta-group .btn {
        padding: 12px 20px;
        font-size: 11px;
    }

    .hero-trust {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        font-size: 11px;
    }

    .hero-form-card {
        padding: 30px 25px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .quick-inquiry-form input,
    .quick-inquiry-form select {
        font-size: 16px;
        /* Prevents iOS auto-zoom, ensures text stays big enough */
        padding: 16px;
        /* Slightly larger touch target */
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .awards-img img {
        max-height: 350px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: -10px;
        right: -10px;
    }

    .exp-number {
        font-size: 32px;
    }

    .nearby-items {
        grid-template-columns: 1fr;
    }

    .inquiry-trust-badges {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .inquiry-section {
        padding: 70px 0;
    }

    .inquiry-form-card {
        padding: 35px 25px;
    }

    .floating-actions {
        bottom: 80px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Show sticky book bar on mobile */
    .sticky-book-bar {
        display: block;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .quick-inquiry-form input,
    .quick-inquiry-form select {
        color: white !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .quick-inquiry-form input::placeholder {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }

    .room-card-img img {
        height: 240px;
    }

    .rooms-grid {
        gap: 25px;
    }

    .amenity-card {
        padding: 25px 20px;
    }

    .hero-form-card {
        padding: 25px 20px;
    }

    .inquiry-form-card {
        padding: 30px 20px;
    }

    .trust-badge {
        padding: 12px 15px;
    }
}

/* ======================================================
   LUXURY SIGNATURE – HIGH-END MOTION DESIGN
   ====================================================== */

:root {
    --ease-luxury: cubic-bezier(0.7, 0, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --shadow-luxury: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.05);
    --gold-shimmer: linear-gradient(90deg, #d4af37 0%, #f9e29c 50%, #d4af37 100%);
}

/* 1. Perspective Entrance System (The "Signature" Look) */
.animate-ready {
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg) scale(0.95);
    transform-origin: top center;
    transition: opacity 1.4s var(--ease-luxury),
        transform 1.4s var(--ease-luxury),
        filter 1s ease;
    filter: blur(10px);
    will-change: transform, opacity, filter;
}

.animate-ready.animate-in {
    opacity: 1 !important;
    transform: translateY(0) rotateX(0) scale(1) !important;
    filter: blur(0) !important;
}

/* 2. Advanced Text Reveal (Diagonal Mask + Skew) */
.text-reveal-ready {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transform: skewX(-15deg) translateX(-30px);
    transition: clip-path 1.2s var(--ease-luxury),
        transform 1.2s var(--ease-luxury);
}

.animate-in .text-reveal-ready,
.animate-ready.animate-in .text-reveal-ready {
    clip-path: inset(0 0 0 0);
    transform: skewX(0) translateX(0);
}

/* 3. Luxury Element Effects */

/* Gold Shimmer Text */
.gold-shimmer-text {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 3s linear infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

@keyframes shimmer-text {
    to {
        background-position: 200% center;
    }
}

/* Logo Color Shimmer Text */
.logo-shimmer-text {
    background: linear-gradient(90deg, #fe4a49 0%, #ffadad 50%, #fe4a49 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 3s linear infinite;
    text-shadow: 0 0 30px rgba(254, 74, 73, 0.4);
}

/* 4. 3D Interaction System */

/* Depth Cards */
.room-card-new,
.amenity-card {
    transition: all 0.7s var(--ease-luxury) !important;
    perspective: 1000px;
}

.room-card-new:hover {
    transform: translateY(-20px) rotateY(5deg) rotateX(2deg) !important;
    box-shadow: 0 40px 80px rgba(254, 74, 73, 0.15) !important;
}

.btn-bronze:hover {
    transform: translateY(-5px) scale(1.05) !important;
    letter-spacing: 2px !important;
    box-shadow: 0 20px 40px rgba(254, 74, 73, 0.3) !important;
}

/* Parallax Inner Images */
.room-card-img {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.room-card-new:hover .room-main-img {
    transform: scale(1.15) translateY(-5px) !important;
}

/* 5. Fluid Navbar Interaction */
.main-nav li a::after {
    height: 3px !important;
    border-radius: 2px;
    background: var(--color-bronze) !important;
}

/* 6. Premium Scroll Indicator (Blinker) */
.scroll-indicator-luxury {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-bronze), transparent);
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.scroll-indicator-luxury::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: luxury-blink 2s infinite var(--ease-luxury);
}

@keyframes luxury-blink {
    0% {
        top: -100%;
    }

    50% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

/* Glassmorphism V3 */
.gallery-overlay {
    background: rgba(17, 17, 17, 0.2) !important;
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Focus Luxury */
.inquiry-form input:focus {
    background: white !important;
    box-shadow: 0 10px 40px rgba(254, 74, 73, 0.12) !important;
}

/* Luxury Accent Blink (Sophisticated, for badges/markers) */
.luxury-blink-accent {
    position: relative;
}

.luxury-blink-accent::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1.5px solid var(--color-bronze);
    border-radius: inherit;
    animation: luxury-accent-glow 3s infinite var(--ease-luxury);
    pointer-events: none;
}

@keyframes luxury-accent-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Luxury Gallery Interaction */
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    transition: transform 0.8s var(--ease-luxury) !important;
}

.gallery-item:hover {
    transform: scale(0.97) !important;
    /* Premium "Depth" press */
}

.gallery-item img {
    transition: transform 1.5s var(--ease-luxury) !important;
}

.gallery-item:hover img {
    transform: scale(1.15) !important;
}

.gallery-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.gallery-overlay::after {
    content: 'OPEN GALLERY';
    color: white;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 11px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-luxury);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item:hover .gallery-overlay::after {
    opacity: 1;
    transform: translateY(0);
}