@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* Minimal Light Theme - Premium Indigo & Alabaster */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent: #2563eb; /* Premium Royal Blue */
    --accent-light: #eff6ff; /* Soft sky blue */
    --accent-rgb: 37, 99, 235;
    --border-color: rgba(37, 99, 235, 0.12);
    --border-light: rgba(15, 23, 42, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(37, 99, 235, 0.08);
    --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.06);
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-theme {
    /* Dark Theme - Sleek Midnight & Royal Blue Override */
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --accent: #3b82f6;
    --accent-light: #1e3a8a;
    --accent-rgb: 59, 130, 246;
    --border-color: rgba(59, 130, 246, 0.2);
    --border-light: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(11, 15, 25, 0.9);
    --glass-border: rgba(59, 130, 246, 0.1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar & Selection */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: uppercase;
}

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

a:hover {
    color: var(--accent);
}

/* Header Topbar */
.header-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #1e3a8a; /* Deep Indigo Navy */
    transition: var(--transition);
    overflow: hidden;
    height: 42px;
    display: flex;
    align-items: center;
}
.topbar-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar-contact a {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e2e8f0 !important; /* Soft white */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-contact a i {
    color: #93c5fd; /* Soft light blue icon */
}
.topbar-separator {
    color: #ffffff;
    opacity: 0.25;
    font-size: 0.9rem;
}
.topbar-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}
.topbar-socials a {
    font-size: 0.9rem;
    color: #e2e8f0 !important; /* Soft white */
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.topbar-socials a:hover {
    color: var(--accent) !important;
}

/* Slide topbar out on sticky header for cleaner look */
header.sticky .header-topbar {
    height: 0;
    border-bottom: none;
    opacity: 0;
    pointer-events: none;
}

/* Hide topbar on mobile screens to prevent text wrapping */
@media (max-width: 768px) {
    .header-topbar {
        display: none !important;
    }
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 0;
}

header.sticky {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 30px;
    transition: var(--transition);
}

header.sticky .nav-container {
    padding: 10px 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 58px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.sticky .logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
    opacity: 1;
}

.btn-book {
    background-color: transparent;
    color: var(--accent) !important;
    padding: 12px 28px;
    border: 1px solid var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    z-index: -1;
    transition: var(--transition);
}

.btn-book:hover::before {
    width: 100%;
}

.btn-book:hover {
    color: var(--bg-primary) !important;
    box-shadow: var(--shadow-glow);
}

/* Theme Switcher */
.theme-switch {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: var(--transition);
}

.theme-switch:hover {
    color: var(--accent);
    transform: rotate(15deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* removed dark overlay to make image clearly visible */
    background: transparent;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding-top: 100px;
}

.hero-stars {
    color: var(--accent);
    font-size: 0.75rem;
    margin-bottom: 25px;
    letter-spacing: 8px;
    animation: fadeInDown 1s both;
}

.hero h4 {
    color: var(--accent-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.2s both;
}

.hero h1 {
    color: #ffffff;
    font-size: 4.8rem;
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s both;
}

.hero p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    color: #e4e4e7 !important;
    font-size: 1.25rem;
    margin-bottom: 35px;
    animation: fadeInUp 1.6s both;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 25px;
    background: rgba(212, 175, 55, 0.08);
    padding: 16px 36px;
    border: 1px solid var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    color: #ffffff;
    animation: fadeInUp 1.8s both;
}

.hero-phone:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.hero-phone a {
    color: #ffffff !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 4;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-12px) translateX(-50%);
    }
    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

/* Booking Widget - Modern Floating Concierge Bar */
.booking-widget-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 30px;
}

.booking-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow), var(--shadow-glow);
    padding: 35px 45px;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 4px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 180px;
    gap: 30px;
    align-items: end;
}

@media (max-width: 992px) {
    .booking-widget-container {
        margin-top: -20px;
    }
    .booking-form {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 12px 0 !important;
    border-radius: 0 !important;
    color: var(--text-primary) !important;
    outline: none !important;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-control:focus {
    border-bottom: 1px solid var(--accent) !important;
    box-shadow: none !important;
}

.booking-submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
}

.booking-submit-btn:hover {
    background-color: #1e3a8a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Sections General */
section {
    padding: 120px 0;
}

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

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

.section-header img {
    height: 28px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent);
}

.section-header p {
    color: var(--text-secondary);
    max-width: 680px;
    margin: 25px auto 0;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.image-collage {
    position: relative;
    width: 100%;
    height: 480px;
}

.collage-bg-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(85% - 10px);
    height: 390px;
    border: 1px solid var(--accent);
    z-index: 1;
}

.collage-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 390px;
    object-fit: cover;
    z-index: 2;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.collage-img-2 {
    position: absolute;
    bottom: 30px;
    right: 0px;
    width: 50%;
    height: 240px;
    object-fit: cover;
    z-index: 3;
    box-shadow: var(--shadow);
    border: 6px solid var(--bg-primary);
    transition: var(--transition);
}

.collage-img-2:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .image-collage {
        height: 380px;
    }
    .collage-img-1 {
        height: 300px;
        width: 90%;
    }
    .collage-img-2 {
        height: 180px;
        bottom: 20px;
        width: 55%;
    }
    .collage-bg-frame {
        height: 300px;
        width: 90%;
    }
}

.about-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-img {
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0) 60%, rgba(8, 8, 10, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

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

.about-img img:hover {
    transform: scale(1.08);
}

.about-content h3 {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 0.25em;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Rooms Showcase Card */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

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

@media (max-width: 767px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.room-img-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.room-card:hover .room-img-container img {
    transform: scale(1.08);
}

.room-capacity {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-primary);
    color: var(--accent);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.room-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-body .btn-book {
    margin-top: auto;
}

.room-body h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.room-body p {
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.room-feature i {
    color: var(--accent);
    font-size: 0.95rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 4px;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow);
}

.service-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
    opacity: 0.08;
    transition: var(--transition);
}

.service-card:hover .service-num {
    opacity: 0.2;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.75;
}

/* Facilities Icons Row */
.facilities-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
}

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}

.facility-icon-wrap {
    width: 90px;
    height: 90px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.facility-icon-wrap img {
    height: 30px;
    width: auto;
    filter: opacity(0.85);
    transition: var(--transition);
}

.dark-theme .facility-icon-wrap img {
    filter: invert(1) opacity(0.9);
}

.facility-item:hover .facility-icon-wrap {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.facility-item:hover .facility-icon-wrap img {
    transform: scale(1.1);
}

.facility-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0) 30%, rgba(8, 8, 10, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover::after {
    opacity: 1;
}

#featured-rooms {
    padding-bottom: 20px;
}

/* Attractions Infinite Carousel */
.attractions-section {
    background-color: var(--bg-secondary);
    overflow: hidden;
    padding: 100px 0;
}

.attractions-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.attractions-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 35s linear infinite;
    padding: 15px 0;
}

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

.attractions-track:hover {
    animation-play-state: paused;
}

.attraction-card {
    width: 360px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
}

.attraction-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.attraction-img {
    height: 240px;
    overflow: hidden;
}

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

.attraction-card:hover .attraction-img img {
    transform: scale(1.08);
}

.attraction-info {
    padding: 30px;
}

.attraction-info h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.attraction-info p {
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Layout styling */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 35px;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.05);
}

.contact-details h4 {
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 700;
}

.contact-details p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-form-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 50px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Footer Styling */
footer {
    background-color: #08080a !important; /* Elegant black background */
    color: #a1a1aa !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

footer p, footer a, footer li {
    color: #a1a1aa !important;
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--accent) !important;
}

footer h3 {
    color: var(--accent) !important;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.footer-col h3 {
    font-size: 0.75rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.footer-about img {
    height: 48px;
    margin-bottom: 25px;
}

.footer-about p {
    color: #a1a1aa;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 15px;
    list-style: none;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--bg-primary) !important;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #a1a1aa;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent) !important;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: #71717a !important;
    font-size: 0.85rem;
    font-weight: 300;
}

/* Mobile responsive navigation overrides */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    header {
        padding: 16px 0;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 86px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 86px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        padding: 50px 0;
        transition: var(--transition);
        border-top: 1px solid var(--border-light);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a {
        font-size: 1.15rem;
        letter-spacing: 0.22em;
    }
    .header-action {
        display: none;
    }
    .facilities-bar {
        gap: 30px;
        padding-top: 50px;
        margin-top: 50px;
    }
}

/* Page Header Banner styling */
.page-header-banner {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.9) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.page-header-content h1 {
    font-size: 3.8rem;
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    color: #a1a1aa !important;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: #ffffff !important;
}

.breadcrumbs li.separator {
    color: rgba(212, 175, 55, 0.4);
}

.breadcrumbs li.active {
    color: var(--accent) !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header-banner {
        height: 320px;
    }
    .page-header-content h1 {
        font-size: 2.5rem;
    }
}

/* Animations declarations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Service Page Enhancements */
.service-icon-container {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
    color: var(--accent);
}

.service-icon-container i {
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-container {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotateY(360deg);
    box-shadow: var(--shadow-glow);
}

/* Concierge CTA Section */
.concierge-cta-wrapper {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow), var(--shadow-glow);
}

.concierge-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.concierge-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.concierge-content h3 {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    margin-bottom: 15px;
}

.concierge-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.concierge-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

.concierge-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.btn-concierge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-concierge-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-concierge-primary:hover {
    background-color: var(--accent-light);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-concierge-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-concierge-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .concierge-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .concierge-cta-wrapper {
        padding: 40px 30px;
    }
}

/* Staggered Alternating Services Layout */
.service-showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.service-showcase-row.reverse {
    flex-direction: row-reverse;
}

.service-showcase-img {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.service-showcase-img::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--accent);
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
    transition: var(--transition);
}

.service-showcase-row:hover .service-showcase-img::before {
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    opacity: 1;
}

.service-showcase-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-showcase-row:hover .service-showcase-img img {
    transform: scale(1.05);
}

.service-showcase-details {
    flex: 1;
    position: relative;
}

.service-showcase-num {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.service-showcase-details h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.service-showcase-details p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.service-highlight-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .service-showcase-row,
    .service-showcase-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    .service-showcase-img img {
        height: 340px;
    }
    .service-showcase-details h3 {
        font-size: 1.8rem;
    }
    .service-highlights-list {
        grid-template-columns: 1fr;
    }
}

/* Guideline Cards */
.guideline-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 60px 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.guideline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.guideline-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.guideline-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.guideline-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    transition: var(--transition);
}

.guideline-icon-wrap i {
    font-size: 2rem;
    transition: var(--transition);
}

.guideline-card:hover .guideline-icon-wrap {
    background-color: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.08);
}

.guideline-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.guideline-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}



