/* Custom Styles for TurfBooking - Dark Theme */

/* Color Variables */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --card-bg: #1e1e1e;
    --hover-bg: #2a2a2a;
    --border-color: #333333;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-primary: #00ff88;
    --accent-secondary: #00d4ff;
    --accent-gradient: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --danger: #ff4757;
    --warning: #ffa502;
    --success: #26de81;
    --info: #00d4ff;
}

@supports (-webkit-touch-callout: none) {
    .search-bar-container input[type="date"] {
        min-height: 44px;
    }
}

/* General */
html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* User portal: premium global button system */
body.user-portal .btn {
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.1;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.user-portal .btn.btn-sm {
    padding: 8px 12px;
    min-height: 38px;
    border-radius: 11px;
    font-weight: 700;
}

body.user-portal .btn.btn-lg {
    padding: 12px 18px;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 800;
}

body.user-portal .btn i,
body.user-portal .btn .fas,
body.user-portal .btn .far,
body.user-portal .btn .fab {
    line-height: 1;
}

body.user-portal .btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    box-shadow: 0 3px 10px rgba(34,197,94,0.25);
    color: #fff;
}
body.user-portal .btn-primary:hover {
    box-shadow: 0 4px 14px rgba(34,197,94,0.40);
    color: #fff;
}

body.user-portal .btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    box-shadow: 0 3px 10px rgba(34,197,94,0.25);
    color: #fff;
}
body.user-portal .btn-success:hover {
    box-shadow: 0 4px 14px rgba(34,197,94,0.40);
    color: #fff;
}

body.user-portal .btn-outline-secondary,
body.user-portal .btn-secondary {
    background: transparent;
    border: 1px solid rgba(55,65,81,0.95);
    color: rgba(229,231,235,0.92);
}
body.user-portal .btn-outline-secondary:hover,
body.user-portal .btn-secondary:hover {
    background: rgba(31,41,55,0.85);
    color: #fff;
}

body.user-portal .btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(59,130,246,0.65);
    color: rgba(191,219,254,0.95);
}
body.user-portal .btn-outline-primary:hover {
    background: rgba(59,130,246,0.12);
    color: #fff;
}

body.user-portal .btn-outline-danger {
    background: transparent;
    border: 1px solid rgba(239,68,68,0.65);
    color: rgba(254,202,202,0.95);
}
body.user-portal .btn-outline-danger:hover {
    background: rgba(239,68,68,0.12);
    color: #fff;
}

body.user-portal .btn-link {
    border: none;
    min-height: auto;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 800;
}

/* User portal design system: friendly iOS-style surfaces and forms */
body.user-portal .card,
body.user-portal .filter-section,
body.user-portal .detail-card,
body.user-portal .review-card,
body.user-portal .checkout-card,
body.user-portal .summary-card,
body.user-portal .booking-card,
body.user-portal .turf-card,
body.user-portal .public-booking-modal-content,
body.user-portal .turfio-premium-modal-content,
body.user-portal .modal-content {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
        var(--card-bg);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 1px 0 rgba(255,255,255,0.06) inset;
}

body.user-portal .card-header,
body.user-portal .modal-header,
body.user-portal .modal-footer {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.10);
}

body.user-portal .card-body,
body.user-portal .modal-body {
    background: transparent;
}

body.user-portal .form-control,
body.user-portal .form-select,
body.user-portal textarea.form-control {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.055);
    color: var(--text-primary);
    font-size: 16px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.user-portal textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

body.user-portal .form-control:focus,
body.user-portal .form-select:focus,
body.user-portal textarea.form-control:focus {
    background: rgba(255,255,255,0.075);
    border-color: rgba(34,197,94,0.72) !important;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.14) !important;
    outline: none !important;
}

body.user-portal .form-label,
body.user-portal label {
    color: rgba(255,255,255,0.74);
    font-weight: 750;
    letter-spacing: 0;
}

body.user-portal .input-group-text {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.055);
    color: rgba(255,255,255,0.76);
    border-radius: 16px;
}

body.user-portal .form-check,
body.user-portal .option-item,
body.user-portal .payment-method {
    border-radius: 16px;
}

body.user-portal .form-check:not(.form-switch) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

body.user-portal .form-check-input {
    accent-color: #22c55e;
}

body.user-portal .form-check-input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.22);
    background-color: rgba(255,255,255,0.06);
}

body.user-portal .option-item,
body.user-portal .payment-method {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

body.user-portal .option-item:hover,
body.user-portal .payment-method:hover {
    background: rgba(255,255,255,0.065);
    border-color: rgba(34,197,94,0.24);
}

body.user-portal .payment-method.selected,
body.user-portal .option-item:has(input:checked) {
    background: rgba(34,197,94,0.11);
    border-color: rgba(34,197,94,0.42);
    box-shadow: 0 0 0 1px rgba(34,197,94,0.12) inset;
}

body.user-portal .booking-card {
    border-radius: 18px;
    padding: 14px 16px;
}

body.user-portal .booking-card::before {
    width: 5px;
    border-radius: 18px 0 0 18px;
}

body.user-portal .booking-card:hover,
body.user-portal .turf-card:hover,
body.user-portal .detail-card:hover {
    border-color: rgba(34,197,94,0.24);
    box-shadow: 0 24px 54px rgba(0,0,0,0.30), 0 1px 0 rgba(255,255,255,0.08) inset;
}

body.user-portal .nav-pills {
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

body.user-portal .nav-pills .nav-link {
    border-radius: 14px;
    color: rgba(255,255,255,0.70);
    font-weight: 800;
}

body.user-portal .nav-pills .nav-link.active {
    background: linear-gradient(135deg, rgba(34,197,94,0.28), rgba(6,182,212,0.18));
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(34,197,94,0.20) inset;
}

body.user-portal .table-responsive {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    overflow: hidden;
}

body.user-portal .table {
    color: var(--text-primary);
}

body.user-portal .table > :not(caption) > * > * {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.08);
}

body.user-portal .alert,
body.user-portal .toast {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.24);
}

body.user-portal .time-slot {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.045);
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

body.user-portal .time-slot.selected {
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    border-color: rgba(255,255,255,0.20);
    color: #06110d;
    box-shadow: 0 14px 32px rgba(34,197,94,0.24);
}

@media (max-width: 768px) {
    body.user-portal .card,
    body.user-portal .filter-section,
    body.user-portal .detail-card,
    body.user-portal .checkout-card,
    body.user-portal .summary-card,
    body.user-portal .booking-card,
    body.user-portal .turf-card,
    body.user-portal .modal-content {
        border-radius: 18px;
    }

    body.user-portal .form-control,
    body.user-portal .form-select,
    body.user-portal textarea.form-control {
        min-height: 48px;
        border-radius: 16px;
        font-size: 16px;
    }
}

/* Design system utilities: replace one-off inline layout styles on user pages. */
.ui-select-compact {
    width: auto;
    min-width: 110px;
}

.ui-success-text {
    color: rgba(34, 197, 94, 1) !important;
}

.ui-clickable-card {
    cursor: pointer;
}

.ui-truncate-70 {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* User portal: keep compact action areas compact (do not upscale like primary buttons) */
body.user-portal .search-bar-container .btn,
body.user-portal .hero-search-form .btn,
body.user-portal .hero-search-form .hero-search-button,
body.user-portal .hero-search-form .hero-search-btn {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0;
    gap: 6px;
}

@media (max-width: 768px) {
    body.user-portal .search-bar-container .btn,
    body.user-portal .hero-search-form .btn,
    body.user-portal .hero-search-form .hero-search-button,
    body.user-portal .hero-search-form .hero-search-btn {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 10px;
    }
}

/* Checkout: Booking confirmation modal (premium compact) */
body.user-portal #bookingConfirmationModal .modal-content{
    background:#0b1220;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
}
body.user-portal #bookingConfirmationModal .dialog-header{
    background: linear-gradient(135deg,#1f2937,#111827);
    color:#fff;
    padding:14px 18px;
    font-weight:600;
    font-size:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #2d3748;
}
body.user-portal #bookingConfirmationModal .dialog-header .modal-title{
    margin:0;
    font-size:16px;
    font-weight:600;
    letter-spacing:0.2px;
}
body.user-portal #bookingConfirmationModal .dialog-body{
    padding:14px 16px;
    color:#e5e7eb;
}
body.user-portal #bookingConfirmationModal .dialog-subtitle{
    color:#9ca3af;
    font-size:13px;
    margin-top:2px;
}
body.user-portal #bookingConfirmationModal .booking-card{
    background:rgba(255,255,255,0.04);
    border-radius:10px;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,0.06);
    margin-top:12px;
}
body.user-portal #bookingConfirmationModal .booking-row{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:6px 0;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,0.06);
}
body.user-portal #bookingConfirmationModal .booking-row:last-child{
    border-bottom:none;
}
body.user-portal #bookingConfirmationModal .booking-label{
    color:#9ca3af;
    flex:0 0 auto;
}
body.user-portal #bookingConfirmationModal .booking-value{
    color:#ffffff;
    font-weight:500;
    text-align:right;
    flex:1 1 auto;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
body.user-portal #bookingConfirmationModal .booking-amount{
    color:#22c55e;
    font-size:16px;
    font-weight:600;
}
body.user-portal #bookingConfirmationModal .payment-note{
    background:rgba(59,130,246,0.12);
    border-left:3px solid #3b82f6;
    padding:10px 12px;
    border-radius:8px;
    font-size:13px;
    color:#cbd5f5;
    margin-top:12px;
    display:flex;
    gap:8px;
    align-items:flex-start;
}
body.user-portal #bookingConfirmationModal .payment-note i{
    margin-top:1px;
    color:#93c5fd;
}
body.user-portal #bookingConfirmationModal .dialog-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    padding:12px 16px 16px;
    border-top:1px solid rgba(255,255,255,0.06);
    background:rgba(255,255,255,0.02);
}

/* Checkout: Hold slot modal (premium compact) */
body.user-portal #holdSlotModal .modal-content{
    background:#0b1220;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
}
body.user-portal #holdSlotModal .dialog-header{
    background: linear-gradient(135deg,#1f2937,#111827);
    color:#fff;
    padding:14px 18px;
    font-weight:600;
    font-size:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #2d3748;
}
body.user-portal #holdSlotModal .dialog-header .modal-title{
    margin:0;
    font-size:16px;
    font-weight:600;
    letter-spacing:0.2px;
}
body.user-portal #holdSlotModal .dialog-body{
    padding:14px 16px;
    color:#e5e7eb;
}
body.user-portal #holdSlotModal .booking-card{
    background:rgba(255,255,255,0.04);
    border-radius:10px;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,0.06);
}
body.user-portal #holdSlotModal .hold-row{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding:6px 0;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,0.06);
}
body.user-portal #holdSlotModal .hold-row:last-child{
    border-bottom:none;
}
body.user-portal #holdSlotModal .hold-label{
    color:#9ca3af;
    flex:0 0 auto;
}
body.user-portal #holdSlotModal .hold-value{
    color:#ffffff;
    font-weight:500;
    text-align:right;
    flex:1 1 auto;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
body.user-portal #holdSlotModal .hold-timer{
    margin-top:12px;
    background:rgba(245,158,11,0.10);
    border-left:3px solid #f59e0b;
    padding:10px 12px;
    border-radius:8px;
    color:#fde68a;
}
body.user-portal #holdSlotModal .hold-timer .timer-value{
    font-size:18px;
    font-weight:700;
    color:#fbbf24;
    margin-top:2px;
}
body.user-portal #holdSlotModal .dialog-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    padding:12px 16px 16px;
    border-top:1px solid rgba(255,255,255,0.06);
    background:rgba(255,255,255,0.02);
}

/* Removed pageFadeIn animation to prevent footer flash */

.card,
.btn,
.form-control,
.navbar,
.dropdown-menu {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-bottom: none;
    color: var(--text-primary);
    min-height: auto;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, rgba(0,0,0,0) 1px);
    background-size: 18px 18px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-location-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(16, 185, 129, .28);
    border-radius: 999px;
    background: rgba(16, 185, 129, .1);
    color: #18f0b5;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 12px;
    text-transform: uppercase;
}

.hero-content .hero-title {
    font-size: 32px;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 16px;
    opacity: 0.85;
}

.seo-hidden-gwalior {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 32px 0 18px;
    }

    .hero-content .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
}

/* Search Bar */
.search-bar-container {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    max-width: min(100%, 980px);
    width: min(92vw, 980px);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-search-form {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) minmax(150px, 1fr) 54px;
    align-items: center;
    gap: 10px;
}

.hero-search-form .hero-search-item {
    min-width: 0;
}

.hero-search-form .hero-search-btn {
    flex: 0 0 auto;
}

.hero-search-form .hero-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    padding-left: 14px;
    padding-right: 14px;
}

.hero-search-button-text {
    display: inline;
}

.hero-search-static {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 48px;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-bar-container .form-control,
.search-bar-container .form-select,
.search-bar-container .btn {
    height: 48px;
    border-radius: 14px;
    box-sizing: border-box;
}

.search-bar-container input,
.search-bar-container select {
    border: none;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    padding: 0 12px;
    line-height: 48px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Ensure type select text is centered consistently */
.search-bar-container select {
    text-align-last: center;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    background-image: none;
    padding-left: 8px;
    padding-right: 8px;
    display: block;
    width: 100%;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}

.search-bar-container .hero-search-type .form-select {
    display: block;
    min-width: 0;
    height: 48px;
    line-height: 48px;
    text-align: center !important;
    text-align-last: center !important;
    -moz-text-align-last: center;
    padding-left: 34px !important;
    padding-right: 34px !important;
    font-weight: 800;
}

.search-bar-container .hero-search-type {
    position: relative;
}

.search-bar-container .hero-search-type::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-bar-container .hero-search-type::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
}

/* Try to center date text in hero search bar (desktop + mobile where supported) */
.search-bar-container input[type="date"] {
    text-align: center;
}

/* Custom date display (DD Mon) uses a read-only text input + a hidden native date input */
.date-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
}

@supports (-webkit-touch-callout: none) {
    /* iOS Safari: hidden date inputs with pointer-events:none often won't open picker reliably.
       Overlay the native input over the visible display input while keeping it fully transparent. */
    .hero-search-date .date-native,
    .filter-group .date-native {
        pointer-events: auto;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        z-index: 3;
    }

    .hero-search-date .js-date-display,
    .filter-group .js-date-display {
        position: relative;
        z-index: 2;
    }
}

.search-bar-container .hero-search-date,
.filter-group {
    position: relative;
}

.search-bar-container input[type="date"]::-webkit-datetime-edit,
.search-bar-container input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
    line-height: 44px;
}

.search-bar-container input[type="date"]::-webkit-datetime-edit,
.search-bar-container input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.search-bar-container input[type="date"]::-webkit-datetime-edit-text,
.search-bar-container input[type="date"]::-webkit-datetime-edit-month-field,
.search-bar-container input[type="date"]::-webkit-datetime-edit-day-field,
.search-bar-container input[type="date"]::-webkit-datetime-edit-year-field {
    text-align: center;
}

@media (max-width: 768px) {
    .search-bar-container {
        width: min(96vw, 560px);
        padding: 10px;
        border-radius: 16px;
        margin-top: 14px;
    }

    .search-bar-container .btn {
        padding: 10px;
        font-size: 0.92rem;
        border-radius: 13px;
    }
    .search-bar-container .btn i {
        margin-right: 0;
    }

    .search-bar-container .form-control,
    .search-bar-container .form-select,
    .search-bar-container .btn,
    .hero-search-static {
        height: 46px;
        border-radius: 13px;
    }

    .search-bar-container input,
    .search-bar-container select {
        padding: 0 9px;
        line-height: 46px;
        font-size: 14px;
    }

    .search-bar-container select {
        line-height: 46px;
    }

    .hero-search-static {
        font-size: 14px;
        line-height: 46px;
        padding: 0 9px;
    }

    .search-bar-container input[type="date"]::-webkit-datetime-edit,
    .search-bar-container input[type="date"]::-webkit-datetime-edit-fields-wrapper {
        line-height: 46px;
    }

    .hero-search-form {
        grid-template-columns: minmax(82px, .95fr) minmax(92px, 1fr) minmax(112px, 1fr) 46px;
        gap: 8px;
    }

    .hero-search-form .hero-search-location,
    .hero-search-form .hero-search-date {
        min-width: 0;
    }

    .search-bar-container .hero-search-type .form-select {
        font-size: 13px;
        height: 46px;
        line-height: 46px;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    .hero-search-form .hero-search-button {
        width: 46px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-search-button-text {
        display: none;
    }
}

@media (max-width: 430px) {
    .hero-content .hero-title {
        font-size: 24px;
    }

    .hero-content .hero-subtitle {
        font-size: 14px;
    }

    .search-bar-container {
        width: calc(100vw - 24px);
        padding: 8px;
    }

    .hero-search-form {
        grid-template-columns: minmax(70px, .9fr) minmax(76px, .9fr) minmax(86px, 1fr) 42px;
        gap: 6px;
    }

    .hero-search-form .hero-search-type {
        grid-column: auto;
    }

    .hero-search-form .hero-search-btn {
        grid-column: auto;
    }

    .hero-search-form .hero-search-button {
        width: 42px;
        min-width: 42px;
    }

    .search-bar-container .form-control,
    .search-bar-container .form-select,
    .search-bar-container .btn,
    .hero-search-static {
        height: 42px;
        border-radius: 12px;
    }

    .search-bar-container input,
    .search-bar-container select,
    .hero-search-static {
        font-size: 12px;
        line-height: 42px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .search-bar-container .hero-search-type .form-select {
        font-size: 12px;
        line-height: 42px;
        height: 42px;
        padding-left: 12px !important;
        padding-right: 22px !important;
        text-align: center !important;
        text-align-last: center !important;
    }

    .search-bar-container .hero-search-type::after {
        right: 8px;
        font-size: 9px;
    }
}

@media (max-width: 360px) {
    .search-bar-container {
        width: calc(100vw - 16px);
        padding: 7px;
    }

    .hero-search-form {
        grid-template-columns: minmax(62px, .9fr) minmax(68px, .9fr) minmax(76px, 1fr) 38px;
        gap: 5px;
    }

    .hero-search-form .hero-search-button {
        width: 38px;
        min-width: 38px;
    }

    .search-bar-container .form-control,
    .search-bar-container .form-select,
    .search-bar-container .btn,
    .hero-search-static {
        height: 38px;
        border-radius: 11px;
    }

    .search-bar-container input,
    .search-bar-container select,
    .search-bar-container .hero-search-type .form-select,
    .hero-search-static {
        font-size: 11px;
        line-height: 38px;
    }
}

.search-bar-container input::placeholder {
    color: var(--text-muted);
}

.search-bar-container .btn {
    background: var(--accent-gradient);
    border: none;
    color: var(--primary-bg);
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.search-bar-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

@media (max-width: 430px) {
    .search-bar-container .hero-search-button {
        width: 42px;
        min-width: 42px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 360px) {
    .search-bar-container .hero-search-button {
        width: 38px;
        min-width: 38px;
    }
}

.featured-section {
    padding-top: 14px !important;
}

/* Turf Cards */
.turf-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.turf-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.turf-coming-soon-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border: 1px solid rgba(34, 211, 238, .35);
    border-radius: 999px;
    background: rgba(8, 47, 73, .86);
    color: #67e8f9;
    font-weight: 900;
    padding: 7px 10px;
    box-shadow: 0 10px 26px rgba(6, 182, 212, .18);
}

.coming-soon-booking-alert {
    border: 1px solid rgba(34, 211, 238, .24);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8, 47, 73, .7), rgba(15, 23, 42, .7));
    color: rgba(255,255,255,.9);
}

.coming-soon-booking-alert strong {
    display: block;
    color: #67e8f9;
    font-size: 13px;
    text-transform: uppercase;
}

.turf-card-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.turf-card-body {
    padding: 20px;
    background: var(--card-bg);
    color: var(--text-primary);
}

.turf-rating {
    background: var(--accent-gradient);
    color: var(--primary-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.turf-detail-address {
    color: rgba(226, 232, 240, 0.78);
    font-weight: 700;
    line-height: 1.55;
    max-width: 760px;
}

.turf-detail-address i {
    color: rgba(148, 163, 184, 0.9);
    margin-right: 4px;
}

.turf-detail-chip-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.turf-detail-chip-row .turf-rating,
.turf-detail-chip {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.turf-detail-chip-row .turf-detail-rating {
    background: linear-gradient(135deg, #10b981, #22d3ee);
    color: #04110d;
    border-color: rgba(16, 185, 129, 0.32);
}

.turf-detail-chip-type {
    background: rgba(56, 189, 248, 0.16);
    color: rgba(226, 246, 255, 0.95);
}

.turf-detail-chip-surface {
    background: rgba(15, 23, 42, 0.78);
    color: rgba(226, 232, 240, 0.92);
    border-color: rgba(148, 163, 184, 0.24);
}

@media (max-width: 576px) {
    .turf-detail-address {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .turf-detail-chip-row {
        gap: 8px;
    }

    .turf-detail-chip-row .turf-rating,
    .turf-detail-chip {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.78rem;
        border-radius: 9px;
    }
}

.turf-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Turf card footer: keep price and Book Now button in one row */
.turf-card-footer-row {
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}

.turf-card-footer-row .turf-price {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 1.2rem;
}

.turf-card-footer-row .btn {
	flex-shrink: 0;
	white-space: nowrap;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.wishlist-btn.active {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

/* Featured badge on turf cards */
.turf-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Filters */
.filter-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-chip {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-chip:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.filter-chip.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--primary-bg);
    font-weight: 600;
}

/* Search results controls */
.search-page-container {
    max-width: 1180px;
}

.search-control-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 12px;
    margin-bottom: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.search-primary-grid {
    display: grid;
    grid-template-columns: minmax(124px, 1fr) minmax(124px, 1fr) minmax(150px, 1.15fr) minmax(118px, 0.75fr);
    gap: 10px;
    align-items: center;
}

.search-field {
    position: relative;
    min-width: 0;
}

.search-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    pointer-events: none;
}

.search-field .form-control,
.search-field .form-select,
.search-filter-group .form-control,
.search-filter-group .form-select,
.search-submit-btn,
.search-apply-btn {
    height: 48px;
    border-radius: 16px;
}

.search-field .form-control,
.search-field .form-select,
.search-filter-group .form-control,
.search-filter-group .form-select {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--text-primary);
    font-weight: 750;
}

.search-field .form-control,
.search-field .form-select {
    padding-left: 38px;
    padding-right: 14px;
    text-align: center;
    text-align-last: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-field-sport .form-select {
    appearance: none;
    -webkit-appearance: none;
}

.search-submit-btn,
.search-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 850;
    white-space: nowrap;
}

.search-submit-btn {
    box-shadow: 0 14px 32px rgba(0, 255, 136, 0.16);
}

.search-tools-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.search-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 800;
}

.search-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--primary-bg);
    font-size: 12px;
    font-weight: 900;
}

.search-clear-link {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.search-advanced-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1.4fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(104px, 0.7fr);
    gap: 12px;
    align-items: end;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-filter-group .form-label {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 850;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-row input {
    min-width: 0;
    flex: 1;
}

.price-row .price-sep {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
}

.search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.search-kicker {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.search-sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 220px;
}

.search-sort-control label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.search-sort-control .form-select {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-radius: 14px;
    min-height: 40px;
}

@media (max-width: 768px) {
    .search-control-panel {
        border-radius: 18px;
        padding: 10px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .search-primary-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
    }

    .search-field .form-control,
    .search-field .form-select,
    .search-filter-group .form-control,
    .search-filter-group .form-select,
    .search-submit-btn,
    .search-apply-btn {
        height: 45px;
        border-radius: 14px;
    }

    .search-field .form-control,
    .search-field .form-select {
        font-size: 14px;
        padding-left: 34px;
        padding-right: 10px;
    }

    .search-submit-btn {
        width: 100%;
    }

    .search-advanced-grid {
        grid-template-columns: 1fr;
    }

    .search-results-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .search-sort-control {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 390px) {
    .search-field .form-control,
    .search-field .form-select {
        font-size: 12px;
        padding-left: 28px;
        padding-right: 6px;
    }

    .search-field-icon {
        left: 10px;
        font-size: 11px;
    }

    .search-submit-btn span {
        display: none;
    }
}

/* Time Slots */
.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.time-slot {
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
}

.time-slot:hover {
    border-color: var(--accent-primary);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.time-slot.selected {
    border-color: transparent;
    background: var(--accent-gradient);
    color: var(--primary-bg);
    font-weight: 600;
}

.time-slot.booked {
    background: var(--secondary-bg);
    border-color: var(--text-muted);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Public booking slots should remain clickable even if booked */
.time-slot.booked.public-joinable {
    cursor: pointer;
    opacity: 0.9;
    border-color: var(--accent-secondary);
}

/* Public booking availability color rules */
.time-slot.booked.public-joinable.public-available {
    border-color: var(--success);
}

.time-slot.booked.public-joinable.public-low {
    border-color: var(--warning);
}

.time-slot.booked.public-joinable.public-full {
    border-color: var(--danger);
    opacity: 0.75;
}

.time-slot.booked.public-joinable:hover {
    border-color: var(--accent-primary);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

/* Public booking modal (dark theme) */
.public-booking-modal-content {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Premium dark modal theme (reusable) */
.turfio-premium-modal-content {
    background: #0b1220;
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.turfio-premium-modal-header {
    background: linear-gradient(135deg,#1f2937,#111827);
    color: #fff;
    padding: 14px 18px;
    border-bottom: 1px solid #2d3748;
}

.turfio-premium-modal-header .modal-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.turfio-premium-modal-header .btn-close {
    filter: invert(1);
}

.turfio-premium-modal-content .modal-body {
    padding: 14px 16px;
    color: #e5e7eb;
}

.turfio-premium-modal-actions,
.turfio-premium-modal-content .modal-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    padding: 12px 16px 16px;
}

.turfio-premium-modal-content .text-muted {
    color: rgba(156,163,175,0.95) !important;
}

.public-booking-modal-content .modal-header {
    border-bottom: 1px solid var(--border-color);
}

.public-booking-modal-content .modal-footer {
    border-top: 1px solid var(--border-color);
}

.public-booking-modal-content .modal-body {
    color: var(--text-primary);
}

.public-booking-modal-content hr {
    border-color: var(--border-color);
    opacity: 1;
}

.public-booking-modal-content .list-group-item {
    background: var(--secondary-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.public-booking-modal-content .text-muted {
    color: var(--text-muted) !important;
}

.time-slot.blocked {
    background: var(--secondary-bg);
    border-color: var(--danger);
    color: var(--danger);
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot.past {
    background: var(--secondary-bg);
    border-color: var(--text-muted);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.4;
}

.time-slot.past:hover {
    transform: none;
    border-color: var(--text-muted);
    background: var(--secondary-bg);
}

/* Booking Summary */
.booking-summary {
    position: sticky;
    top: 80px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.summary-total {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-main {
    grid-row: 1 / 3;
    grid-column: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Reviews */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.review-rating {
    color: var(--warning);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

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

/* Profile Page */
.profile-header {
    background: var(--card-bg);
    border: 2px solid var(--accent-primary);
    color: var(--text-primary);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.1;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--accent-primary);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Booking Status */
.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-confirmed {
    background: rgba(38, 222, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-cancelled {
    background: rgba(255, 71, 87, 0.2);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.status-completed {
    background: rgba(0, 212, 255, 0.2);
    color: var(--info);
    border: 1px solid var(--info);
}

.status-pending {
    background: rgba(255, 165, 2, 0.2);
    color: var(--warning);
    border: 1px solid var(--warning);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .search-bar-container {
        border-radius: 15px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 300px;
        height: auto;
    }
    
    .gallery-main {
        grid-row: 1;
        grid-column: 1;
    }
    
    .time-slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .time-slot {
        padding: 8px 6px;
        font-size: 0.85rem;
        min-height: 60px;
        touch-action: manipulation; /* Improve touch responsiveness */
    }
    
    .time-slot:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
    
    /* Loading spinner improvements for mobile */
    .loading-spinner {
        width: 30px;
        height: 30px;
        border: 3px solid var(--border-color);
        border-top: 3px solid var(--accent-primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .booking-summary {
        position: static;
        margin-top: 30px;
    }
    
    .turf-card-image {
        height: 180px;
    }
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.card-header {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.card-body {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* User portal reusable booking/pass cards */
.booking-grid {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .booking-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.booking-card {
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 12px;
    padding: 12px 14px;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    overflow: visible;
    z-index: 0;
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    border-color: rgba(148, 163, 184, .30);
    z-index: 2;
}

.booking-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
    background: rgba(148, 163, 184, .40);
}

.booking-card.confirmed::before,
.booking-card.active::before {
    background: rgba(34, 197, 94, .75);
}

.booking-card.cancelled::before,
.booking-card.rejected::before {
    background: rgba(239, 68, 68, .80);
}

.booking-card.pending::before {
    background: rgba(245, 158, 11, .85);
}

.booking-card.completed::before {
    background: rgba(168, 85, 247, .75);
}

.booking-card.expired::before {
    background: rgba(148, 163, 184, .55);
}

.booking-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.booking-main {
    min-width: 0;
}

.booking-title {
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 2px;
}

.booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.booking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.booking-amount {
    font-weight: 900;
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}

.booking-location,
.booking-secondary {
    opacity: .78;
    font-size: 0.88em;
}

.booking-location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.booking-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}

.pill-solid-success {
    background: rgba(34, 197, 94, .14);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, .30);
}

.pill-solid-danger {
    background: rgba(239, 68, 68, .14);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, .30);
}

.pill-solid-completed {
    background: rgba(168, 85, 247, .14);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, .30);
}

.pill-outline-warning {
    background: rgba(245, 158, 11, .08);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, .35);
}

.pill-outline-muted {
    background: rgba(148, 163, 184, .08);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, .28);
}

.pill-outline-info {
    background: rgba(56, 189, 248, .08);
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, .28);
}

.pill-outline-success {
    background: rgba(34, 197, 94, .06);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, .28);
}

.booking-actions .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-actions .btn.book-again-action {
    width: 58px;
    min-width: 58px;
    height: 48px;
    flex-direction: column;
    gap: 2px;
    border-radius: 14px;
    padding: 5px 6px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(34, 197, 94, .2);
}

.booking-actions .book-again-action i {
    font-size: 13px;
    margin: 0;
}

.booking-actions .book-again-action span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-actions .dropdown-toggle::after {
    display: none;
}

.booking-actions .dropdown-menu {
    background: rgba(17, 24, 39, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    z-index: 2000;
}

.booking-actions .dropdown-item {
    color: rgba(255, 255, 255, .88);
}

.booking-actions .dropdown-item:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

[data-mdb-theme="dark"] .pagination .page-link {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .85);
}

[data-mdb-theme="dark"] .pagination .page-link:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .16);
    color: #fff;
}

[data-mdb-theme="dark"] .pagination .page-item.active .page-link {
    background: rgba(59, 130, 246, .18);
    border-color: rgba(59, 130, 246, .35);
    color: #93c5fd;
}

[data-mdb-theme="dark"] .pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .35);
}

[data-mdb-theme="dark"] .form-select.form-select-sm {
    background-color: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
}

@media (max-width: 768px) {
    .bookings-page {
        padding-bottom: calc(3rem + 62px + var(--turfio-nav-bottom, 0px)) !important;
    }
}

@media (max-width: 480px) {
    .booking-top,
    .booking-row {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-amount {
        text-align: left;
        white-space: normal;
    }
}

/* Table Styles */
.table {
    color: var(--text-primary);
}

.table thead {
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--accent-primary);
}

.table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
    background: var(--hover-bg);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-left-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 0 10px var(--danger);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Button Styles */
body:not(.user-portal) .btn-primary {
    background: var(--accent-gradient);
    border: none;
    color: var(--primary-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

body:not(.user-portal) .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    color: var(--primary-bg);
}

body:not(.user-portal) .btn-secondary {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

body:not(.user-portal) .btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Form Controls */
.form-control,
.form-select {
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    background: var(--card-bg);
    border-color: var(--accent-primary) !important;
    color: var(--text-primary);
    box-shadow: none !important; /* avoid double focus outline/glow */
    outline: none !important;
}

/* Make sure MDB form-outline inputs also respect single-border focus */
.form-outline .form-control:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: none !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-secondary);
}

/* Consistent custom checks/radios across iOS Safari, Chrome, and desktop browsers */
.form-check:not(.form-switch) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.form-check-input[type="checkbox"],
.checkout-page .checkout-addon-checkbox[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin-top: 0.18rem;
    margin-left: 0;
    box-sizing: border-box;
    border: 1.5px solid rgba(148,163,184,.58);
    border-radius: 6px;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255,255,255,.055);
    background-image: none !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    transform: none !important;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.form-check-input[type="radio"],
.checkout-page .checkout-addon-checkbox[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin-top: 0.18rem;
    margin-left: 0;
    box-sizing: border-box;
    border: 1.5px solid rgba(148,163,184,.58);
    border-radius: 999px;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255,255,255,.055);
    background-image: none !important;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.form-check-input[type="checkbox"]:checked,
.checkout-page .checkout-addon-checkbox[type="checkbox"]:checked {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.4 3.7 5.8 9.3 3 6.5' fill='none' stroke='%2306110d' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.14);
}

.form-check-input[type="radio"]:checked,
.checkout-page .checkout-addon-checkbox[type="radio"]:checked {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: inset 0 0 0 4px #06110d, 0 0 0 4px rgba(0, 255, 136, 0.14);
}

.form-switch .form-check-input[type="checkbox"] {
    width: 42px !important;
    min-width: 42px !important;
    height: 24px !important;
    min-height: 24px !important;
    margin-top: 0;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.12);
    background-image: radial-gradient(circle at 11px 50%, rgba(255,255,255,0.95) 0 8px, transparent 8.5px) !important;
    background-size: 100% 100%;
}

.form-switch .form-check-input[type="checkbox"]:checked {
    background-image: radial-gradient(circle at 31px 50%, #06110d 0 8px, transparent 8.5px) !important;
}

.form-check-input:focus,
.checkout-page .checkout-addon-checkbox:focus {
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.16);
    outline: none;
}

.form-check-label {
    color: var(--text-secondary);
    line-height: 1.35;
    cursor: pointer;
}

.pass-terms-modal-body {
    color: var(--text-secondary);
}

.pass-terms-title {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.pass-terms-copy {
    max-height: 220px;
    overflow: auto;
    white-space: pre-line;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    line-height: 1.55;
}

.terms-check-row {
    align-items: flex-start;
    padding: 12px 14px !important;
    border: 1px solid rgba(20,184,166,0.22);
    border-radius: 16px;
    background: rgba(20,184,166,0.08);
}

/* Checkout page checkbox layout and size (avoid framework classes entirely) */
.checkout-page .checkout-check-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkout-page .checkout-addon-checkbox {
	margin: 0;
	flex: 0 0 auto;
	vertical-align: middle;
}

/* Links */
a {
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

/* Text Colors */
.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--accent-primary) !important;
}

/* Background Utilities */
.bg-dark {
    background-color: var(--card-bg) !important;
}

.bg-darker {
    background-color: var(--secondary-bg) !important;
}

/* Light background helpers: ensure readable dark text when using white/light sections */
.bg-light {
    background-color: #f8f9fa !important;
    color: #222 !important;
}

.bg-light .text-muted {
    color: #555 !important;
}

.hero-section {
    padding-top: 34px;
    padding-bottom: 28px;
}

.featured-section {
    padding-top: 18px;
    padding-bottom: 28px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 14px;
}

.trust-value {
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #fff;
}

.trust-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 28px;
        padding-bottom: 24px;
    }
    .trust-strip {
        grid-template-columns: 1fr;
    }
}

.venue-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.venue-carousel::-webkit-scrollbar {
    height: 8px;
}

.venue-carousel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}

.venue-carousel-item {
    flex: 0 0 360px;
    scroll-snap-align: start;
}

@media (max-width: 1200px) {
    .venue-carousel-item {
        flex-basis: 340px;
    }
}

@media (max-width: 992px) {
    .venue-carousel-item {
        flex-basis: 320px;
    }
}

@media (max-width: 768px) {
    .venue-carousel {
        gap: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }
    .venue-carousel-item {
        flex-basis: 86%;
    }
}

.turf-card-top-badges {
    position: absolute;
    left: 12px;
    top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.turf-badge {
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.turf-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.turf-rating-text {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.turf-price-prefix {
    display: inline-block;
    margin-right: 6px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
}

.partner-section {
    background: radial-gradient(1200px 420px at 20% 0%, rgba(0,255,136,0.10), transparent 60%),
        radial-gradient(900px 360px at 90% 10%, rgba(0,212,255,0.10), transparent 60%);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.partner-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

.partner-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-hero-title {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: 0;
    margin: 0 0 18px;
    color: var(--text-primary);
}

.partner-hero-copy {
    color: rgba(229,231,235,0.76);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.58;
    max-width: 720px;
    margin-bottom: 24px;
}

.partner-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0,255,136,0.10);
    border: 1px solid rgba(0,255,136,0.25);
    color: rgba(229,231,235,0.92);
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.partner-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.partner-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
    max-width: 620px;
}

.partner-proof-row div {
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
}

.partner-proof-row strong {
    display: block;
    color: #22c55e;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    margin-bottom: 6px;
}

.partner-proof-row span {
    display: block;
    color: rgba(229,231,235,0.72);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.partner-mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.partner-mockup-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px;
    min-height: 140px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}

.partner-mockup-title {
    font-weight: 900;
    font-size: 13px;
    color: rgba(229,231,235,0.92);
    margin-bottom: 10px;
}

.partner-mockup-body {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 10px;
    height: calc(100% - 28px);
}

.mockup-bar {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(34,197,94,0.7), rgba(0,212,255,0.55));
    margin-bottom: 10px;
}

.mockup-bar:nth-child(2) {
    width: 84%;
    opacity: 0.85;
}

.mockup-bar:nth-child(3) {
    width: 62%;
    opacity: 0.65;
    margin-bottom: 0;
}

.mockup-grid {
    height: 100%;
    border-radius: 12px;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 18px 18px;
}

.mockup-chip-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.mockup-chip {
    height: 20px;
    flex: 1 1 auto;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
}

.mockup-lines {
    display: grid;
    gap: 10px;
}

.mockup-line {
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.06);
}

.mockup-line:nth-child(2) {
    width: 86%;
}

.mockup-line:nth-child(3) {
    width: 70%;
}

.partner-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
}

.partner-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,212,255,0.12);
    border: 1px solid rgba(0,212,255,0.24);
    color: rgba(229,231,235,0.95);
    margin-bottom: 12px;
    font-size: 18px;
}

.partner-feature-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(229,231,235,0.82);
}

.partner-feature-list li {
    margin-bottom: 6px;
}

.partner-owner-fit {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(34,197,94,0.08), rgba(6,182,212,0.045)),
        rgba(255,255,255,0.035);
}

.partner-owner-fit-copy {
    padding: 12px;
}

.partner-owner-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.partner-owner-fit-grid div {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    background: rgba(0,0,0,0.16);
}

.partner-owner-fit-grid i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #06110d;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.partner-owner-fit-grid strong {
    color: var(--text-primary);
    font-weight: 900;
}

.partner-owner-fit-grid span {
    color: rgba(229,231,235,0.68);
    font-size: 13px;
    line-height: 1.45;
}

.partner-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.partner-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.partner-step-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(34,197,94,0.16);
    border: 1px solid rgba(34,197,94,0.30);
    color: rgba(229,231,235,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 10px;
}

.partner-step-title {
    font-weight: 900;
}

.partner-step-desc {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 13px;
}

.partner-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.partner-highlight {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 12px;
    color: rgba(229,231,235,0.90);
    font-weight: 800;
    display: flex;
    gap: 10px;
    align-items: center;
}

.partner-highlight i {
    color: rgba(0,212,255,0.95);
}

.partner-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.partner-stat-value {
    font-weight: 1000;
    font-size: 22px;
}

.partner-stat-label {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 13px;
    margin-top: 2px;
}

.partner-quote {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.partner-quote-mark {
    font-size: 44px;
    line-height: 1;
    font-weight: 1000;
    color: rgba(34,197,94,0.85);
}

.partner-quote-text {
    font-size: 18px;
    font-weight: 900;
    color: rgba(229,231,235,0.95);
}

.partner-quote-meta {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 13px;
}

.partner-sticky-cta {
    padding-top: 22px;
    padding-bottom: 22px;
    background: rgba(10,10,10,0.92);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.partner-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px 18px;
}

.partner-sticky-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.revenue-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.revenue-bar {
    height: 12px;
    border-radius: 20px;
    background: linear-gradient(90deg,#22c55e,#06b6d4);
    position: relative;
    overflow: hidden;
}

.revenue-bar:nth-child(1) {
    width: 92%;
}

.revenue-bar:nth-child(2) {
    width: 78%;
}

.revenue-bar:nth-child(3) {
    width: 60%;
}

.revenue-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.partner-booking-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 6px;
    margin-top: 15px;
}

.partner-booking-grid span {
    height: 22px;
    border-radius: 4px;
    background: #1f2937;
}

.partner-booking-grid span.active {
    background: #22c55e;
}

.partner-booking-grid span.medium {
    background: #06b6d4;
}

.partner-booking-grid span.low {
    background: #374151;
}

.slot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.slot-tag {
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.slot-tag.available {
    background: #16a34a;
}

.slot-tag.booked {
    background: #dc2626;
}

.slot-tag.peak {
    background: #0891b2;
}

.admin-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.admin-row {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

.admin-value {
    color: #22c55e;
    font-weight: 700;
}

@media (max-width: 992px) {
    .partner-hero {
        grid-template-columns: 1fr;
    }
    .partner-owner-fit {
        grid-template-columns: 1fr;
    }
    .partner-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .partner-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .partner-sticky-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .partner-proof-row,
    .partner-owner-fit-grid {
        grid-template-columns: 1fr;
    }

    .partner-hero-actions .btn,
    .partner-sticky-cta-actions .btn {
        width: 100%;
    }
}
