/*
Theme Name: vantagegrandey.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 5.2.0
*/
/* ==========================================
   VANTAGE GRANDEY - COMPLETE STYLESHEET
   With All Pages & Components
========================================== */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #02D36A;
    --dark-bg: #111111;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --accent-gold: #C9A961;
    --border-light: #e6e6e6;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Noto Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== AGE VERIFICATION MODAL ========== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container {
    padding: 2rem;
}

.modal-box {
    background: var(--light-bg);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-box h2 {
    color: #990000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.confirm-btn {
    background: #990000;
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* ========== PAGE HEADER (For Internal Pages) ========== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1600&q=80') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 60px;
}

.page-header.hotels-header {
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80') center/cover no-repeat;
}

.page-header.booking-header {
    background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1600&q=80') center/cover no-repeat;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
}

.page-header-content h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
}

/* ========== HERO SECTION (Home Page) ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1600&q=80') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========== MAIN CONTENT SECTION ========== */
.main-content {
    padding: 5rem 0;
    background: var(--light-bg);
}

.content-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.content-wrapper > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========== CASINO SECTION ========== */
.casino-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

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

.casino-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.casino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.casino-image:hover img {
    transform: scale(1.05);
}

.casino-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.casino-text p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

/* ========== ACCOMMODATIONS SECTION ========== */
.accommodations-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.text-content p {
    text-align: center;
    color: var(--text-dark);
}

.subsection-title {
    text-align: center;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.accommodations-section > .container > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

/* ========== HOTELS SECTION ========== */
.hotels-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hotel-card {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    height: 240px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-content {
    padding: 2rem;
}

.hotel-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-bg);
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hotel-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hotel-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.book-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-bg);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #01b558;
    transform: translateY(-2px);
}

/* ========== BEYOND SECTION ========== */
.beyond-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.beyond-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* ========== BOOKING BENEFITS SECTION ========== */
.booking-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.lead-text {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-content > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefits-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-bg);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 211, 106, 0.3);
}

.cta-button:hover {
    background: #01b558;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 211, 106, 0.4);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: #f9f9f9;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    width: 100%;
    background: var(--primary-green);
    color: var(--light-bg);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #01b558;
    transform: translateY(-2px);
}

/* ========== ABOUT PAGE STYLES ========== */
.about-intro {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-box-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    color: var(--text-light);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.9;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: #f9f9f9;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-content p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* ========== HOTELS PAGE STYLES ========== */
.hotels-intro {
    padding: 4rem 0 2rem;
    background: var(--light-bg);
}

.hotels-collection {
    padding: 3rem 0;
    background: var(--light-bg);
}

.collection-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.collection-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hotels-showcase {
    margin-top: 3rem;
}

.hotel-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hotel-feature-card.reverse {
    direction: rtl;
}

.hotel-feature-card.reverse > * {
    direction: ltr;
}

.hotel-feature-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-feature-card:hover .hotel-feature-image img {
    transform: scale(1.05);
}

.hotel-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    color: var(--light-bg);
}

.hotel-tag.recommendation {
    background: var(--primary-green);
}

.hotel-tag.visited {
    background: #ff6b35;
}

.hotel-tag.popular {
    background: #5B21B6;
}

.hotel-feature-content h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.hotel-location {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hotel-feature-content p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.hotel-book-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.hotel-book-btn:hover {
    background: #01b558;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 211, 106, 0.3);
}

/* Casino Hotels Section */
.casino-hotels-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.casino-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.casino-hotel-card {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.casino-hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.casino-hotel-image {
    height: 220px;
    overflow: hidden;
}

.casino-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.casino-hotel-card:hover .casino-hotel-image img {
    transform: scale(1.1);
}

.casino-hotel-content {
    padding: 2rem;
}

.casino-hotel-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.casino-hotel-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.mini-book-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-bg);
    padding: 0.65rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mini-book-btn:hover {
    background: #01b558;
    transform: translateY(-2px);
}

/* Specialty Hotels Section */
.specialty-hotels {
    padding: 5rem 0;
    background: var(--light-bg);
}

.specialty-description {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.specialty-description p {
    text-align: center;
    color: var(--text-dark);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.specialty-card {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.specialty-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-content {
    padding: 2rem;
}

.specialty-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specialty-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Hotels CTA */
.hotels-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.cta-box-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--light-bg);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-box-large h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-box-large p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* ========== BOOKING PAGE STYLES ========== */
.booking-intro {
    padding: 5rem 0;
    background: var(--light-bg);
}

.booking-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Booking Form Section */
.booking-form-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-wrapper {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.booking-form-wrapper h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.booking-form .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.booking-form .form-section:last-of-type {
    border-bottom: none;
}

.booking-form .form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.form-checkbox label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.submit-btn-large {
    width: 100%;
    background: var(--primary-green);
    color: var(--light-bg);
    border: none;
    padding: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-large:hover {
    background: #01b558;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 211, 106, 0.3);
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.booking-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-info-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.booking-info-box.highlight {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border: 2px solid var(--primary-green);
}

.booking-info-box.highlight ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.booking-info-box.highlight li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.booking-info-box.highlight li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
    font-style: normal;
}

/* ========== FOOTER ========== */
.footer {
    background: #000000;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .casino-grid,
    .about-grid,
    .hotel-feature-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hotel-feature-card.reverse {
        direction: ltr;
    }
    
    .hotels-grid,
    .casino-hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .hero-section,
    .page-header {
        min-height: 400px;
        margin-top: 55px;
    }
    
    .feature-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .cta-box-large {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .modal-box {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1,
    .page-header-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p,
    .page-header-content p {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hotel-feature-image img {
        height: 250px;
    }
}

/* ========== POLICY PAGES STYLES ========== */
.policy-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
    text-align: center;
    color: var(--text-light);
}

.policy-header h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.policy-date {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 500;
}

.policy-content {
    padding: 5rem 0;
    background: var(--light-bg);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section.intro-section {
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.policy-section .intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 500;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-section ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.policy-section ul li strong {
    color: var(--text-dark);
}

.policy-section a {
    color: var(--primary-green);
    text-decoration: underline;
}

.policy-section a:hover {
    color: #01b558;
}

.contact-section-policy {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
}

.contact-section-policy h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-section .note {
    background: #fffbf0;
    border-left: 4px solid #fbbf24;
    padding: 1.25rem;
    margin-top: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.policy-section .note strong {
    color: #b45309;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-header {
        padding: 6rem 1.5rem 3rem;
    }
    
    .policy-wrapper {
        padding: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-section-policy {
        padding: 2rem 1.5rem;
    }
}
