/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --color-maroon: #C9A227;
    /* Rich Gold - Primary Accent */
    --color-sand: #C7CBD1;
    /* Chrome Silver - Secondary Accent */
    --color-teal: #1C1C1E;
    /* Charcoal - Footer/CTA Background */
    --color-gold: #E8CD7A;
    /* Bright Gold - Hover/Highlight */
    --color-blue: #C7CBD1;
    /* Chrome Silver */
    --color-cream: #F6F6F4;
    /* Ivory - Page Background */

    /* Functional Colors */
    --text-dark: #111111;
    /* Ink Black */
    --text-light: #5C5250;
    --white: #FFFFFF;
    --card-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
    --card-hover-shadow: 0 20px 40px rgba(17, 17, 17, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography */
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--color-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--color-maroon);
    line-height: 1.2;
}

/* Scroll Animation Styles */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Header and Navigation */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

header.main-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(246, 246, 244, 0.95);
    border-bottom: 1px solid rgba(199, 203, 209, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Header (Transparent style initially over dark hero sections) */
header.main-header:not(.scrolled) .nav-link {
    color: rgba(246, 246, 244, 0.9);
}

header.main-header:not(.scrolled) .nav-link:hover,
header.main-header:not(.scrolled) .nav-link.active {
    color: var(--color-sand);
}

header.main-header:not(.scrolled) .logo-text {
    color: var(--white);
}

header.main-header:not(.scrolled) .logo-subtext {
    color: var(--color-sand);
}

header.main-header:not(.scrolled) .logo-img {
    mix-blend-mode: multiply;
}

header.main-header:not(.scrolled) .hamburger-line {
    background-color: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Scrolled state: logo smaller, blend mode normal on light background */
header.main-header.scrolled .logo-img {
    height: 48px;
    mix-blend-mode: multiply;
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-maroon);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-subtext {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-maroon);
}

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

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

.nav-cta {
    background-color: var(--color-maroon);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background-color: var(--color-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-maroon);
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cream);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-maroon);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-gold);
}

/* Active Hamburger state */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Elephant Herd Divider */
.elephant-divider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
}

.elephant-divider {
    width: 180px;
    height: auto;
    fill: var(--color-maroon);
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-maroon);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-maroon);
    border: 2px solid var(--color-maroon);
}

.btn-secondary:hover {
    background-color: var(--color-maroon);
    color: var(--white);
    transform: translateY(-3px);
}

/* Page Layout Structure */
main {
    margin-top: 80px;
    /* offset for sticky header */
}

section {
    padding: 6rem 0;
}

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

.section-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title.alice-title,
.section-title.alice-title span {
    font-family: 'Alice', serif;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
}

/* HERO SECTION (index.php) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-sand);
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-sand);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ATTRACTIONS GRID */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.attraction-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
    font-family: 'Roboto Slab', serif;
}

/* 2x2 grid configurations for nice layout variety */
.attraction-card.large {
    grid-column: span 2;
}

.attraction-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    z-index: 1;
}

.attraction-card-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(28, 28, 30, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

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

.attraction-card:hover .attraction-card-scrim {
    background: linear-gradient(to top, rgba(201, 162, 39, 0.9) 0%, rgba(28, 28, 30, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}

.attraction-info {
    position: relative;
    z-index: 3;
}

.attraction-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sand);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.attraction-name {
    font-size: 1.75rem;
    color: var(--white);
}

/* VISION and MISSION SECTION */
.about-summary {
    background-color: var(--color-sand);
    position: relative;
}

.about-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-summary-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-summary-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.v-m-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

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

.v-m-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.v-m-card h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    background-color: var(--color-gold);
    border-radius: 4px;
}

.v-m-card p {
    color: var(--text-light);
}

/* INCLUSIONS BAND */
.inclusions-band {
    background-color: var(--color-teal);
    color: var(--white);
    padding: 5rem 0;
}

.inclusions-band h2 {
    color: var(--white);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.inclusion-card {
    text-align: center;
    padding: 2rem;
}

.inclusion-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(199, 203, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-sand);
    transition: var(--transition-smooth);
}

.inclusion-card:hover .inclusion-icon {
    background-color: var(--color-gold);
    color: var(--white);
    transform: rotate(10deg) scale(1.05);
}

.inclusion-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.inclusion-desc {
    font-size: 0.9rem;
    color: rgba(251, 246, 240, 0.8);
}

/* TESTIMONIAL */
.testimonial-section {
    background-color: var(--color-cream);
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-sand);
    font-family: 'Fraunces', serif;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    color: var(--color-maroon);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--color-gold);
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

/* CLOSING CTA */
.closing-cta {
    background: linear-gradient(135deg, var(--color-teal) 0%, rgba(17, 17, 17, 0.9) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.closing-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.closing-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: var(--color-sand);
}

/* PACKAGES PAGE */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.package-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(17, 17, 17, 0.03);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.package-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.package-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--color-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.package-duration {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: rgba(246, 246, 244, 0.95);
    color: var(--color-maroon);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.package-content {
    padding: 2.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.package-bullets {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.package-bullets li::before {
    content: '☆';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.package-action {
    width: 100%;
}

/* ABOUT PAGE */
.about-hero {
    background-color: var(--color-sand);
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero h1 span {
    font-style: normal;
    font-weight: 600;
    color: var(--color-sand);
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-maroon);
}

/* Page-specific Hero Backgrounds with Overlays */
.about-hero.about-page,
.about-hero.packages-page,
.about-hero.gallery-page,
.about-hero.contact-page {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 11rem 0 7rem 0;
    color: var(--white);
}

.about-hero.about-page::before,
.about-hero.packages-page::before,
.about-hero.gallery-page::before,
.about-hero.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 28, 30, 0.75) 0%, rgba(28, 28, 30, 0.45) 100%);
    z-index: 1;
}

.about-hero.about-page .container,
.about-hero.packages-page .container,
.about-hero.gallery-page .container,
.about-hero.contact-page .container {
    position: relative;
    z-index: 2;
}

.about-hero.about-page h1,
.about-hero.packages-page h1,
.about-hero.gallery-page h1,
.about-hero.contact-page h1 {
    color: var(--white);
}

.about-hero.about-page p,
.about-hero.packages-page p,
.about-hero.gallery-page p,
.about-hero.contact-page p {
    color: rgba(246, 246, 244, 0.9);
}

.about-hero.about-page {
    background-image: url('../images/3.jpg');
}

.about-hero.packages-page {
    background-image: url('../images/18.jpg');
}

.about-hero.gallery-page {
    background-image: url('../images/5.jpg');
}

.about-hero.contact-page {
    background-image: url('../images/19.jpg');
}

.story-section {
    background-color: var(--color-cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.story-highlight {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--color-maroon);
    box-shadow: var(--card-shadow);
}

.story-highlight p {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    color: var(--color-maroon);
    line-height: 1.4;
    margin-bottom: 0;
}

.story-image-placeholder {
    height: 450px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-sand) 0%, rgba(201, 162, 39, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--color-maroon);
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    background-color: var(--white);
    padding: 3rem 2.25rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    text-align: center;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 162, 39, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: var(--color-gold);
    font-size: 2rem;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* GALLERY PAGE */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-maroon);
    border-color: var(--color-maroon);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.gallery-item.hidden {
    display: none;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 28, 30, 0.9) 0%, rgba(201, 162, 39, 0.1) 80%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

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

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay span {
    font-size: 0.8rem;
    color: var(--color-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
}

.form-wrapper {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(17, 17, 17, 0.03);
}

.form-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.form-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-alert.success {
    background-color: rgba(28, 28, 30, 0.1);
    color: var(--color-teal);
    border-left: 4px solid var(--color-teal);
}

.form-alert.error {
    background-color: rgba(201, 162, 39, 0.1);
    color: var(--color-maroon);
    border-left: 4px solid var(--color-maroon);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-maroon);
    margin-bottom: 0.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(17, 17, 17, 0.15);
    background-color: var(--color-cream);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block-item {
    display: flex;
    gap: 1.5rem;
}

.info-block-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--color-sand);
    color: var(--color-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.info-block-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FOOTER Styles */
footer.main-footer {
    background-color: #E2E8F0;
    color: #111111;
    padding: 3rem 0 1.5rem 0;
    border-top: 3px solid #CBD5E0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    color: #111111;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    color: #222222;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: #111111;
    margin-bottom: 0.85rem;
    position: relative;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #222222;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-info-text {
    color: #222222;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #333333;
}

.footer-bottom a {
    color: #333333;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* RESPONSIVE DESIGN (Media Queries) */
@media (max-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .attraction-card.large {
        grid-column: span 1;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* Section sizing */
    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero.about-page,
    .about-hero.packages-page,
    .about-hero.gallery-page {
        padding: 8rem 0 4rem 0;
    }

    /* Grids and Panels */
    .about-summary-grid,
    .inclusions-grid,
    .story-grid,
    .why-choose-us-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image-placeholder {
        height: 300px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

    .hero-title {
        font-size: 2.1rem;
    }

    .about-hero h1 {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.95rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

/* ==========================================
   Home Page Preloader
   ========================================== */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-sand);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    fill: var(--color-maroon);
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-text-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-maroon);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.preloader-spinner-bar {
    width: 160px;
    height: 3px;
    background-color: rgba(201, 162, 39, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-spinner-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: var(--color-gold);
    border-radius: 10px;
    animation: loadingBarSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes loadingBarSlide {
    0% {
        left: -30%;
        width: 30%;
    }

    50% {
        width: 40%;
    }

    100% {
        left: 100%;
        width: 30%;
    }
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-float svg {
    fill: currentColor;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   Airport and Other Transfers Section
   ========================================== */
.transfers-section {
    background-color: var(--color-cream);
    padding: 6rem 0;
}

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.transfer-card {
    background-color: var(--white);
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(17, 17, 17, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.25rem;
}

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

/* Adjusted height to prevent tight cropping of vehicle images */
.transfer-media-box {
    border-radius: 20px;
    overflow: hidden;
    height: 230px;
}

.transfer-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.transfer-card:hover .transfer-vehicle-img {
    transform: scale(1.05);
}

.transfer-content {
    padding: 1.25rem 0.25rem 0.25rem 0.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.transfer-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.transfer-titles {
    flex-grow: 1;
}

.transfer-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    font-family: 'Fraunces', serif;
}

.transfer-car-names {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.transfer-fav-btn {
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-smooth);
    margin-left: 1rem;
    flex-shrink: 0;
}

.transfer-fav-btn:hover {
    background: #eaeaea;
    color: #e25c80;
    transform: scale(1.05);
}

.heart-icon {
    width: 16px;
    height: 16px;
}

.transfer-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.transfer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}

.transfer-meta-grid {
    display: flex;
    gap: 1.25rem;
}

.transfer-meta-col {
    display: flex;
    flex-direction: column;
}

.meta-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.meta-lbl {
    font-size: 0.75rem;
    color: #8c8582;
}

.transfer-pill-btn {
    background-color: var(--color-maroon);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.transfer-pill-btn:hover {
    background-color: var(--color-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(201, 162, 39, 0.2);
}

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

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

    .transfer-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   Floating Action Button (Write Review - Right Side Circular)
   ========================================================================== */
.floating-review-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 115px;
    /* Floats directly above the WhatsApp button */
    right: 40px;
    background-color: #fca130;
    /* Premium Orange */
    color: var(--white);
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.floating-review-btn:hover {
    background-color: #e58e26;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(252, 161, 48, 0.3);
    color: var(--white);
}

.floating-review-btn svg {
    stroke: currentColor;
}

@media (max-width: 768px) {
    .floating-review-btn {
        width: 50px;
        height: 50px;
        bottom: 85px;
        /* Floats above WhatsApp on mobile */
        right: 20px;
    }

    .floating-review-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   Review Modal Popup Overlay and Card
   ========================================================================== */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 30, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.review-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-card {
    background-color: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--color-maroon);
    max-height: 90vh;
    overflow-y: auto;
}

.review-modal-overlay.active .review-modal-card {
    transform: translateY(0);
}

.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.review-modal-close:hover {
    color: var(--color-maroon);
}

.review-modal-card h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    color: var(--color-maroon);
    margin-bottom: 0.5rem;
}

.review-modal-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.modal-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-alert.success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #ceead6;
}

.modal-alert.error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

/* ==========================================================================
   Public Reviews Page Layout
   ========================================================================== */
.reviews-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.stats-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    position: sticky;
    top: 110px;
    text-align: center;
}

.stats-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.rating-huge {
    font-family: 'Fraunces', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-maroon);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stars-huge {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.total-reviews-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.rating-bars-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.bar-label {
    width: 60px;
    text-align: left;
    color: var(--text-light);
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--color-cream);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--color-maroon);
    border-radius: 10px;
}

.bar-value {
    width: 40px;
    text-align: right;
    font-weight: 600;
}

/* Reviews Stream */
.reviews-stream h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 0.75rem;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.review-card-item:hover {
    transform: translateY(-2px);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.reviewer-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reviewer-rating {
    color: #f1c40f;
    letter-spacing: 0.1em;
}

.review-package-badge {
    display: inline-block;
    background-color: var(--color-cream);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.review-comment-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.empty-reviews-state {
    text-align: center;
    background-color: var(--white);
    border-radius: 12px;
    padding: 4rem 2rem;
    box-shadow: var(--card-shadow);
    color: var(--text-light);
}

.empty-reviews-state p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .stats-card {
        position: relative;
        top: 0;
    }
}

/* Transfers Button and Booking Modal Styles */
.btn-transfers {
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--text-dark);
    font-size: 0.85rem;
    padding: 0.65rem 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--color-maroon);
}

.modal-title {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    color: var(--color-maroon);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.modal-card .form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.modal-card label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-card input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-sand);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--color-cream);
    transition: border-color 0.2s;
}

.modal-card input:focus {
    outline: none;
    border-color: var(--color-maroon);
    background: var(--white);
}

.modal-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .modal-card .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}