/* ================================================
   VaultBox - Warm & Friendly Theme
   ================================================ */

/* CSS Custom Properties */
:root {
    /* Primary - Warm Coral */
    --primary-50: #fff5f3;
    --primary-100: #ffe8e3;
    --primary-200: #ffd4cc;
    --primary-300: #ffb4a6;
    --primary-400: #ff8c76;
    --primary-500: #f06543;
    --primary-600: #d94a2b;
    --primary-700: #b73a1f;
    --primary-800: #96321d;
    --primary-900: #7c2e1e;

    /* Secondary - Warm Teal */
    --secondary-50: #f0fdf9;
    --secondary-100: #ccfbef;
    --secondary-200: #9af5df;
    --secondary-300: #5eeacb;
    --secondary-400: #2cd5b2;
    --secondary-500: #14b89a;
    --secondary-600: #0c947d;
    --secondary-700: #0e7666;
    --secondary-800: #105d52;
    --secondary-900: #124d45;

    /* Neutral Warm Grays */
    --gray-50: #fdfcfb;
    --gray-100: #f7f5f3;
    --gray-200: #eeebe7;
    --gray-300: #e0dbd4;
    --gray-400: #c5bdb2;
    --gray-500: #a69d90;
    --gray-600: #877d6f;
    --gray-700: #6d645a;
    --gray-800: #5a534a;
    --gray-900: #4a453f;

    /* Backgrounds */
    --bg-primary: #fffdf9;
    --bg-secondary: #f7f5f3;
    --bg-tertiary: #eeebe7;
    --surface-card: #ffffff;

    /* Text */
    --text-primary: #2d2a26;
    --text-secondary: #5a534a;
    --text-muted: #877d6f;
    --text-inverse: #fffdf9;

    /* Status Colors */
    --success: #22a869;
    --warning: #f5a623;
    --error: #e53935;

    /* Shadows (warm-tinted) */
    --shadow-sm: 0 1px 2px rgba(45, 42, 38, 0.05);
    --shadow-md: 0 4px 12px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 12px 32px rgba(45, 42, 38, 0.1);
    --shadow-xl: 0 20px 48px rgba(45, 42, 38, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding-top: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 253, 249, 0.9);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.header-logo:hover .logo-text {
    color: var(--primary-600);
}

/* Navigation Sidebar */
.nav-sidebar {
    position: fixed;
    right: 0;
    top: 72px;
    width: 280px;
    height: calc(100vh - 72px);
    background: var(--surface-card);
    border-left: 1px solid var(--gray-200);
    padding: 1.5rem;
    z-index: 100;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}

.nav-sidebar.active {
    transform: translateX(0);
}

.sidebar-logo {
    display: none;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

/* Active navigation state */
.nav-link.active {
    background: var(--primary-100);
    color: var(--primary-700);
    font-weight: 600;
}

.nav-link.active::after {
    width: calc(100% - 2rem);
    background: var(--primary-500);
}

.nav-link.active i {
    color: var(--primary-600);
}

.nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-400);
}

.nav-link.book-now {
    background: var(--primary-500);
    color: var(--text-inverse);
    margin-top: 1rem;
    border-radius: var(--radius-full);
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(240, 101, 67, 0.3);
}

.nav-link.book-now::after {
    display: none;
}

.nav-link.book-now i {
    color: var(--text-inverse);
}

.nav-link.book-now:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 101, 67, 0.4);
}

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-500);
    color: var(--text-inverse);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(240, 101, 67, 0.3);
    transition: all var(--transition-fast);
    margin-right: 0.75rem;
}

.header-cta:hover {
    background: var(--primary-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(240, 101, 67, 0.4);
}

.header-cta i {
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    .header-cta {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .header-cta span {
        display: none;
    }

    .header-cta i {
        margin: 0;
    }
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    width: 44px;
    height: 44px;
    background: var(--surface-card);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-600);
    transform: scale(1.05);
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 42, 38, 0.3);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: var(--bg-secondary);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Organic blob decorations */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-200);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--secondary-200);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    filter: blur(50px);
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    animation: hero-title 600ms ease-out both;
}

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

/* Small Hero for subpages */
.hero-small {
    padding: 2rem 0 1.5rem;
}

.hero-small h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.hero-small .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: hero-title 600ms ease-out 200ms both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-500);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(240, 101, 67, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.2) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 600ms ease;
}

.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(240, 101, 67, 0.4);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-600);
    padding: 0.875rem 1.875rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--primary-300);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0 6rem;
    background: var(--bg-primary);
    position: relative;
}

.how-it-works h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line between steps */
.steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-200), var(--primary-400), var(--primary-200));
    border-radius: var(--radius-full);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Stagger middle step */
.step:nth-child(2) {
    margin-top: 2rem;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-500);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(240, 101, 67, 0.3);
    transition: transform var(--transition-spring);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(-5deg);
}

.step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 5rem 0 6rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Decorative blob */
.features::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: var(--secondary-100);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(60px);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Asymmetric offset for features */
.feature:nth-child(2),
.feature:nth-child(4) {
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.feature::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--primary-100);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
    transition: transform var(--transition-base);
}

.feature:hover::before {
    transform: scale(1.5);
}

.feature > * {
    position: relative;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-500);
    transition: transform var(--transition-spring);
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: var(--primary-500);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-inverse);
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--text-inverse);
    color: var(--primary-600);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 1.5rem;
    position: relative;
}

/* Wavy top border effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--secondary-400), var(--primary-400));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-300);
    font-weight: 600;
    font-size: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--primary-300);
    font-weight: 600;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-300);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsive Design */

@media (max-width: 968px) {
    /* Features grid on tablet */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:nth-child(2),
    .feature:nth-child(4) {
        margin-top: 0;
    }

    .feature:nth-child(3),
    .feature:nth-child(4) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .site-header {
        height: 64px;
    }

    .nav-sidebar {
        top: 64px;
        height: calc(100vh - 64px);
    }

    /* Hero Mobile */
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero .container {
        padding: 0 1.25rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 1rem;
    }

    /* Buttons Mobile */
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    /* Section Headings Mobile */
    section h2 {
        font-size: 1.75rem;
    }

    section p {
        font-size: 0.95rem;
    }

    /* Steps Mobile */
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps::before {
        display: none;
    }

    .step {
        padding: 1.5rem;
    }

    .step:nth-child(2) {
        margin-top: 0;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .step h3 {
        font-size: 1.15rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    /* Features Mobile */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature:nth-child(2),
    .feature:nth-child(4) {
        margin-top: 0;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    /* CTA Mobile */
    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0;
    }
}

/* Locations Page Styles */

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: transparent;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-visual {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.3) 0%, rgba(10, 10, 20, 0.3) 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: grab;
}

.map-visual:active {
    cursor: grabbing;
}

.map-terrain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Location Button on Map */
.map-location-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.map-location-button:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.85);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.map-location-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.location-text {
    font-size: 0.9rem;
}

/* Map Instructions */
.map-instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: #a1a1aa;
    font-size: 0.95rem;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
}

.map-search-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.map-search-overlay:focus-within {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.map-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    width: 250px;
    padding: 0;
    padding-left: 0.5rem;
}

.map-search-input::placeholder {
    color: #a1a1aa;
}

.search-icon {
    color: #a1a1aa;
    font-size: 1.2rem;
}

.map-legend {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: #e4e4e7;
    font-size: 0.9rem;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.user-marker {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.airport-marker {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

/* Map Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.2s;
    pointer-events: none;
}

.map-marker.user-location {
    z-index: 11;
}

.marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.5);
    position: relative;
    z-index: 2;
}

.airport-marker-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.airport-marker-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    white-space: nowrap;
    text-align: center;
    pointer-events: auto;
}

.airport-marker-label strong {
    display: block;
    color: #3b82f6;
    font-size: 1rem;
    margin-bottom: 2px;
}

.airport-marker-label span {
    display: block;
    color: #a1a1aa;
    font-size: 0.85rem;
}

/* Locations List */
.locations-list {
    padding: 5rem 0;
    background: transparent;
}

.locations-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.locations-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 80px 2fr 120px 180px 140px 120px 100px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    font-weight: 700;
    color: #3b82f6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-row {
    display: grid;
    grid-template-columns: 80px 2fr 120px 180px 140px 120px 100px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    transition: all 0.3s;
}

.location-row:hover {
    background: rgba(59, 130, 246, 0.08);
    border-left: 3px solid #3b82f6;
}

.location-row:last-child {
    border-bottom: none;
}

.col-code {
    display: flex;
    align-items: center;
    justify-content: center;
}

.airport-code-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.col-name strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.terminal-info {
    display: block;
    color: #a1a1aa;
    font-size: 0.85rem;
}

.col-distance {
    color: #fff;
    font-weight: 600;
}

.distance-text {
    display: none;
}

.col-lockers {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.locker-count {
    line-height: 1.6;
}

.col-hours {
    display: flex;
    flex-direction: column;
}

.hours-text {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.hours-subtext {
    color: #a1a1aa;
    font-size: 0.85rem;
}

.col-availability {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.status-high {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-low {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.col-action {
    display: flex;
    justify-content: center;
}

.btn-table-book {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
}

.btn-table-book:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 1200px) {
    .table-header,
    .location-row {
        grid-template-columns: 70px 1.5fr 100px 160px 120px 100px 90px;
        font-size: 0.85rem;
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 968px) {
    .table-header,
    .location-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header > div {
        display: none;
    }
    
    .location-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .col-code,
    .col-name,
    .col-distance,
    .col-lockers,
    .col-hours,
    .col-availability,
    .col-action {
        width: 100%;
        justify-content: flex-start;
    }
    
    .col-action {
        margin-top: 1rem;
    }
    
    .btn-table-book {
        width: 100%;
        text-align: center;
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.pricing-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    padding: 2rem 1.5rem;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.pricing-popular {
    border: 2px solid var(--primary-400);
    background: var(--primary-500);
    color: var(--text-inverse);
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.pricing-popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-500);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(20, 184, 154, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.locker-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-400);
}

.pricing-popular .locker-icon {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.pricing-popular .pricing-header h3 {
    color: var(--text-inverse);
}

.locker-dimensions {
    color: var(--primary-500);
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-popular .locker-dimensions {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-popular .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-popular .price {
    color: var(--text-inverse);
}

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

.pricing-popular .period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-item {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.pricing-popular .feature-item {
    color: rgba(255, 255, 255, 0.85);
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--primary-500);
    color: var(--text-inverse);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    box-shadow: 0 4px 12px rgba(240, 101, 67, 0.25);
}

.btn-pricing:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 101, 67, 0.35);
}

.pricing-popular .btn-pricing {
    background: var(--text-inverse);
    color: var(--primary-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-popular .btn-pricing:hover {
    background: var(--gray-100);
}

/* Discounts Section */
.discounts-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.discounts-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.discount-card {
    text-align: center;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.discount-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-200);
}

.discount-duration {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.discount-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-500);
    margin-bottom: 0.5rem;
}

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

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.info-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-500);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0 5rem;
    background: var(--bg-primary);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--warning);
    background: linear-gradient(135deg, #fef3cd 0%, #fff3cd 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #f5d77a;
    box-shadow: var(--shadow-md);
}

.disclaimer-box h3 {
    color: #856404;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-box p {
    color: #664d03;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 3rem 0 5rem;
    background: var(--bg-primary);
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-600);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-200);
}

.faq-item {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: var(--surface-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.faq-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* About Page Styles */

/* Our Story Section */
.about-story {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mv-card {
    padding: 2.5rem;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-500);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.values h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Responsive Grid Layouts for Pricing and Values */
@media (max-width: 1200px) {
    .pricing-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--primary-500);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.team h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.team-member {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.member-photo {
    width: 90px;
    height: 90px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--primary-200);
    transition: transform var(--transition-spring);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--primary-500);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Legal Pages (Privacy & Terms) */
.legal-section {
    padding: 3rem 0 5rem;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-notice {
    padding: 1.25rem 1.5rem;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-200);
    margin-bottom: 2.5rem;
}

.legal-notice p {
    color: var(--primary-700);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.legal-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.legal-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.legal-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.legal-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.legal-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-item ul {
    margin: 0.75rem 0 1rem 1.25rem;
    list-style: none;
}

.legal-item ul li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.legal-item ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em;
}

/* Contact Page */
.contact-section {
    padding: 3rem 0 5rem;
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-container {
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    background: var(--surface-card);
    box-shadow: 0 0 0 4px var(--primary-100);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-500);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(240, 101, 67, 0.3);
}

.btn-submit:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 101, 67, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    display: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-message.success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.contact-info {
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 36px;
    color: var(--primary-500);
}

.info-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.info-content .subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.social-links h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    color: var(--primary-500);
}

.social-icon:hover {
    background: var(--primary-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Font Awesome Icon Colors */
.locker-icon {
    color: var(--primary-400);
}

.info-icon {
    color: var(--primary-500);
}

.mv-icon {
    color: var(--primary-500);
}

.member-photo i {
    color: var(--primary-500);
}

.social-icon i {
    color: var(--primary-500);
}

.section-icon i {
    color: var(--primary-500);
}

/* ================================================
   Animation Classes for Scroll Effects
   ================================================ */

/* Base states for animated elements */
[data-animate] {
    opacity: 0;
    will-change: transform, opacity;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="scale-in"] {
    transform: scale(0.9);
}

/* Animated state */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
    transition:
        opacity var(--transition-slow),
        transform var(--transition-slow);
}

/* Staggered children */
[data-stagger] {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition:
        opacity 400ms ease,
        transform 400ms ease;
}

/* Page entrance animation */
.main-content {
    animation: page-fade-in 400ms ease-out;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }

    [data-stagger] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    /* Pricing Page Mobile */
    .pricing-section {
        padding: 2rem 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .locker-dimensions {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing-features {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 0.4rem 0;
    }
    
    .btn-pricing {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Additional Info Section Mobile */
    .additional-info {
        padding: 2rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p,
    .info-card li {
        font-size: 0.85rem;
    }
    
    /* About Page Mobile */
    .about-story {
        padding: 2rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-text h2 {
        font-size: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .values {
        padding: 2rem 0;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-number {
        font-size: 1.75rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
    
    /* Mission/Vision Mobile */
    .mission-vision {
        padding: 2rem 0;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card {
        padding: 1.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.1rem;
    }
    
    .mv-card p {
        font-size: 0.85rem;
    }
    
    /* Team Section Mobile */
    .team {
        padding: 2rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-photo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-member h3 {
        font-size: 0.95rem;
    }
    
    .member-role {
        font-size: 0.75rem;
    }
    
    .member-bio {
        font-size: 0.8rem;
        display: none;
    }
    
    /* Stats Mobile */
    .stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact Page Mobile */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
    
    .contact-info-card h4 {
        font-size: 0.95rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    /* Legal Pages Mobile */
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content {
        padding: 0 0.5rem;
    }
    
    .legal-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .legal-item h2 {
        font-size: 1.1rem;
    }
    
    .legal-item h3 {
        font-size: 1rem;
    }
    
    .legal-item p,
    .legal-item li {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .legal-notice {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* FAQ Page Mobile */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Booking Page Mobile */
    .booking-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .booking-section h3 {
        font-size: 1.1rem;
    }
    
    .size-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .size-option {
        padding: 0.75rem;
    }
    
    .size-name {
        font-size: 0.9rem;
    }
    
    .size-dimensions {
        font-size: 0.7rem;
    }
    
    .size-price {
        font-size: 0.85rem;
    }
    
    /* Map Mobile */
    .map-visual {
        height: 350px;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    /* Locations Table Mobile */
    .locations-table {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
}
