:root {
    --primary-navy: #0F2747;
    --primary-navy-dark: #081a33;
    --primary-navy-soft: #1a3a61;
    --accent-gold: #D89B2B;
    --accent-gold-light: #eebc60;
    --accent-gold-dark: #b07d1e;
    --accent-cream: #F8F4EC;
    --accent-cream-2: #E9DDC7;
    --bg-soft: #F8F4EC;
    --text-dark: #0F2747;
    --text-muted: #546272;
    --white: #ffffff;
    --border: rgba(15, 39, 71, 0.12);
    --shadow-sm: 0 6px 16px rgba(15, 39, 71, 0.08);
    --shadow-md: 0 14px 32px rgba(15, 39, 71, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 39, 71, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.22);
    --transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.welcome-text,
.subtitle,
.footer-logo,
.footer-title {
    font-family: 'Playfair Display', serif;
}

h1,
h2,
h3 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(201, 146, 46, 0.25);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 146, 46, 0.35);
    filter: brightness(1.1);
}

.btn-gold-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-gold-outline:hover {
    background: var(--white);
    color: var(--primary-navy-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 14px;
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-navy-dark), var(--primary-navy));
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1101;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.left-info span,
.right-info span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
}

.right-info {
    display: flex;
    gap: 28px;
}

.contact-info img {
    opacity: 1;
    transition: var(--transition);
}

.top-phone {
    color: #4CAF50 !important; /* Vibrant Green for Phone */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.top-email {
    color: #FF5252 !important; /* Vibrant Red for Email */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.2);
}

.top-phone:hover, .top-email:hover {
    filter: brightness(1.2) saturate(1.5);
    transform: scale(1.05);
}

header {
    position: fixed;
    top: 44px; /* Adjust this to match top-bar height */
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-navy); /* Dark Navy Navbar as requested */
    padding: 15px 0;
    border-bottom: 1px solid rgba(216, 155, 43, 0.2); /* Gold border */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

header.scrolled {
    top: 0;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background: rgba(15, 39, 71, 0.98); /* Navy Scrolled */
    backdrop-filter: blur(15px);
}

header .nav-links a {
    color: var(--white); /* White text on navy background */
    font-weight: 600;
}

header .nav-links a:hover {
    color: var(--accent-gold);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    background: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    border: 1.5px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo img {
    height: 50px;
    padding: 4px 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

header.scrolled .nav-links a {
    color: var(--white);
}

header.scrolled .nav-links a:hover {
    color: var(--accent-gold);
}

header.scrolled .btn-gold {
    background: var(--accent-gold);
    color: var(--white);
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 14px 14px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    border-top: 3px solid var(--accent-gold);
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.dropdown-menu a:hover {
    background: var(--accent-cream);
    color: var(--primary-navy) !important;
    padding-left: 30px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
}

.mobile-menu-btn img {
    filter: brightness(0);
    opacity: 0.8;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: url('assets/images/homeimg.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 160px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 39, 71, 0.92) 0%, rgba(15, 39, 71, 0.66) 42%, rgba(15, 39, 71, 0.15) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    margin-left: 5%;
    padding-left: 0;
}

.hero-content {
    max-width: 720px;
    text-align: left;
}

.welcome-text {
    font-family: 'Great Vibes', cursive;
    font-size: 54px;
    color: var(--accent-gold-light);
    margin-bottom: 6px;
    display: block;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 {
    font-size: clamp(46px, 8vw, 94px);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.highlight {
    color: var(--accent-gold-light);
    display: block;
    margin-top: 8px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 36px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
}

.features-strip {
    padding: 26px 0 44px;
    background: linear-gradient(180deg, var(--white), var(--accent-cream));
    border-bottom: 1px solid rgba(15, 77, 58, 0.06);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 77, 58, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.feature-item img {
    width: 44px;
    height: 44px;
    transition: transform 0.35s ease;
}

.feature-item:hover img {
    transform: translateY(-3px) scale(1.03);
}

.feature-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-navy-dark);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 14px 0;
    color: var(--primary-navy-dark);
    font-weight: 700;
}

.gold-divider {
    width: 110px;
    height: 1px;
    background: rgba(216, 155, 43, 0.5); /* New Gold */
    margin: 22px auto;
    position: relative;
}

.gold-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0 12px;
    color: var(--accent-gold);
    font-size: 16px;
}

.values {
    padding: 92px 0;
    background: linear-gradient(180deg, var(--accent-cream), var(--white));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    padding: 28px 24px;
    background: var(--accent-cream);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(216, 155, 43, 0.15); /* Gold border */
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 46, 0.32);
}

.value-icon {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, rgba(15, 77, 58, 0.08), rgba(201, 146, 46, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
}

.value-card:hover .value-icon img {
    filter: brightness(0) invert(1);
}

.value-icon img {
    width: 38px;
    height: 38px;
    transition: var(--transition);
    filter: sepia(1) saturate(5) hue-rotate(-10deg) brightness(0.8); /* Gold filter for icons */
}

.value-info h4 {
    font-size: 20px;
    color: var(--primary-navy-dark);
    margin-bottom: 8px;
}

.value-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.rooms {
    padding: 94px 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.room-card {
    background: var(--accent-cream); /* Warm Cream Cards */
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(216, 155, 43, 0.15); /* Gold border */
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(201, 146, 46, 0.32);
}

.room-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

.price-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--primary-navy-dark);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.room-info {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-navy-dark);
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.room-features span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features img {
    width: 16px;
    height: 16px;
    opacity: 0.75;
}

.room-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(216, 155, 43, 0.15); /* Gold divider */
}

.price {
    font-size: 20px;
    color: var(--primary-navy-dark);
    font-weight: 800;
}

.per-night {
    font-size: 13px;
    color: var(--text-muted);
}

.view-all {
    text-align: center;
    margin-top: 42px;
}

.reviews {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--accent-cream), var(--white));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 28px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
}

.reviewer h4 {
    font-size: 16px;
    color: var(--primary-navy-dark);
}

.reviewer span {
    font-size: 13px;
    color: var(--text-muted);
}

.facilities {
    padding: 110px 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.facility-card {
    background: var(--accent-cream);
    padding: 28px 18px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(216, 155, 43, 0.15); /* Gold border */
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.facility-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 46, 0.32);
    transform: translateY(-5px);
}

.facility-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(15, 77, 58, 0.08), rgba(201, 146, 46, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
}

.facility-icon img {
    width: 30px;
    height: 30px;
    transition: var(--transition);
    filter: sepia(1) saturate(5) hue-rotate(-10deg) brightness(0.8); /* Gold filter for icons */
}

.facility-card:hover .facility-icon img {
    filter: brightness(0) invert(1);
}

.facility-info h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--primary-navy-dark);
}

.facility-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    padding: 92px 0 0;
    background: linear-gradient(180deg, var(--primary-navy-dark), #051426);
    color: var(--white);
    position: relative;
    border-top: 4px solid var(--accent-gold);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 76px;
}

.footer-col {
    padding: 0;
    border: none;
}

.footer-logo {
    font-size: 28px;
    color: var(--accent-gold-light);
    margin-bottom: 22px;
    line-height: 1.3;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(216, 155, 43, 0.3); /* Gold border */
}

.social-icon i {
    color: #fff !important;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links ul a:hover {
    color: var(--accent-gold-light);
    padding-left: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.12);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.social-icon img {
    filter: sepia(1) saturate(5) hue-rotate(-10deg) brightness(0.9); /* Gold social icons */
}

.bottom-links {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 13px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.62);
}

.bottom-links a:hover {
    color: var(--accent-gold-light);
}

.bottom-links span {
    color: rgba(255, 255, 255, 0.14);
}

.floating-btns {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.f-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: none;
}

.call-btn {
    background: linear-gradient(135deg, #007AFF, #0056B3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.f-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.f-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact {
    padding: 110px 0 110px; /* Reduced bottom padding */
    background: var(--primary-navy);
    position: relative;
}

.contact .section-header .subtitle {
    color: var(--accent-gold);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .gold-divider {
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 60px;
}

.contact-info-side {
    flex: 1;
}

.contact-card,
.form-container {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid rgba(216, 155, 43, 0.15); /* Gold border */
}

.contact-card {
    border-top: 4px solid var(--accent-gold);
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-row {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .info-icon {
    background: var(--accent-gold);
}

.contact-card:hover .info-icon img {
    filter: brightness(0) invert(1);
}

.info-icon img {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    filter: sepia(1) saturate(5) hue-rotate(-10deg) brightness(0.7); /* Gold filter */
}

.info-text .label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-text .value {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-text .value a {
    color: var(--primary-navy);
    font-weight: 600;
}

.info-text .value a:hover {
    color: var(--accent-gold);
}

.contact-form-side {
    flex: 1.5;
}

.form-desc {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 34px;
    line-height: 1.7;
    opacity: 0.8;
}

#whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
#whatsapp-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(15, 39, 71, 0.12); /* Navy border */
    border-radius: 14px;
    background: var(--accent-cream-2);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
#whatsapp-form textarea:focus {
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 146, 46, 0.08);
}

#whatsapp-form .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-stagger>* {
    opacity: 0;
}

.reveal-stagger.revealed>* {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-stagger.revealed>*:nth-child(1) {
    animation-delay: 0.1s;
}

.reveal-stagger.revealed>*:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-stagger.revealed>*:nth-child(3) {
    animation-delay: 0.3s;
}

.reveal-stagger.revealed>*:nth-child(4) {
    animation-delay: 0.4s;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('assets/images/ornament_small.png');
    background-repeat: repeat;
    background-size: 360px;
    opacity: 0.035;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 78px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        padding-left: 24px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 10px;
    }

    .right-info {
        gap: 14px;
    }

    .right-info span:last-child {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-navy); /* Navy Mobile Menu */
        flex-direction: column;
        padding: 24px 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-top: 1px solid rgba(216, 155, 43, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(216, 155, 43, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 14px;
        color: var(--white);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 18px 18px;
        display: none;
        border: none;
    }

    .dropdown-parent.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 74vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .welcome-text {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }

    .welcome-text {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .room-features,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .form-container {
        padding: 36px 22px;
    }
}

.bottom-facilities {
    padding: 60px 0 40px;
    background: var(--white);
    border-top: 1px solid rgba(216, 155, 43, 0.15); /* Gold border */
    text-align: center;
}

.bottom-facilities .section-header {
    margin-bottom: 30px;
}

.facilities-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.f-item {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.f-item:hover {
    transform: translateY(-5px);
}

.f-item img {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.f-item span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    max-width: 90px;
}

@media (max-width: 992px) {
    .facilities-horizontal {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .facilities-horizontal {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .facilities-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reviews-marquee-wrapper {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    width: 100%;
}

.reviews-marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: review-scroll 50s linear infinite;
}

.reviews-marquee-content:hover {
    animation-play-state: paused;
}

.reviews-marquee-content .review-card {
    width: 400px;
    flex-shrink: 0;
}

@keyframes review-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@media (max-width: 768px) {
    .reviews-marquee-content {
        animation-duration: 35s;
    }
    .reviews-marquee-content .review-card {
        width: 320px;
    }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.preloader-logo span {
    display: inline-block;
    animation: bounce 1.2s infinite ease-in-out;
}

.p-d {
    animation-delay: 0.2s !important;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(216, 155, 43, 0.1);
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: loading 2s infinite ease-in-out;
}

.preloader-content p {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
}

@keyframes loading {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Colorful Contact Info */
.colorful-phone, .footer-phone {
    color: #4CAF50 !important;
    font-weight: 700;
    transition: var(--transition);
}

.colorful-email, .footer-email {
    color: #FF5252 !important;
    font-weight: 700;
    transition: var(--transition);
}

.colorful-phone:hover, .footer-phone:hover {
    color: #388E3C !important;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.colorful-email:hover, .footer-email:hover {
    color: #D32F2F !important;
    text-shadow: 0 0 8px rgba(255, 82, 82, 0.4);
}

.info-row:hover .colorful-phone, 
.info-row:hover .colorful-email {
    transform: translateX(5px);
    display: inline-block;
}