/* ========== CSS VARIABLES & RESET ========== */
:root {
    /* Hilton Corporate Colors */
    --hilton-blue: #1A3E6F;
    --hilton-blue-dark: #0F2A4A;
    --hilton-gold: #C4922E;
    --hilton-gold-light: #D4A84B;
    
    /* Partner Colors */
    --golf-green: #2D6A4F;
    --golf-green-light: #40916C;
    --salt-green: #4A7C59;
    --salt-green-dark: #3A5C47;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray-medium: #ADB5BD;
    --gray-dark: #495057;
    --text-dark: #212529;
    --text-body: #343A40;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--hilton-blue);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--text-body); }

a {
    text-decoration: none;
    color: var(--hilton-blue);
    transition: var(--transition);
}
a:hover { color: var(--hilton-gold); }

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 4rem 0; }

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--hilton-gold) !important; }
.text-green { color: var(--golf-green) !important; }
.bg-light { background-color: var(--off-white); }
.bg-hilton-blue { background-color: var(--hilton-blue); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--hilton-gold);
    color: var(--hilton-blue-dark);
    border-color: var(--hilton-gold);
    box-shadow: 0 4px 14px rgba(196, 146, 46, 0.35);
}
.btn-primary:hover {
    background-color: var(--golf-green);
    color: var(--white);
    border-color: var(--golf-green);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--hilton-blue);
    border-color: var(--hilton-blue);
}
.btn-secondary:hover {
    background-color: var(--hilton-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--hilton-blue);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--hilton-blue-dark);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--hilton-gold);
    color: var(--hilton-blue-dark);
    font-weight: 700;
    border: none;
}
.btn-gold:hover {
    background: var(--hilton-gold-light);
    transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* ========== LOGO IMAGE ========== */
.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

/* ========== DIRECT BENEFIT BAR ========== */
.direct-benefit-bar {
    background-color: var(--hilton-blue-dark);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.direct-benefit-bar i { color: var(--hilton-gold); margin-right: 0.25rem; }
.direct-benefit-bar span { margin: 0 0.8rem; }
.bar-separator { color: rgba(255,255,255,0.3); }

/* ========== HEADER & NAVIGATION ========== */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 2.4rem;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.logo-icon {
    font-size: 2.2rem;
    color: var(--hilton-blue);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--hilton-blue);
    font-size: 1.3rem;
    line-height: 1.2;
}
.logo-text small {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-dark);
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--hilton-blue);
    border-bottom-color: var(--hilton-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--hilton-blue);
    cursor: pointer;
}

/* ========== HERO SECTIONS ========== */
/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #1A3E6F 0%, #0F2A4A 60%, #1A3E6F 100%);
    background-image: url('../images/photos/dtreewooddlext2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 42, 74, 0.65);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; font-weight: 700; }
.hero .subheadline {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.8rem 0;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--hilton-gold); }

/* Partner Hero (Stay & Play) */
.hero-sp {
    background: linear-gradient(135deg, #1A3E6F 0%, #0F2A4A 50%, #2D6A4F 100%);
    background-image: url('../images/photos/Salt-Creek-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-sp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 42, 74, 0.7);
    pointer-events: none;
}

/* Partner Hero (Celebrate & Stay) */
.hero-cs {
    background: linear-gradient(135deg, #1A3E6F 0%, #0F2A4A 50%, #4A7C59 100%);
    background-image: url('../images/photos/Salt-Creek.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-cs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 42, 74, 0.7);
    pointer-events: none;
}

.hero-sp .container,
.hero-cs .container { position: relative; z-index: 1; }

.badge-partners {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.25);
}
.badge-plus { font-size: 0.8rem; opacity: 0.8; }

.hero-sp h1,
.hero-cs h1 { color: var(--white); margin-bottom: 1.2rem; }

.subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.hero-feature-tag {
    background: rgba(255,255,255,0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-feature-tag i { color: var(--hilton-gold); }

.hero-cta { margin-top: 1rem; }
.hero-email {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.hero-email a {
    color: var(--hilton-gold-light);
    text-decoration: underline;
}

/* ========== BOOKING WIDGET ========== */
.booking-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    margin: -2.5rem auto 2rem;
    max-width: 950px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}
.booking-widget h3 {
    color: var(--hilton-blue);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    text-align: center;
}
.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    justify-content: center;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 180px;
    min-width: 150px;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-dark);
    margin-bottom: 0.3rem;
}
.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--off-white);
    transition: var(--transition);
    color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--hilton-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196,146,46,0.15);
}
.booking-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title p {
    color: var(--gray-dark);
    max-width: 650px;
    margin: 0.5rem auto 0;
}

/* ========== GRID LAYOUTS ========== */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
.align-center { align-items: center; }

/* ========== CARDS ========== */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--hilton-gold);
}

.card-img-placeholder {
    background: linear-gradient(135deg, var(--hilton-blue), var(--hilton-blue-dark));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}
.card-img-placeholder i { opacity: 0.7; }
.card-img-sm { height: 160px; }
.card-img-lg { height: 300px; border-radius: var(--border-radius); }

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.card-body ul { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.card-body ul li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.card-body ul li i { color: var(--hilton-gold); width: 1.2rem; text-align: center; }

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.card-header {
    padding: 1.8rem 1.5rem;
    text-align: center;
    color: var(--white);
}
.card-header.hotel-header { background: linear-gradient(135deg, var(--hilton-blue), var(--hilton-blue-dark)); }
.card-header.golf-header { background: linear-gradient(135deg, var(--golf-green), #1B4332); }
.card-header i { font-size: 2.5rem; margin-bottom: 0.8rem; }
.card-header h3 { color: var(--white); margin-bottom: 0.3rem; }
.card-header p { color: rgba(255,255,255,0.8); }

.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hilton-gold);
    line-height: 1;
}

/* ========== DINING IMAGE ========== */
.dining-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

@media (max-width: 768px) {
    .dining-img {
        height: 250px;
    }
}


/* ========== EVENT CARDS ========== */
.event-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}
.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--hilton-gold);
}
.event-card i {
    font-size: 2.5rem;
    color: var(--hilton-gold);
    margin-bottom: 1rem;
}
.event-card h3 { margin-bottom: 0.8rem; }
.event-card ul {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    padding: 0;
    margin-top: 1rem;
}
.event-card ul li { margin-bottom: 0.4rem; }

/* ========== FEATURE ITEMS ========== */
.feature-item { padding: 1.5rem; }
.feature-item h3 { margin: 1rem 0 0.5rem; }
.feature-icon { font-size: 2rem; color: var(--hilton-blue); margin-bottom: 0.5rem; }
.feature-icon-lg { font-size: 2.5rem; color: var(--hilton-gold); margin-bottom: 1rem; }
.feature-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========== ACCESSIBILITY NOTE ========== */
.accessibility-note {
    background-color: #E8F4F8;
    border-left: 4px solid var(--hilton-blue);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--hilton-blue);
}

/* ========== CONTACT SECTION ========== */
.contact-grid { max-width: 900px; margin: 0 auto; }
.contact-card {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.contact-icon { font-size: 2rem; color: var(--hilton-gold); margin-bottom: 0.8rem; }
.contact-link {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--hilton-blue);
}
.location-card { max-width: 500px; margin: 2rem auto 0; }

.contact-form {
    max-width: 500px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--hilton-gold);
    box-shadow: 0 0 0 3px rgba(196,146,46,0.15);
}

/* ========== PACKAGE CARDS (Home Page) ========== */
.package-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    display: block;
    text-decoration: none;
    min-height: 280px;
    position: relative;
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Stay & Play Card */
.package-golf {
    background: linear-gradient(135deg, rgba(26, 62, 111, 0.8), rgba(45, 106, 79, 0.8)),
                url('../images/photos/Salt-Creek-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Celebrate & Stay Card */
.package-event {
    background: linear-gradient(135deg, rgba(15, 42, 74, 0.8), rgba(26, 62, 111, 0.8)),
                url('../images/photos/Salt-Creek-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-content {
    padding: 2.5rem 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.package-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--hilton-gold); }
.package-content h3 { color: var(--white); margin-bottom: 0.8rem; }
.package-content p { color: rgba(255, 255, 255, 0.9); margin-bottom: 1.5rem; }


/* ========== TIMELINE ========== */
.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.timeline-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.timeline-number {
    background: var(--hilton-gold);
    color: var(--hilton-blue-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

/* ========== GAMES GRID ========== */
.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.game-chip {
    background: var(--off-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
}
.game-chip:hover {
    border-color: var(--golf-green);
    background: #F0F7F4;
}
.game-chip i { color: var(--golf-green); margin-right: 0.4rem; }

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: var(--off-white);
    border-left: 4px solid var(--hilton-gold);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 0.5rem 0;
}
.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.highlight-box ul li { padding: 0.3rem 0; }

/* ========== TESTIMONIALS ========== */
.testimonials-container { max-width: 750px; }
.testimonial {
    background: var(--off-white);
    border-left: 4px solid var(--hilton-gold);
    padding: 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    margin: 1.5rem 0;
}
.testimonial strong { color: var(--hilton-blue); font-style: normal; }

/* ========== FAQ ========== */
.faq-container { max-width: 750px; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h4 { color: var(--hilton-blue); margin-bottom: 0.3rem; }

/* ========== STAT CARD ========== */
.stat-card {
    background: linear-gradient(135deg, var(--hilton-blue), var(--golf-green));
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}
.stat-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.8; }

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--hilton-blue-dark);
    color: var(--white);
    text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p {
    font-size: 1.15rem;
    margin: 1rem 0 2rem;
    color: rgba(255,255,255,0.85);
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.secondary-contact {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.secondary-contact a { color: var(--hilton-gold-light); }

/* ========== FEATURE LIST ========== */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dining-intro { font-size: 1.1rem; margin: 1.2rem 0; }

/* ========== NOTE TEXT ========== */
.note-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--hilton-blue-dark);
    color: var(--white);
    padding: 3.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.site-footer h4 {
    color: var(--hilton-gold-light);
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    text-transform: uppercase;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}
.site-footer a:hover {
    color: var(--hilton-gold);
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer ul li {
    margin-bottom: 0.5rem;
}

/* Footer Brand Section */
.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    font-size: 1.2rem;
}
.footer-address {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.footer-contact {
    margin-top: 0.8rem;
}
.footer-contact a {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: var(--hilton-gold-light);
    font-weight: 600;
    font-size: 1rem;
}
.footer-contact a:hover {
    color: var(--white);
}

/* Footer Links Sections */
.footer-links h4 {
    margin-bottom: 0.8rem;
}
.footer-links ul li a {
    font-size: 0.9rem;
    opacity: 0.85;
}
.footer-links ul li a:hover {
    opacity: 1;
}

/* Footer Social */
.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.3rem;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--hilton-gold);
    color: var(--hilton-blue-dark);
    transform: translateY(-2px);
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1.5rem;
        border-top: 2px solid var(--hilton-gold);
    }
    .main-nav.open { display: block; }
    .main-nav ul {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .grid-4 { grid-template-columns: 1fr; }
    .booking-form { flex-direction: column; }
    .booking-form .btn { align-self: stretch; }
    .hero-badges { flex-direction: column; align-items: center; }
    .direct-benefit-bar span { margin: 0.2rem 0.5rem; font-size: 0.8rem; }
    .games-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 769px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    .timeline { grid-template-columns: repeat(4, 1fr); }
    .games-grid { grid-template-columns: repeat(5, 1fr); }
    section { padding: 5rem 0; }
    .hero { padding: 6rem 0 4rem; }
    .hero-sp, .hero-cs { padding: 4rem 0 5rem; }
}