:root {
    /* ========================================
       FOOTBALL VIBE COLOR PALETTE
       ======================================== */
    --turf-green: #2e7d32;
    --turf-dark: #1b5e20;
    --turf-light: #4caf50;
    --bg-dark: #1a1c20;
    --bg-darker: #121212;
    --chalk-white: #f5f5f5;

    --accent-yellow: #ffeb3b;
    /* Referee Card / Warning */
    --accent-orange: #ff9800;
    /* Ball / CTA */
    --accent-red: #d32f2f;
    /* Red Card / Danger */

    /* Variables mapping to old names for compatibility */
    --primary: var(--turf-green);
    --primary-light: var(--turf-light);
    --secondary: var(--bg-dark);

    --neon-cyan: var(--accent-orange);
    /* Mapped for compatibility */
    --neon-pink: var(--accent-red);
    /* Mapped for compatibility */
    --neon-green: #39FF14;
    /* Fixed missing variable */
    --neon-yellow: var(--accent-yellow);
    /* Mapped for compatibility */

    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #a0a0a0;

    --font-display: 'Teko', sans-serif;
    /* Jersey Style Font */
    --font-main: 'Roboto', sans-serif;

    --transition: all 0.3s ease;

    /* Effects */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.4);
    --glow-turf: 0 0 20px rgba(76, 175, 80, 0.4);
}

/* ========================================
   GLOBAL STYLES (Stadium Vibe)
   ======================================== */
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* Subtle Grass Pattern Overlay */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(46, 125, 50, 0.1) 0%, transparent 25%),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0px, rgba(0, 0, 0, 0.02) 2px, transparent 2px, transparent 4px);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--turf-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    background: rgba(26, 28, 32, 0.95);
    border-bottom: 2px solid var(--turf-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    margin: 0;
}

header .container,
header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--chalk-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo i {
    color: var(--accent-orange);
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--turf-light);
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

/* ========================================
   BUTTONS (Jersey/Kit Style)
   ======================================== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    /* Less rounded, more sporty */
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Skew for speed effect */
    transform: skew(-10deg);
}

/* Fix text skew inside button */
.btn>* {
    transform: skew(10deg);
    display: inline-block;
}

.btn-primary {
    background: var(--turf-green);
    color: white;
    box-shadow: 0 4px 0 var(--turf-dark);
    /* 3D effect */
}

.btn-primary:active {
    transform: skew(-10deg) translateY(4px);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--turf-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--chalk-white);
    color: var(--chalk-white);
}

.btn-outline:hover {
    background: var(--chalk-white);
    color: var(--bg-dark);
}

/* ========================================
   CARDS (Tactical Board Style)
   ======================================== */
.card,
.stat-card,
.booking-card,
.feature-card {
    background: #232529;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    /* Grid pattern like tactical board */
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 4px solid var(--turf-green);
    /* Accent stripe */
}

.card:hover,
.stat-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent-orange);
}

/* ========================================
   HERO / SECTIONS
   ======================================== */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(26, 28, 32, 0.3), var(--bg-dark));
}

.section-title h2 {
    color: var(--chalk-white);
    border-bottom: 3px solid var(--turf-green);
    display: inline-block;
    padding-bottom: 5px;
}

/* ========================================
   TABLES (Scoreboard Style)
   ======================================== */
table {
    width: 100%;
    border-collapse: collapse;
    background: #1e1e1e;
    font-family: 'Roboto Mono', monospace;
    /* Digital look */
}

thead th {
    background: #000;
    color: var(--accent-orange);
    text-transform: uppercase;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #333;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

tbody td {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: #ddd;
}

tbody tr:hover {
    background: rgba(46, 125, 50, 0.1);
}

/* ========================================
   FORMS
   ======================================== */
input,
select,
textarea {
    background: #121212;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    font-family: var(--font-main);
}

input:focus {
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(46, 125, 50, 0.6);
    }
}

/* Slot Table Specific Styles */
.slot-row {
    transition: all 0.3s ease;
}

.slot-row:hover {
    background: rgba(46, 125, 50, 0.1);
}

.slot-table {
    width: 100%;
}

.slot-table tbody tr {
    opacity: 1 !important;
    /* Force visibility after animation */
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 auto;
}

.status-available {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-booked {
    background: #f44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}


/* ========================================
   UTILITIES
   ======================================== */
.text-turf {
    color: var(--turf-light);
}

.text-orange {
    color: var(--accent-orange);
}

.bg-turf {
    background-color: var(--turf-green);
}

/* Full-width container option */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.container-fluid {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.section-padding {
    padding: 60px 0;
}

/* No-gap sections */
.section-no-gap {
    padding-left: 0;
    padding-right: 0;
}

.full-width-section {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Menu Toggle - Hidden by default, shown on mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--chalk-white);
    padding: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--turf-light);
}

/* Dashboard Specific Styles */
.dashboard-header {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.booking-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--turf-green);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    background: var(--turf-light);
    transform: translateY(-2px);
}

/* News Page Specific */
.news-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-card {
    transition: var(--transition);
}

.page-hero {
    position: relative;
    overflow: hidden;
}

/* Status Badges */
.status-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-confirmed,
.status-paid {
    background: var(--turf-green);
    color: white;
}

.status-pending {
    background: var(--accent-yellow);
    color: black;
}

.status-cancelled {
    background: var(--accent-red);
    color: white;
}

/* Calendar styles override */
.calendar-day {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 0;
    /* Square tiles */
}

.calendar-day.active {
    background: var(--turf-green) !important;
    border-color: var(--turf-light);
}

.calendar-day.today {
    border: 2px solid var(--accent-orange);
}

/* Footer Link Fixes */
.footer-links a,
.footer-links a:hover,
.footer-col a,
.footer-col a:hover {
    text-decoration: none !important;
}

/* Calendar & Booking Specific Styles */
.calendar-section {
    min-height: 400px;
}

.slots-section {
    min-height: 300px;
}

.calendar-day {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(46, 125, 50, 0.3);
    border-color: var(--turf-light);
}

.calendar-day.active {
    background: var(--turf-green) !important;
    border-color: var(--turf-light);
    color: white;
}

.calendar-day.today {
    border: 2px solid var(--accent-orange);
}

.calendar-day.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.has-offer .offer-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 1rem;
}

.day-number {
    font-weight: bold;
    font-size: 1.1rem;
}

.slot-table tbody tr {
    background: rgba(0, 0, 0, 0.3);
}

.slot-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 20px;
}

.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.swiper-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease-out;
    color: var(--chalk-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0;
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    color: var(--chalk-white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: bounce 2s infinite;
}

.cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a5276 50%, #00a8e8 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -1px;
}

/* ========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ======================================== */

/* Mobile Devices (max-width: 575.98px) */
@media (max-width: 575.98px) {

    /* Typography */
    h1,
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        padding: 0 10px;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin: 10px 0 20px !important;
        padding: 0 10px;
    }

    /* Layout */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .section-padding {
        padding: 40px 0;
    }

    /* Hero Section - Optimized for Mobile */
    .swiper-container,
    .hero-slider {
        height: 60vh !important;
        min-height: 400px;
    }

    .swiper-slide {
        padding: 20px 10px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem !important;
    }

    /* Stats Section - Single Column */
    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-card {
        margin-bottom: 20px;
        padding: 1.5rem;
    }

    .stat-card i {
        font-size: 36px !important;
    }

    /* Grid Layouts - Force Single Column */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 15px !important;
    }

    .cta-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    /* Navigation - Fixed Mobile Menu */
    header {
        padding: 0.8rem 0;
    }

    .navbar {
        padding: 10px 15px;
        position: relative;
    }

    .logo {
        font-size: 1.4rem !important;
    }

    .logo i {
        font-size: 1.2rem;
    }

    nav {
        position: static;
    }

    nav ul {
        gap: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 28, 32, 0.98);
        padding: 20px 15px;
        border-top: 2px solid var(--turf-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        width: 100%;
        z-index: 999;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex !important;
        animation: slideInDown 0.3s ease-out;
    }

    .nav-links li {
        margin: 12px 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem !important;
    }

    .nav-links .btn {
        width: 100%;
        max-width: 200px;
        margin: 5px auto;
    }

    .menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--chalk-white);
        padding: 8px;
        z-index: 1000;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Buttons - Mobile Optimized */
    .btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        transform: skew(0deg) !important;
    }

    .btn>* {
        transform: skew(0deg) !important;
    }

    /* Tables - Horizontal Scroll */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        font-size: 0.8rem;
        min-width: 600px;
    }

    thead th,
    tbody td {
        padding: 8px 6px;
        white-space: nowrap;
    }

    /* Cards - Optimized */
    .card,
    .stat-card,
    .booking-card,
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .feature-card img {
        height: 150px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Forms - Better Touch Targets */
    input,
    select,
    textarea {
        padding: 12px;
        font-size: 1rem;
    }

    /* Footer - Mobile Optimized */
    footer {
        padding: 50px 0 20px !important;
    }

    footer .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .social-links {
        justify-content: center;
    }

    /* Animated Elements - Reduce Motion on Mobile */
    .floating-element,
    [style*="animation: float"] {
        animation: none !important;
    }

    /* Section Backgrounds - Simplify */
    section [style*="position: absolute"] {
        display: none;
    }
}

/* Tablet Devices (576px to 991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {

    /* Typography */
    h1,
    .hero-title {
        font-size: 3.2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
    }

    /* Layout */
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Hero Section */
    .swiper-container,
    .hero-slider {
        height: 450px !important;
    }

    /* Stats - Two Column Grid */
    .stat-number {
        font-size: 3rem !important;
    }

    .stat-card {
        padding: 1.8rem;
    }

    [style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 70px 25px !important;
    }

    .cta-title {
        font-size: 2.5rem !important;
    }

    /* Navigation - Show Full Nav */
    .logo {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 0.95rem;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        border-top: none;
        box-shadow: none;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    /* Buttons */
    .btn {
        padding: 11px 28px;
        font-size: 1.05rem;
    }

    /* Tables */
    table {
        font-size: 0.95rem;
    }

    /* Cards */
    .card,
    .stat-card,
    .booking-card,
    .feature-card {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer */
    footer .container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop Devices (min-width: 992px and max-width: 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* Typography */
    h1,
    .hero-title {
        font-size: 4rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.4rem !important;
    }

    /* Layout */
    .container {
        max-width: 1140px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hero Section */
    .swiper-container,
    .hero-slider {
        height: 550px;
    }

    /* Stats */
    .stat-number {
        font-size: 3.2rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 20px;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    /* Navigation */
    .logo {
        font-size: 2rem;
    }

    nav ul {
        gap: 25px;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Menu Toggle - Hide on Desktop */
    .menu-toggle {
        display: none;
    }
}

/* Extra Large Devices (min-width: 1200px) */
@media (min-width: 1200px) {

    /* Typography */
    h1,
    .hero-title {
        font-size: 5rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* Layout */
    .container {
        max-width: 1200px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hero Section */
    .swiper-container,
    .hero-slider {
        height: 600px;
    }

    /* Stats */
    .stat-number {
        font-size: 3.5rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 120px 20px;
    }

    .cta-title {
        font-size: 3.2rem;
    }

    /* Navigation */
    .logo {
        font-size: 2.2rem;
    }

    nav ul {
        gap: 30px;
    }

    nav a {
        font-size: 1.1rem;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Menu Toggle - Hide on Large Screens */
    .menu-toggle {
        display: none;
    }

    /* Cards - Enhanced spacing */
    .card,
    .stat-card,
    .booking-card,
    .feature-card {
        padding: 20px;
    }
}

/* Common styles for all medium+ devices (tablet and above) */
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        border-top: none;
        box-shadow: none;
    }

    .menu-toggle {
        display: none;
    }
}

/* ========================================
   ADDITIONAL MOBILE OVERRIDES
   ======================================== */

/* Ensure all sections are visible and well-spaced on mobile */
@media (max-width: 575.98px) {

    /* Override inline padding/margin for mobile */
    section[style*="padding"] {
        padding: 50px 15px !important;
    }

    /* CTA buttons in rows */
    div[style*="display: flex"][style*="gap"] a.btn {
        width: 100%;
        max-width: 280px;
        margin: 8px auto !important;
    }

    /* Feature cards image containers */
    div[style*="height: 200px"] {
        height: 150px !important;
    }

    /* Stat cards in "Why Choose Us" */
    div[style*="grid-template-columns: repeat(auto-fit"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Calendar grid */
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr) !important;
        font-size: 0.85rem;
    }

    /* Offer badges and labels */
    .offer-badge,
    .badge {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
    }

    /* Social links */
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* Simplify hover effects on mobile */
    .feature-card:hover,
    .stat-card:hover,
    .card:hover {
        transform: none !important;
    }

    /* Responsive iframe (for maps, videos) */
    iframe {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }

    /* Footer map container */
    .map-container {
        height: 250px !important;
    }

    .map-container iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

/* Tablet specific overrides */
@media (min-width: 576px) and (max-width: 991.98px) {

    /* Adjust padding for tablets */
    section[style*="padding"] {
        padding: 60px 25px !important;
    }

    /* Map container */
    .map-container {
        height: 300px !important;
    }

    /* Better button layout */
    div[style*="display: flex"][style*="gap"] {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Landscape phone orientation fix */
@media (max-width: 991.98px) and (orientation: landscape) {

    .hero-slider,
    .swiper-container {
        height: 100vh !important;
        min-height: 400px !important;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 1001;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {

    header,
    footer,
    .menu-toggle,
    .swiper-button-next,
    .swiper-button-prev,
    #preloader {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
    }
}