/* ============================================
   INNHOUSE - Modern Hotel Website
   Black & White Theme
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off-black: #111111;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --gray: #666666;
    --light-gray: #999999;
    --lighter-gray: #e8e8e8;
    --off-white: #f5f5f5;
    --near-white: #fafafa;
    --whatsapp: #25D366;
    --accent: #c8a45a;
    --accent-light: #e0c78a;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 24px 56px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--black);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- UTILITY ---------- */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 40px 0;
}

.bg-white { background: var(--white); }
.bg-light { background: var(--near-white); }
.bg-black { background: var(--black); color: var(--white); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid var(--lighter-gray);
    padding: 7px 18px;
    margin-bottom: 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.section-tag:hover {
    border-color: var(--black);
    color: var(--black);
    background: var(--black);
    color: var(--white);
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-footer-cta {
    text-align: center;
    margin-top: 48px;
}

.text-outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
    font-weight: 800;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 15px 34px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary:hover {
    background: var(--off-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar.scrolled .nav-links a {
    color: var(--black);
}

.navbar.scrolled .logo {
    color: var(--black);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--white);
    transition: var(--transition);
}

.logo-light {
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a::after {
    background: var(--black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--black);
}

/* ---------- NAV TOGGLE (Mobile) ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HOME PAGE
   ============================================ */

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/1639464959.webp') center/cover no-repeat;
    opacity: 0.5;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 9px 22px;
    margin-bottom: 28px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- FEATURED / ROOMS GRID ---------- */
.featured { border-bottom: 1px solid var(--lighter-gray); }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.room-card {
    background: var(--white);
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.room-card-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.room-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
    z-index: 1;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.1);
}

.room-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.room-card-body {
    padding: 28px;
}

.room-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.room-card-body p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lighter-gray);
}

.room-card-amenities span {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-card-amenities span i {
    font-size: 0.7rem;
    color: var(--black);
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-price .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.room-price .price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

.room-price .per-night {
    font-size: 0.75rem;
    color: var(--gray);
}

.btn-book {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 13px 26px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ---------- ABOUT PREVIEW ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
    z-index: 0;
    pointer-events: none;
}

.about-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 28px 18px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
}

.stat:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { border-bottom: 1px solid var(--lighter-gray); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 44px 34px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 28px;
    font-size: 5rem;
    font-weight: 800;
    color: var(--off-white);
    line-height: 1;
    pointer-events: none;
    font-family: 'Georgia', serif;
}

.testimonial-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--black);
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--off-black) 0%, #1a1a1a 40%, var(--black) 100%);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-content .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
}

.page-header-rooms::before {
    background-image: url('image/1639467061.webp');
}

.page-header-about::before {
    background-image: url('image/1639467065.webp');
}

.page-header-amenities::before {
    background-image: url('image/1639467068.webp');
}

.page-header-contact::before {
    background-image: url('image/1639467070.webp');
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.page-header-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   ROOMS PAGE
   ============================================ */

/* ---------- ROOM FILTER ---------- */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 26px;
    border: 1px solid var(--lighter-gray);
    border-radius: 50px;
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ---------- PRICING TABLE ---------- */
.pricing { border-top: 1px solid var(--lighter-gray); }

.pricing-table {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table thead {
    background: var(--black);
    color: var(--white);
}

.pricing-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-table td {
    padding: 18px 24px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--lighter-gray);
}

.pricing-table tbody tr:hover {
    background: var(--off-white);
}

.pricing-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
}

.pricing-book:hover {
    gap: 10px;
    color: var(--gray);
    border-color: var(--gray);
}

/* ---------- POLICIES ---------- */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.policy-card {
    padding: 40px 30px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.policy-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.policy-card i {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 16px;
}

.policy-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.policy-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* ---------- MISSION ---------- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 20px;
}

.mission-text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ---------- VALUES ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 44px 30px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.value-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--black);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--black);
    color: var(--white);
}

.value-icon i {
    font-size: 1.3rem;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.team-image {
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 24px 28px;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    background: var(--black);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-item .stat-number {
    color: var(--white);
    font-size: 2.5rem;
}

.stats-item .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   AMENITIES PAGE
   ============================================ */

/* ---------- AMENITIES DETAIL ---------- */
.amenities-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.amenity-detail-card {
    display: flex;
    gap: 32px;
    padding: 40px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
    align-items: flex-start;
    background: var(--white);
}

.amenity-detail-card:hover {
    border-color: transparent;
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.amenity-detail-icon {
    width: 72px;
    height: 72px;
    border: 1px solid var(--black);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.amenity-detail-card:hover .amenity-detail-icon {
    background: var(--black);
    color: var(--white);
}

.amenity-detail-icon i {
    font-size: 1.5rem;
}

.amenity-detail-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.amenity-detail-content p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.amenity-detail-meta {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- EXTRA SERVICES ---------- */
.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.extra-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
}

.extra-service-item:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.extra-service-item i {
    font-size: 1.6rem;
    color: var(--black);
    margin-top: 4px;
    width: 32px;
    flex-shrink: 0;
}

.extra-service-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.extra-service-item p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-sm);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-lg img {
    height: 100%;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img {
    height: 220px;
}

.gallery-item:nth-child(4) img,
.gallery-item:nth-child(5) img {
    height: 220px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* ---------- CONTACT DETAIL ---------- */
.contact-info-detail h2 {
    margin-bottom: 16px;
}

.contact-info-detail > p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 18px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.contact-item-icon i {
    font-size: 1rem;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-link {
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
}

.contact-link:hover {
    gap: 10px;
    color: var(--gray);
    border-color: var(--gray);
}

.contact-social h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    width: 46px;
    height: 46px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.contact-social-links a:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper {
    background: var(--near-white);
    padding: 48px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-md);
}

.contact-form-container h3 {
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 15px 18px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
    outline: none;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-gray);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--black);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* ---------- DARK CONTACT (home page style) ---------- */
.contact.dark {
    background: var(--black);
    color: var(--white);
}

.contact.dark .section-tag {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact.dark .section-tag:hover {
    border-color: var(--white);
    color: var(--white);
}

.contact.dark .contact-form input,
.contact.dark .contact-form textarea {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.contact.dark .contact-form input::placeholder,
.contact.dark .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact.dark .contact-form input:focus,
.contact.dark .contact-form textarea:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- MAP ---------- */
.map-container iframe {
    display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--black);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    color: var(--black);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question i {
    transition: var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: var(--white);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius-md);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--black);
    background: var(--off-white);
}

.modal-header {
    padding: 32px 32px 0;
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.modal-body {
    padding: 24px 32px 32px;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 13px 16px;
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    color: var(--black);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: var(--near-white);
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.total-amount {
    font-size: 1.3rem;
    font-weight: 800;
}

.modal-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
    border-radius: var(--radius-sm);
}

.modal-btn:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--off-black);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--medium-gray);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: var(--light-gray);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.newsletter-form:focus-within {
    border-color: var(--white);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 13px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form button {
    background: var(--white);
    border: none;
    padding: 13px 22px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--black);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background: var(--lighter-gray);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--white) !important;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-frame img {
        height: 320px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-image img {
        height: 280px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .extra-services-grid {
        grid-template-columns: 1fr;
    }

    .amenity-detail-card {
        flex-direction: column;
        padding: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img,
    .gallery-item:nth-child(5) img {
        height: 180px;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal {
        margin: 20px;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img,
    .gallery-item:nth-child(5) img {
        height: 240px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-header,
    .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-body {
        padding-bottom: 24px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.inn-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 90vw;
    text-align: center;
}

.inn-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.inn-toast--error {
    background: #c0392b;
    color: var(--white);
}
