@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');

:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --text: #1a1a1a;
    --muted: #6b7280;
    --primary: #fe2c55;
    --accent: #25f4ee;
    --success: #18c964;
    --danger: #ff4d4f;
    --border: #e5e7eb;
    --header-bg: #2a1a1f;
    --header-text: #ffffff;
    --book-btn-bg: #ffe5e8;
    --book-btn-text: #8b1a2a;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    font-family: 'Alan Sans', sans-serif;
}

body {
    margin: 0;
    padding-top: 80px; /* Account for larger fixed header height */
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#facilities {
    scroll-margin-top: 110px;
}

a {
    color: #0ea5e9;
    text-decoration: none;
}

main p {
    margin: 0 0 12px 0;
    max-width: 70ch;
}

h1, h2, h3 {
    line-height: 1.25;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

/* Desktop typography scaling */
@media (min-width: 1200px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    body {
        font-size: 17px;
        line-height: 1.7;
    }
}

@media (min-width: 1400px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    body {
        font-size: 18px;
        line-height: 1.75;
    }
}

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

/* Desktop container optimization */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 4rem;
    }
}

.tt-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--header-bg);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10050 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 100% !important;
}

.tt-cta-header {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-cta-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.tt-cta-buttons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tt-header nav#site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-pill .nav-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.nav-pill .nav-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.nav-pill .nav-label {
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

.nav-pill:hover {
    background: #212121;
    color: #ffffff;
}

.nav-pill.active {
    color: #ff3b5c;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
}

/* Remove legacy active background on header links */
.tt-header nav a.active {
    background: transparent;
    color: #ff3b5c;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.follow-btn {
    background: #fe2c55;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.35);
}

.follow-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(254, 44, 85, 0.45);
}

.message-btn {
    background: #1f1f1f;
    color: #ffffff;
    border: 1px solid #2c2c2c;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

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

.tt-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10051 !important;
}

.tt-cta-header .container {
    justify-content: space-between;
    gap: 12px;
    height: 64px;
    padding: 0 1.5rem;
}

/* Desktop header optimization */
@media (min-width: 1200px) {
    .tt-header .container {
        padding: 0;
    }
}

@media (min-width: 1400px) {
    .tt-header .container {
        padding: 0;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    padding-left: -5px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--header-text);
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 38px;
    height: 38px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo-image.small {
    width: 30px;
    height: 30px;
    margin-right: 0;
    border-radius: 10px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--header-text);
    line-height: 1;
    text-transform: uppercase;
}

.logo-subtext {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: var(--header-text);
    opacity: 0.9;
    margin-top: 3px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 0;
}

.tt-header nav a {
    margin: 0 4px;
    color: var(--header-text);
    padding: 10px 14px;
    border-radius: 6px;
    transition: all .3s ease;
    font-weight: 500;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.tt-header nav a:hover {
    background: #212121;
    color: var(--header-text);
}

.tt-header nav a.header-phone {
    color: var(--header-text);
    font-weight: 500;
    padding: 10px 12px;
    margin: 0 8px;
    text-decoration: none;
}

.tt-header nav a.header-phone:hover {
    background: transparent;
    opacity: 0.8;
}

.tt-header nav a.header-social,
.tt-cta-buttons a.header-social {
    color: #ffffff;
    padding: 8px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tt-header nav a.header-social svg,
.tt-cta-buttons a.header-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    color: #ffffff;
}

.tt-header nav a.header-social:hover,
.tt-cta-buttons a.header-social:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.9;
    transform: translateY(-1px);
}

.tt-cta-buttons a.header-social svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

.tt-header nav a.active {
    background: transparent;
    color: #ff3b5c;
    box-shadow: none;
}

/* Show navigation on desktop for public site */
.tt-header nav:not(#admin-nav) {
    display: flex;
    align-items: center;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 -5px 0 0;
    gap: 0.5rem;
}

@media (min-width: 769px) {
    .tt-header nav:not(#admin-nav) {
        display: flex;
        align-items: center;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
    }
    
    .tt-header nav:not(#admin-nav) a {
        display: inline-block;
        margin: 0;
        min-width: auto;
        padding: 10px 16px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .tt-header nav:not(#admin-nav) a:hover {
        background: #212121;
        transform: translateY(-1px);
    }
    
    .tt-header nav:not(#admin-nav) a.btn-primary {
        background: var(--book-btn-bg);
        color: var(--book-btn-text);
        font-weight: 600;
        margin-left: 1rem;
        padding: 12px 28px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.5px;
    }
    
    .tt-header nav:not(#admin-nav) a.btn-primary:hover {
        background: #ffd6dc;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
}

/* Hide admin header content except hamburger menu */
header.tt-header .container .logo {
    display: none !important;
}

/* Admin navigation styles - hidden by default on all screen sizes */
header.tt-header .container #admin-nav {
    position: absolute !important;
    top: 48px !important;
    left: 8px !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.08) !important;
    padding: 8px !important;
    border-radius: 12px !important;
    display: none !important;
    z-index: 19 !important;
    min-width: 200px !important;
}

header.tt-header .container #admin-nav.open {
    display: block !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.08) !important;
}

.tt-header #admin-nav a {
    display: block;
    margin: 4px 0;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

.tt-header #admin-nav a:hover {
    background: #f3f4f6;
    color: #111418;
}

.tt-header #admin-nav a.active {
    background: rgba(0, 0, 0, 0.2);
    color: #0b0c0f;
}

/* Red logout button in admin navigation */
header.tt-header .container #admin-nav a.btn-secondary,
header.tt-header .container #admin-nav a[href="logout.php"] {
    background: #dc2626 !important;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    border: 1px solid #dc2626 !important;
    border-color: #dc2626 !important;
}

header.tt-header .container #admin-nav a.btn-secondary:hover,
header.tt-header .container #admin-nav a[href="logout.php"]:hover {
    background: #b91c1c !important;
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #ffffff !important;
}

/* Additional logout button styling for maximum specificity */
#admin-nav a[href*="logout"] {
    background: #dc2626 !important;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    border: 1px solid #dc2626 !important;
}

#admin-nav a[href*="logout"]:hover {
    background: #b91c1c !important;
    background-color: #b91c1c !important;
    color: #ffffff !important;
}

/* Hamburger menu styles removed - using logo instead */

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #000000;
    color: white;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}

.btn-primary.book-online {
    background: var(--book-btn-bg);
    color: var(--book-btn-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary.book-online:hover {
    background: #ffd6dc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--header-bg);
    color: var(--header-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover:not(.book-online) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.4);
    background: #000000;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #2a2a2a;
}

.btn-primary.book-header {
    color: var(--book-btn-text) !important;
    background: var(--book-btn-bg) !important;
}

.btn-primary.book-header:hover {
    color: var(--book-btn-text) !important;
    background: #ffd6dc !important;
}

.hero {
    padding: 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
    z-index: 3;
    position: relative;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: #ffffff;
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.hero-phone-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 2rem 0;
}

/* Desktop features optimization */
@media (min-width: 1200px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 3rem 0;
    }
}

.card {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.card > * {
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary);
}

/* Card Icon */
.card-icon {
    display: none;
}

/* Card Typography */
.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center !important;
    width: 100%;
    display: block;
    padding: 0;
}

.card p {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center !important;
    display: block;
    width: 100%;
    padding: 0;
}

/* Card Number Badge */
.card-number {
    display: none;
}

.price {
    color: var(--accent);
    font-weight: 700;
}

/* Page hero + prose for centered, readable content */
.page-hero {
    padding: 52px 0;
    background: transparent;
}

.page-hero h1 {
    font-size: 32px;
    margin: 0 0 8px 0;
    text-align: center;
}

.page-hero p {
    color: #4b5563;
    text-align: center;
    margin: 0 auto;
    max-width: 70ch;
}

.prose {
    max-width: 1100px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

/* Accent band and center helpers */
.section-accent {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.card.center {
    text-align: center;
}

.lp-footer {
    background: #0f0f0f;
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
    font-size: 13px;
}

.lp-footer .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo-mark {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.footer-brand .logo-mark span {
    color: #fe2c55;
}

.footer-brand p {
    line-height: 1.5;
    margin: 8px 0 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.footer-socials a:hover {
    background: #fe2c55;
    color: #fff;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #fe2c55;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fe2c55;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 0;
}

.full {
    grid-column: 1 / -1;
}

label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #334155;
}

input, select, textarea {
    background: #ffffff;
    border: 1px solid var(--border);
    color: #111418;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
}

input::placeholder, textarea::placeholder {
    color: #94a3b8;
}

input:focus, select:focus, textarea:focus, .cal-day:focus, .time-slot:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}

.tt-searchable-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.tt-searchable-select-native {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.tt-searchable-select-shell {
    position: relative;
    width: 100%;
}

.tt-searchable-select-input {
    width: 100%;
    padding-right: 44px;
}

.tt-searchable-select-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.tt-searchable-select-toggle svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
}

.tt-searchable-select-toggle:hover {
    background: rgba(148, 163, 184, 0.16);
    color: #0f172a;
}

.tt-searchable-select-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-height: 260px;
    overflow: auto;
    padding: 6px;
}

.tt-searchable-select-options {
    display: grid;
    gap: 4px;
}

.tt-searchable-select-option,
.tt-searchable-select-empty {
    width: 100%;
    text-align: left;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    background: transparent;
    color: #111418;
    font: inherit;
}

.tt-searchable-select-option {
    cursor: pointer;
}

.tt-searchable-select-option:hover,
.tt-searchable-select-option.is-active,
.tt-searchable-select-option.is-selected {
    background: rgba(254, 44, 85, 0.08);
    color: var(--primary);
}

.tt-searchable-select-empty {
    color: var(--muted);
    cursor: default;
}

/* .services-page{/* Background now applied globally to body */*/
.services-section {
    padding: 10px 20px 40px 20px; /* top right bottom left */
}

/* .about-page{/* Background now applied globally to body */*/
.about-section {
    padding: 10px 20px 40px 20px; /* top right bottom left */
}

/* .facilities-page{/* Background now applied globally to body */*/
.facilities-section {
    padding: 10px 20px 40px 20px; /* top right bottom left */
}

/* Add padding to main page sections */
.hero {
    padding: 74px 0 64px 0; /* top right bottom left - Increased top padding */
}

.features {
    padding: 20px 0 20px 0; /* top right bottom left */
}

.split {
    padding: 20px 20px 20px 20px; /* top right bottom left */
}

.testimonials {
    padding: 20px 20px 20px 20px; /* top right bottom left */
}

.hours {
    padding: 20px 0 20px 0; /* top right bottom left */
}

.page-hero {
    padding: 20px 0 20px 0; /* top right bottom left */
}
/* Modern Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 24px 0;
}

/* Modern Service Cards */
.service-card {
    position: relative;
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    color: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Service Card Header with Icon */
.service-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.service-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    color: white;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-align: center;
}

.service-card p {
    font-size: 0.9rem;
    color: #9CA3AF;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex-grow: 1;
    text-align: center;
    max-width: 280px;
}

/* Modern Price Tag */
.price-tag {
    background: #000000;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin: 12px 0;
    display: inline-block;
    text-align: center;
    width: 100%;
}

/* Modern Book Button */
.service-card .btn-primary {
    background: #000000;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.service-card .btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
    filter: saturate(110%);
}

/* Popular Tag */
.popular-tag {
    position: absolute;
    top: -6px;
    right: 12px;
    background: #000000;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Service Categories Filter */
.service-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 32px;
    padding: 0 20px;
    width: 100%;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,188,212,0.2);
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn.active {
    background: #000000;
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,188,212,0.3);
}

.filter-btn.active::before {
    left: 0;
}

/* Best Deals Section */
.best-deals {
    padding: 80px 0;
    background: var(--bg);
}

.best-deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.best-deals-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.best-deals-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 8px;
}

.best-deals-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.deal-card {
    position: relative;
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    justify-content: center;
    color: white;
}

.deal-card.featured {
    background: var(--header-bg);
    color: var(--header-text);
    border-color: var(--header-bg);
}

.deal-card.featured h3 {
    color: var(--header-text);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.deal-number {
    display: none;
}

.deal-card.featured .deal-number {
    display: none;
}

.deal-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.deal-card.featured .deal-icon {
    background: transparent;
}

.deal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    line-height: 1.2;
}

.deal-card p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-filters {
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        padding: 0 16px;
        gap: 0.5rem;
    }
    
    .best-deals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .best-deals-title {
        font-size: 2rem;
    }
    
    .best-deals-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.alert {
    padding: 10px 14px;
    border-radius: 10px;
    margin: 10px 0;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    padding: 24px 0;
}

/* Desktop split optimization */
@media (min-width: 1200px) {
    .split {
        gap: 32px;
        padding: 3rem 0;
    }
}

.split .card {
    height: 100%;
}

.muted {
    color: #D1D5DB;
}

.about-text {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bullets {
    display: none;
}

.about-card .list {
    margin: 0 0 12px 0;
    padding-left: 18px;
}

.testimonials {
    padding: 12px 0 24px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.hours {
    padding: 12px 0 36px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 8px 0;
}

.hours-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #1A1A1A;
}

.hours-grid div span {
    color: #6B7280;
    font-weight: 500;
}

.hours-grid div strong {
    color: #1A1A1A;
    font-weight: 700;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

/* Facilities grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.facility-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
}

.auth-container {
    display: grid;
    place-items: center;
    height: 100vh;
}

.auth-form {
    width: 100%;
    max-width: 380px;
}

.auth-form h2 {
    margin: 0 0 8px 0;
    text-align: center;
}

.auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.auth-brand .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.auth-brand .dot.p {
    background: var(--primary);
}

.auth-brand .dot.a {
    background: var(--accent);
}

.auth-muted {
    color: #64748b;
    text-align: center;
    margin-bottom: 12px;
}

/* Admin panels */
.panel {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    color: white;
}

.map {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 12px;
}

/* Booking calendar */
.calendar-time-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.calendar {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cal-header button {
    background: #f3f4f6;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 6px 10px;
}

.cal-title {
    font-weight: 700;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin: 8px 0;
    color: var(--muted);
}

.cal-weekdays div {
    text-align: center;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.cal-day.selected {
    outline: 2px solid var(--accent);
}

.cal-day.disabled {
    opacity: .5;
}

.time-slots {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.time-slots-header {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.time-slots-body {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.time-slot {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 8px;
}

.time-slot.selected {
    outline: 2px solid var(--primary);
}

.time-slot:hover {
    border-color: #343a48;
}

.time-slot.disabled {
    opacity: .5;
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.time-slot.disabled:hover {
    border-color: #dee2e6;
    background: #f8f9fa;
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10052;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: #000000;
    z-index: 10060;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10055;
}

.mobile-menu-backdrop.open {
    display: block;
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

.mobile-menu.open {
    display: flex !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #000000;
    position: relative;
    top: 0;
    z-index: 10061;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo .logo-image.small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.mobile-menu-logo .logo-text-container {
    display: flex;
    flex-direction: column;
}

.mobile-menu-logo .logo-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-menu-logo .logo-subtext {
    font-size: 10px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 0;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    touch-action: manipulation;
    pointer-events: auto;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.mobile-nav {
    display: flex !important;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin: 0;
    background: transparent;
    flex: 1;
    overflow: visible !important;
    height: auto !important;
}

.mobile-nav-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.mobile-nav-item .nav-icon {
    display: inline-flex !important;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-nav-item .nav-label {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit;
    text-align: center;
}

.mobile-nav-item .nav-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-item.mobile-book-btn {
    background: #fe2c55;
    color: #ffffff;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.35);
}

.mobile-nav-item.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(254, 44, 85, 0.45);
}

.mobile-social-links {
    display: flex !important;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.mobile-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Desktop: Show nav and CTA, hide mobile menu */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .desktop-cta {
        display: inline-flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Mobile: Hide desktop nav and CTA, show hamburger */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: none;
        flex-direction: column;
    }
    
    .mobile-menu.open {
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto;
    }
    
    /* Ensure mobile menu content is visible */
    .mobile-menu.open .mobile-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-nav-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-menu-header {
        display: flex !important;
        visibility: visible !important;
    }
    
    .mobile-menu.open .mobile-social-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-social-link {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .nav-label {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .calendar-time-wrapper {
        grid-template-columns: 1fr;
    }
    
    .time-slots-body {
        grid-template-columns: 1fr;
    }
    
    .split {
        grid-template-columns: 1fr;
    }
    
    /* Compact header on small screens */
    body {
        padding-top: 80px; /* Account for fixed header height on mobile */
    }
    
    .tt-header .container {
        height: 66px;
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .logo-container {
        flex: 1;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-subtext {
        font-size: 8px;
    }
    
    /* Ensure mobile menu content is visible */
    .mobile-menu.open .mobile-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-nav-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 480px) {
    .mobile-menu {
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-menu.open {
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open * {
        visibility: visible !important;
    }
    
    .mobile-menu-header {
        display: flex !important;
        padding: 1rem;
        visibility: visible !important;
    }
    
    .mobile-nav {
        display: flex !important;
        padding: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 400px;
        height: auto !important;
    }
    
    .mobile-nav-item {
        display: flex !important;
        padding: 14px 16px;
        font-size: 15px;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        width: 100% !important;
    }
    
    .mobile-nav-item .nav-label {
        color: #ffffff !important;
        visibility: visible !important;
        display: inline-block !important;
    }
    
    .mobile-nav-item .nav-icon {
        display: inline-flex !important;
        visibility: visible !important;
    }
}

/* Very small screens (366px and below) */
@media (max-width: 300px) {
    .mobile-menu {
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-menu.open {
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 300px !important;
        height: auto !important;
    }
    
    .mobile-menu.open .mobile-nav-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        width: 100% !important;
    }
    
    .mobile-menu.open .mobile-nav-item .nav-label {
        display: inline-block !important;
        visibility: visible !important;
        color: #ffffff !important;
    }
    
    .mobile-menu.open .mobile-nav-item .nav-icon {
        display: inline-flex !important;
        visibility: visible !important;
    }
    
    .mobile-menu.open .mobile-social-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu.open .mobile-social-link {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-logo .logo-text {
        font-size: 16px;
    }
    
    .mobile-menu-logo .logo-subtext {
        font-size: 9px;
    }
    
    .mobile-menu-logo .logo-image.small {
        width: 35px;
        height: 35px;
    }
    
    .mobile-social-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-social-link {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        margin-right: 8px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .tt-header nav a {
        padding: 6px 8px;
        margin: 0 4px;
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 8px 10px;
        border-radius: 8px;
    }
    
    /* Hide navigation on mobile for public site */
    .tt-header nav:not(#admin-nav) {
        display: none !important;
    }
    
    .tt-header nav a.header-phone {
        display: none;
    }
    
    .tt-header nav a.header-social {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero .container {
        min-height: 500px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Admin navigation mobile adjustments */
    .tt-header #admin-nav {
        top: 80px;
        left: 8px;
        min-width: 180px;
    }
    
    /* Mobile responsive improvements for new components */
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .best-deals-title {
        font-size: 1.8rem;
    }
    
    .deal-card {
        padding: 24px 16px;
        min-height: 180px;
    }
    
    .deal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    flex: 1;
    max-width: 80px;
    position: relative;
}

.bottom-nav-item .nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s ease;
}

.bottom-nav-item .nav-label {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: 1;
}

.bottom-nav-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.bottom-nav-item.active {
    opacity: 1;
}

.bottom-nav-item.active .nav-icon {
    transform: scale(1.1);
}

/* Create/Upload Button - Special Styling */
.bottom-nav-item.create-btn {
    max-width: 60px;
    padding: 0;
    margin: -8px 0;
}

.bottom-nav-item.create-btn .create-button-wrapper {
    width: 48px;
    height: 48px;
    background: #000000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 2px;
}

.bottom-nav-item.create-btn .create-button-wrapper::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: #ffffff;
    z-index: 0;
}

.bottom-nav-item.create-btn .nav-icon {
    color: #000000;
    font-size: 28px;
    font-weight: 300;
    width: auto;
    height: auto;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.bottom-nav-item.create-btn:hover .create-button-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.bottom-nav-item.create-btn .nav-label {
    display: none;
}

/* Icon Styles - Support for various icon implementations */
.bottom-nav-item .nav-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* For filled home icon (active state) */
.bottom-nav-item.active .nav-icon svg.home-icon {
    fill: currentColor;
    stroke: none;
}

/* Icon font support (Font Awesome, Material Icons, etc.) */
.bottom-nav-item .nav-icon i,
.bottom-nav-item .nav-icon [class*="icon"] {
    font-size: 24px;
    line-height: 1;
}

/* Active State for Icons */
.bottom-nav-item.active .nav-icon {
    filter: brightness(1.2);
}

/* Responsive: Hide on desktop, show on mobile */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for bottom nav */
    }
    
    .bottom-nav {
        display: flex;
    }
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-footer .wrap {
        padding: 0 32px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Global anti-overlap safety layer */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img,
video,
canvas,
svg,
iframe {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
}

th,
td,
p,
span,
a,
button,
label,
li,
small,
strong,
em,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

[class*="card"],
[class*="header"],
[class*="footer"],
[class*="bar"],
[class*="actions"],
[class*="panel"],
[class*="modal"],
[class*="dropdown"],
[class*="alert"],
[class*="toast"],
[class*="badge"],
[class*="item"],
[class*="row"],
[class*="col"] {
    min-width: 0;
}

button,
.btn,
.nav-link,
.action-btn,
.chip,
.badge {
    white-space: normal;
    line-height: 1.2;
}
