/* =========================================================
   REGALIA HOTELS & RESORTS — Premium Luxury Website
   Color: Navy #0D1B2A | Gold #C8A951 | Off-White #F8F5F0
   Fonts: Playfair Display (serif) + Poppins (sans-serif)
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --navy:         #0D1B2A;
    --navy-mid:     #162032;
    --navy-light:   #1E2D40;
    --gold:         #C8A951;
    --gold-light:   #DCC07A;
    --gold-dark:    #A68830;
    --gold-gradient: linear-gradient(135deg, #C8A951 0%, #E5D08A 50%, #C8A951 100%);
    --white:        #FFFFFF;
    --off-white:    #F8F5F0;
    --cream:        #F2EDE6;
    --gray-light:   #E8E3DC;
    --gray:         #9A9090;
    --text-dark:    #2A2A2A;
    --text-medium:  #555555;
    --text-light:   #888888;

    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Poppins', Arial, sans-serif;

    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition:   0.4s var(--ease);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.8s var(--ease);

    --shadow-sm:    0 4px 16px rgba(0,0,0,0.08);
    --shadow:       0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg:    0 24px 64px rgba(0,0,0,0.18);
    --shadow-gold:  0 12px 40px rgba(200,169,81,0.30);

    --radius:       4px;
    --radius-md:    8px;
    --radius-lg:    16px;
    --radius-xl:    24px;

    --section-pad:  100px 0;
    --container-w:  1280px;
}

/* ================== RESET & BASE ================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

input, textarea, select {
    font-family: var(--font-sans);
}

/* ================== UTILITIES ================== */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-medium);
    max-width: 560px;
    line-height: 1.8;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.75);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-tag {
    padding-left: 0;
}

.section-header.center .section-tag::before {
    display: none;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.gold-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px 0 24px;
}

.center .gold-line {
    display: block;
    margin: 16px auto 24px;
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.12);
    transition: 0.5s ease;
    skewX(-15deg);
}

.btn:hover::before { left: 150%; }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(200,169,81,0.4);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 12px;
}

.btn i { font-size: 14px; }

/* ================== NAVBAR ================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: var(--navy);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo .logo-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
}

.nav-phone i { font-size: 14px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 100vw);
    height: 100vh;
    background: var(--navy);
    z-index: 999;
    padding: 90px 40px 40px;
    transition: right 0.45s var(--ease);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.mobile-menu .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-overlay.open {
    opacity: 1;
}

/* ================== HERO SLIDER ================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: -8%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,27,42,0.82) 0%,
        rgba(13,27,42,0.50) 60%,
        rgba(13,27,42,0.20) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 80px;
    max-width: 820px;
}

.slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}

.hero-slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease;
}

.slide-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-desc {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.80);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 38px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.7s ease, transform 0.7s 0.7s ease;
}

.hero-slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.9s ease, transform 0.7s 0.9s ease;
}

.hero-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Controls */
.hero-nav {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-btn {
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    writing-mode: vertical-rl;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ================== STATS BANNER ================== */
.stats-banner {
    background: var(--navy);
    padding: 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
    padding: 44px 30px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
    background: rgba(200,169,81,0.06);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number sup {
    font-size: 22px;
    vertical-align: super;
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ================== ABOUT SECTION ================== */
.about-section {
    padding: var(--section-pad);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--gold-gradient);
    color: var(--navy);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-badge .badge-number {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge .badge-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-content .section-subtitle {
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature .feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,169,81,0.10);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature:hover .feat-icon {
    background: var(--gold);
    color: var(--navy);
}

.about-feature .feat-text h4 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-feature .feat-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ================== HOTELS SECTION ================== */
.hotels-section {
    padding: var(--section-pad);
    background: var(--off-white);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hotel-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hotel-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.08);
}

.hotel-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold-gradient);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.hotel-badge.choice {
    background: var(--navy);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.hotel-stars {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 3px;
}

.hotel-stars i {
    color: var(--gold);
    font-size: 12px;
}

.hotel-card-body {
    padding: 26px 28px 28px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.hotel-location i { font-size: 13px; }

.hotel-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hotel-card-desc {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.hotel-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--off-white);
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-tag i {
    color: var(--gold);
    font-size: 11px;
}

.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--gray-light);
}

.hotel-price {
    display: flex;
    flex-direction: column;
}

.hotel-price .price-from {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.hotel-price .price-num {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.hotel-price .price-night {
    font-size: 11px;
    color: var(--text-light);
}

/* ================== SERVICES SECTION ================== */
.services-section {
    padding: var(--section-pad);
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 360px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.40) 60%, transparent 100%);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0.70) 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px;
    transition: var(--transition);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 14px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.service-card:hover .service-desc {
    max-height: 80px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

/* ================== WHY CHOOSE US ================== */
.why-section {
    padding: var(--section-pad);
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 22px;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
}

.why-item:hover {
    background: var(--off-white);
    border-color: var(--gray-light);
    transform: translateX(8px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,169,81,0.10);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: var(--gold);
    color: var(--navy);
}

.why-text h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-text p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.why-image-wrap {
    position: relative;
}

.why-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.why-award {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.why-award .award-icon {
    font-size: 36px;
    color: var(--gold);
}

.why-award .award-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 2px;
}

.why-award .award-text span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ================== GALLERY SECTION ================== */
.gallery-section {
    padding: var(--section-pad);
    background: var(--off-white);
}

.gallery-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid var(--gray-light);
    border-radius: 30px;
    color: var(--text-medium);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.gallery-item.tall img {
    height: 100%;
}

.gallery-item.wide img {
    height: 220px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 30px;
    color: var(--white);
}

.gallery-overlay span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-choice-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-gradient);
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* ================== LIGHTBOX ================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    transform: scale(0.88);
    transition: transform 0.4s var(--ease);
}

.lightbox.open .lightbox-inner {
    transform: scale(1);
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 26px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.lightbox-caption {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-align: center;
    padding: 0 40px;
}

/* ================== TESTIMONIALS ================== */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '"';
    position: absolute;
    right: -20px;
    top: -60px;
    font-family: var(--font-serif);
    font-size: 400px;
    color: rgba(200,169,81,0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.7s var(--ease);
}

.testimonial-item {
    min-width: 100%;
    padding: 0 60px;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 26px);
    font-style: italic;
    color: rgba(255,255,255,0.90);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 36px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: var(--gold);
    line-height: 0;
    vertical-align: -40px;
    margin-right: 8px;
    font-style: normal;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author-info strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-info span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* ================== BLOG SECTION ================== */
.blog-section {
    padding: var(--section-pad);
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.blog-body {
    padding: 26px 28px 28px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-meta span i {
    color: var(--gold);
    font-size: 11px;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--gold-dark);
}

.blog-excerpt {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
    color: var(--navy);
}

.blog-link i { font-size: 12px; }

/* ================== BOOKING CTA ================== */
.booking-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(13,27,42,0.88), rgba(13,27,42,0.88)),
                url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    text-align: center;
}

.booking-cta .section-title {
    font-size: clamp(32px, 5vw, 58px);
    margin-bottom: 18px;
}

.booking-cta .section-subtitle {
    max-width: 600px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.cta-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.cta-divider span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.trust-item i {
    color: var(--gold);
    font-size: 18px;
}

/* ================== FOOTER ================== */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-newsletter input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 10px;
    outline: none;
    transition: var(--transition);
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter input:focus {
    border-color: var(--gold);
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--gold-gradient);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom p span {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ================== FLOATING BUTTONS ================== */
.call-float {
    position: fixed;
    bottom: 164px;
    right: 26px;
    width: 54px;
    height: 54px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(176,141,87,0.45);
    z-index: 900;
    transition: var(--transition);
    animation: floatPulse 2.8s infinite;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(176,141,87,0.6);
    color: var(--navy);
    background: #c9aa6a;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 900;
    transition: var(--transition);
    animation: floatPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 26px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    z-index: 900;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ================== PAGE HERO (INNER PAGES) ================== */
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--navy);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero .page-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-title span {
    color: var(--gold);
    font-style: italic;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb i { font-size: 10px; }

/* ================== HOTELS PAGE ================== */
.hotels-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hotel-full-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 380px 1fr;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.hotel-full-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.hotel-full-img {
    position: relative;
    overflow: hidden;
}

.hotel-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.hotel-full-card:hover .hotel-full-img img {
    transform: scale(1.06);
}

.hotel-full-body {
    padding: 34px 32px;
}

.hotel-full-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hotel-full-rating .stars {
    display: flex;
    gap: 3px;
}

.hotel-full-rating .stars i {
    color: var(--gold);
    font-size: 13px;
}

.hotel-full-rating .score {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.hotel-full-rating .reviews {
    font-size: 12px;
    color: var(--text-light);
}

.hotel-full-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.hotel-full-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 14px;
}

.hotel-full-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hotel-full-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.hf-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-medium);
}

.hf-feat i {
    color: var(--gold);
    font-size: 13px;
}

.hotel-full-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--gray-light);
}

/* ================== SERVICES PAGE ================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-detail-img {
    height: 260px;
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.service-detail-card:hover .service-detail-img img {
    transform: scale(1.06);
}

.service-detail-body {
    padding: 30px;
}

.service-detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,169,81,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--gold);
    color: var(--navy);
}

.service-detail-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-detail-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-medium);
}

.service-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================== ABOUT PAGE ================== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding: 0 0 46px 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 4px;
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200,169,81,0.15);
}

.timeline-year {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Team cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 3px solid var(--gray-light);
    transition: var(--transition);
}

.team-card:hover .team-img {
    border-color: var(--gold);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.award-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.award-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.award-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.award-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.award-year {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold);
}

/* ================== CONTACT PAGE ================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-hotel-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-hotel-item {
    padding: 22px 24px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.contact-hotel-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-hotel-item h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-hotel-item p {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.contact-hotel-item p i {
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-wrap p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ================== BOOKING PAGE ================== */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition);
}

.booking-step.active .step-icon {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.booking-step.done .step-icon {
    border-color: var(--gold);
    background: rgba(200,169,81,0.1);
    color: var(--gold);
}

.step-line {
    width: 100px;
    height: 2px;
    background: var(--gray-light);
    margin: 0 -1px;
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto;
}

.booking-form-card h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.booking-form-card > p {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 36px;
}

/* ================== SCROLL ANIMATIONS ================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ================== RESPONSIVE ================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
    }
    .footer-brand { grid-column: 1 / -1; }

    .hotel-full-card {
        grid-template-columns: 300px 1fr;
    }
    .hotels-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    :root { --section-pad: 80px 0; }

    .hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }

    .about-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-accent { display: none; }
    .about-badge { left: 20px; }

    .nav-links { display: none; }
    .nav-phone { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .mobile-overlay { display: block; }

    .slide-content { padding: 0 50px; }
    .hero-scroll { display: none; }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px 0; }

    .container { padding: 0 20px; }

    .hotels-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr 1fr; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item img, .gallery-item.tall img, .gallery-item.wide img { height: 200px; }

    .hotel-full-card {
        grid-template-columns: 1fr;
    }
    .hotel-full-img { height: 240px; }
    .hotel-full-features { grid-template-columns: repeat(2, 1fr); }
    .hotels-page-grid { grid-template-columns: 1fr; }

    .service-detail-grid { grid-template-columns: 1fr; }

    .booking-form-card { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .contact-form-wrap { padding: 30px 20px; }

    .slide-content { padding: 0 24px; }
    .slide-title { font-size: 34px; }

    .slide-actions { flex-direction: column; align-items: flex-start; }

    .hero-nav { right: 20px; bottom: 40px; }
    .hero-dots { bottom: 50px; }

    .cta-trust { gap: 20px; }
    .cta-actions { flex-direction: column; align-items: center; }

    .about-features { grid-template-columns: 1fr; }

    .testimonial-item { padding: 0 20px; }
    .testimonial-text { font-size: 17px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }

    .page-hero { height: 360px; }
    .page-hero-title { font-size: 36px; }
}

@media (max-width: 480px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 30px 16px; }
    .stat-number { font-size: 34px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .hero-btn, .hero-nav { display: none; }

    .nav-inner { padding: 0 20px; }
}
