/*
Theme Name: velvetpalmss.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 5.2.0
*/
/* ===================================
   VELVET PALMSS - COMPLETE STYLESHEET
   Design Philosophy: Sophisticated, Modern, Asymmetric
   Color Palette: Deep Purple, Teal, Rose Gold
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Color Palette - Purple & Teal Theme */
    --primary: #6B2C91;
    --primary-light: #8E44AD;
    --primary-dark: #4A1E6B;
    --secondary: #14B8A6;
    --secondary-light: #2DD4BF;
    --accent: #D4AF78;
    --accent-light: #E8C9A0;
    
    /* Neutrals */
    --dark: #1A1625;
    --dark-soft: #2D2438;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    
    /* Typography */
    --font-display: 'Italiana', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Jost', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;
    --container-wide: 1440px;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(26, 22, 37, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 22, 37, 0.1);
    --shadow-lg: 0 8px 32px rgba(26, 22, 37, 0.15);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: var(--font-display);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.0625rem;
}

/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* === COMPONENTS === */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--secondary);
    gap: 0.75rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Section Tags */
.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--accent-light);
}

.section-title {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.85);
}

/* === AGE VERIFICATION MODAL === */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 22, 37, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--white);
    padding: 3rem 2.5rem;
    max-width: 500px;
    text-align: center;
    border-top: 4px solid var(--accent);
}

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

.age-modal-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.age-modal-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.age-subtext {
    font-size: 0.9375rem;
    margin-bottom: 2rem !important;
}

.age-confirm-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.age-confirm-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.age-disclaimer {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 0 !important;
}

.age-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 22, 37, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
}

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

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

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 100px;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 44, 145, 0.85) 0%, 
        rgba(45, 36, 56, 0.8) 50%,
        rgba(20, 184, 166, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    margin-bottom: 4rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent-light);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* === PAGE HEADER (For subpages) === */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header.short {
    min-height: 300px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 44, 145, 0.9) 0%, 
        rgba(45, 36, 56, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* === WELCOME SECTION === */
.welcome-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.content-column {
    max-width: 550px;
}

.section-text {
    margin-top: 2rem;
}

.section-text p {
    margin-bottom: 1.25rem;
}

.image-column {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.1;
    z-index: -1;
}

/* === GAMING SECTION === */
.gaming-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-soft));
    position: relative;
    overflow: hidden;
}

.gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent);
    pointer-events: none;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-left {
    text-align: left;
    margin-bottom: 4rem;
}

.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.gaming-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gaming-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.gaming-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gaming-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gaming-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* === ACCOMMODATIONS SECTION === */
.accommodations-section {
    padding: var(--section-padding) 0;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.header-left {
    flex: 1;
}

.header-right {
    flex: 1;
}

.header-right p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.rooms-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-auto-rows: 350px;
}

.room-feature {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.room-feature.large {
    grid-row: span 2;
}

.room-image {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.room-feature.large .room-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

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

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

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.room-details {
    padding: 2rem;
    background: var(--white);
}

.room-feature.large .room-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 22, 37, 0.95) 60%, transparent);
    z-index: 2;
    padding: 3rem 2rem 2rem;
}

.room-feature.large .room-details h3,
.room-feature.large .room-details p {
    color: var(--white);
}

.room-features {
    list-style: none;
    margin: 1.5rem 0;
}

.room-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.room-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/* === PROPERTIES SECTION === */
.properties-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.properties-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.property-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.property-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.property-location {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 22, 37, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.property-info p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.property-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--gray-light);
    color: var(--gray);
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
}

/* === EXPERIENCES SECTION === */
.experiences-section {
    padding: var(--section-padding) 0;
}

.experience-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 250px 250px;
    gap: 1.5rem;
}

.exp-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.exp-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.exp-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.exp-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* === BENEFITS SECTION === */
.benefits-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header .section-title {
    color: var(--white);
}

.benefits-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.benefits-cta {
    text-align: center;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-details h4 {
    color: var(--dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.method-details p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.method-details span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--off-white);
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === ABOUT PAGE STYLES === */
.about-intro-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.intro-content-center h2 {
    margin-bottom: 2rem;
}

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

.intro-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.intro-stat {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-left: 3px solid var(--accent);
}

.intro-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.intro-stat-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--accent);
    transition: var(--transition);
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.mission-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-soft));
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

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

.mission-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info h4 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--gray);
    font-size: 1rem;
}

.sustainability-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-cta-section,
.hotels-cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === HOTELS PAGE STYLES === */
.hotels-intro-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.hotels-collection-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.hotel-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.hotel-feature-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hotel-feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.hotel-feature-card.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.hotel-feature-card.reverse .hotel-feature-image {
    order: 2;
}

.hotel-feature-card.reverse .hotel-feature-content {
    order: 1;
}

.hotel-feature-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.hotel-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.hotel-location-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 22, 37, 0.9);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.hotel-description {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hotel-highlights {
    margin: 2rem 0;
}

.hotel-highlights h4 {
    color: var(--dark);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hotel-highlights ul {
    list-style: none;
}

.hotel-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
    font-size: 0.9375rem;
}

.hotel-highlights li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.hotel-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hotel-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.casino-hotels-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.casino-hotel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--off-white);
    padding: 2rem;
}

.casino-hotel-image {
    height: 100%;
    min-height: 300px;
}

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

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

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
    font-size: 0.9375rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.specialty-hotels-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.specialty-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.specialty-image {
    position: relative;
    height: 100%;
}

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

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

.specialty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 22, 37, 0.95), rgba(26, 22, 37, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 2rem;
    transition: var(--transition);
}

.specialty-card:hover .specialty-overlay {
    background: linear-gradient(to top, rgba(107, 44, 145, 0.95), rgba(107, 44, 145, 0.5));
}

.specialty-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.specialty-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.amenities-overview-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.amenity-item {
    text-align: center;
}

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

.amenity-item h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.amenity-item p {
    color: var(--gray);
    margin-bottom: 0;
}

/* === BOOKING PAGE STYLES === */
.booking-intro-section {
    padding: 4rem 0;
    background: var(--white);
}

.booking-form-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form-container {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 3rem;
}

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

.form-header p {
    color: var(--gray);
    margin-bottom: 0;
}

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

.booking-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.9375rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.terms-checkbox {
    margin-bottom: 2rem;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.booking-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.sidebar-card.highlight h3,
.sidebar-card.highlight p {
    color: var(--white);
}

.promo-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.benefits-list strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.benefits-list p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item-compact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-compact .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-compact strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-item-compact p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--accent);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--gray);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* === POLICY PAGES STYLES === */
.policy-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 6rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.policy-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.policy-updated {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.policy-content {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.policy-section {
    margin-bottom: 4rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.policy-section h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.policy-section li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

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

.policy-section a:hover {
    color: var(--secondary);
}

.contact-details {
    background: var(--off-white);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent);
}

.contact-details p {
    margin-bottom: 0.75rem;
}

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

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8125rem !important;
    margin-bottom: 0 !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-header-split {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rooms-showcase {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }
    
    .room-feature.large {
        grid-row: auto;
    }
    
    .properties-carousel {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .hotel-feature-card,
    .hotel-feature-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .hotel-feature-card.reverse .hotel-feature-image,
    .hotel-feature-card.reverse .hotel-feature-content {
        order: unset;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-hotel-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 22, 37, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        min-height: 600px;
        padding: 120px 0 60px;
    }
    
    .hero-text {
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gaming-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-images {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 200px;
    }
    
    .exp-img-1,
    .exp-img-2 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: static;
    }
    
    .rooms-showcase {
        grid-auto-rows: 350px;
    }
    
    .intro-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .container,
    .container-wide,
    .container-policy {
        padding: 0 1.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .hotel-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .specialty-card {
        height: 350px;
    }
}

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

.hero-text,
.hero-stats {
    animation: fadeInUp 0.8s ease-out;
}

/* === ACCESSIBILITY === */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 320px;
    max-width: 450px;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    border-left: 4px solid #2ecc71;
}

.notification.notification-success {
    border-left-color: #2ecc71;
}

.notification.notification-error {
    border-left-color: #e74c3c;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #2ecc71;
    color: white;
}

.notification-error .notification-icon {
    background: #e74c3c;
    color: white;
}

.notification-message {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Button Loading State */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
