/* ===================================
   OneClub Club Page Styles
   =================================== */

/* CSS Variables */
:root {
    --color-gold: #D4AF37;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #D4AF37;
    --color-black: #000000;
    --color-dark: #0A0A0A;
    --color-dark-gray: #1A1A1A;
    --color-medium-gray: #2A2A2A;
    --color-light-gray: #888888;
    --color-white: #FFFFFF;
    --color-text: #E5E5E5;
    --color-text-muted: #999999;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}
/* ===================================
   Navigation - Apple Style
   =================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 70px;
    background: var(--color-black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    height: 48px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 1;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: var(--font-size-sm);
    font-weight: 400;
    letter-spacing: 0;
    color: var(--color-text);
    padding: 0;
    cursor: pointer;
    height: 48px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--color-black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-partner {
     display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.2s ease;
}


.btn-partner:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-dropdown {
    width: 100%;
}

.mobile-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-dropdown-trigger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-trigger:hover,
.mobile-nav-dropdown-trigger.active,
.mobile-nav-dropdown.open .mobile-nav-dropdown-trigger {
    color: var(--color-gold);
}

.mobile-nav-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--color-dark-gray);
    border-radius: var(--border-radius);
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-content {
    display: flex;
}

.mobile-nav-dropdown-content a {
    font-size: 1rem;
    color: var(--color-text-muted);
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-nav-dropdown-content a:hover {
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.mobile-nav-link.active {
    color: var(--color-gold);
}

.mobile-nav-divider {
    width: 50px;
    height: 1px;
    background: var(--color-medium-gray);
    margin: 0.5rem auto;
}

.btn-partner.mobile {
    margin-top: 1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at center top, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .text-white {
    color: var(--color-white);
}

.text-gold,
.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, #8B7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--color-gold);
    border: none;
    border-radius: 50px;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===================================
   Dashboard Preview Section
   =================================== */
.dashboard-section {
    padding: 6rem 2rem;
}

.dashboard-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: var(--color-dark);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: 1px solid var(--color-medium-gray);
    border-bottom: none;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--color-black);
}

.brand-text {
    font-weight: 600;
    color: var(--color-white);
}

.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
}

.dashboard-tab {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dashboard-tab:hover {
    color: var(--color-white);
}

.dashboard-tab.active {
    color: var(--color-white);
}

.dashboard-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
}

.dashboard-user {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
}

/* Dashboard Content */
.dashboard-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-dark-gray);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border: 1px solid var(--color-medium-gray);
    border-top: none;
    min-height: 400px;
    overflow: hidden;
}

.dashboard-panel {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.dashboard-panel.active {
    display: block;
}

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

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(201, 162, 39, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Dashboard Chart */
.dashboard-chart {
    background: var(--color-medium-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h3 {
    font-size: 1rem;
    color: var(--color-white);
}

.chart-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 150px;
    padding: 1rem 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-gold), var(--color-gold-light));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.chart-bar:hover {
    opacity: 0.8;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.activity-item:hover {
    background: rgba(201, 162, 39, 0.1);
}

.activity-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}

.activity-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-name {
    font-weight: 600;
    color: var(--color-white);
}

.activity-time {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.activity-slots {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

/* Booking List */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-medium-gray);
    border-radius: var(--border-radius);
}

.booking-user {
    font-weight: 600;
    color: var(--color-white);
}

.booking-activity {
    color: var(--color-text-muted);
}

.booking-date {
    color: var(--color-text-muted);
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-status.confirmed {
    background: rgba(39, 201, 82, 0.2);
    color: #27C952;
}

.booking-status.pending {
    background: rgba(201, 162, 39, 0.2);
    color: var(--color-gold);
}

/* Billing Summary */
.billing-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.billing-card {
    padding: 2rem;
    background: var(--color-medium-gray);
    border-radius: var(--border-radius);
}

.billing-card h4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.billing-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.billing-trend {
    font-size: 0.85rem;
}

.billing-trend.positive {
    color: #27C952;
}

.billing-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Settings List */
.settings-list {
    display: flex;
    flex-direction: column;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--color-medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.settings-item:hover {
    background: var(--color-medium-gray);
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-label {
    color: var(--color-white);
}

.settings-arrow {
    color: var(--color-text-muted);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 6rem 2rem;
    background: var(--color-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: var(--color-dark-gray);
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 6rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    padding: 2.5rem;
    background: var(--color-dark-gray);
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.1) 0%, var(--color-dark-gray) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

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

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-medium-gray);
    color: var(--color-text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-gold);
    margin-right: 0.75rem;
    font-weight: bold;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    display: block;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 6rem 2rem;
    background: var(--color-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-medium-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-text-muted);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--color-black);
    border-top: 1px solid var(--color-medium-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 0 0 280px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-medium-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-brand {
        flex: 0 0 100%;
    }
    
    .footer-links {
        flex: 0 0 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-center,
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .hero-section {
        min-height: auto;
        padding: 120px 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .section-subtitle br {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .dashboard-section {
        padding: 4rem 1rem;
    }
    
    .dashboard-preview {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dashboard-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .dashboard-user {
        display: none;
    }
    
    .booking-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        padding: 4rem 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        flex: 0 0 auto;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .pricing-section {
        padding: 3rem 1rem;
    }
    
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

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

.hero-title,
.hero-subtitle,
.hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}
