/* KeyBax Luggage Storage - Ultra Modern Orange Theme 2025 */

/* CSS Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Primary Colors - Orange Theme */
    --primary: #ff7a00;
    --primary-light: #ff9a40;
    --primary-dark: #e66a00;
    --primary-gradient: linear-gradient(135deg, #ff7a00 0%, #ff9a40 50%, #ffb366 100%);
    --primary-glow: rgba(255, 122, 0, 0.3);
    
    /* Secondary Colors */
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 122, 0, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    
    /* Header Heights */
    --header-height: 80px;
    --header-height-scrolled: 60px;
    
    /* Spacing & Sizing */
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 28px;
    --container-max: 1400px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 8px 30px rgba(255, 122, 0, 0.25);
}

/* RTL Support */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .hero-container { flex-direction: row-reverse; }
[dir="rtl"] .phone-input-wrapper { flex-direction: row-reverse; }
[dir="rtl"] .step-actions { flex-direction: row-reverse; }
[dir="rtl"] .footer-content { flex-direction: row-reverse; }
[dir="rtl"] .country-dropdown { left: auto; right: 0; }
[dir="rtl"] .country-search-wrapper i { left: auto; right: 1rem; }
[dir="rtl"] .country-search { padding: 0.6rem 2rem 0.6rem 0.75rem; }

/* Base Styles */
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ========== ULTRA MODERN HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover { transform: scale(1.02); }

.logo-image {
    height: 42px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-image { height: 36px; }

/* Navigation Menu */
.nav-menu { display: flex; align-items: center; }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    background: var(--light-gray);
    padding: 0.35rem;
    border-radius: 50px;
}

.nav-link {
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 50px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::before, .nav-link.active::before { transform: translateX(-50%) scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--white); }

/* Language Switcher */
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.language-switcher { position: relative; }

.language-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    font-weight: 500;
}

.language-pill:hover { border-color: var(--primary); }

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    min-width: 140px;
    z-index: 100;
}

.language-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.lang-option:hover { background: rgba(255, 122, 0, 0.1); color: var(--primary); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff5eb 100%);
}

.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255, 122, 0, 0.08) 0%, transparent 50%);
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff7a00' fill-opacity='0.08' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.floating-orbs { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.08;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb:nth-child(1) { width: 300px; height: 300px; top: 10%; right: 10%; animation-delay: 0s; }
.orb:nth-child(2) { width: 200px; height: 200px; bottom: 20%; left: 5%; animation-delay: 2s; }
.orb:nth-child(3) { width: 150px; height: 150px; top: 50%; left: 30%; animation-delay: 4s; }

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero-text { padding-right: 2rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span { display: block; }
.hero-title .highlight { color: var(--primary); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item { display: flex; align-items: center; gap: 0.6rem; }

.feature-icon {
    width: 38px; height: 38px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.feature-text { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-orange);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Illustration */
.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-vector {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 122, 0, 0.12));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== BOOKING OVERLAY ========== */
.booking-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: calc(var(--header-height) + 1rem);
}

.booking-overlay.active { display: flex; }

.booking-overlay-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-glass-card {
    position: relative;
    background: var(--white);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: overlaySlideIn 0.4s ease-out;
}

.booking-glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

@keyframes overlaySlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.booking-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition-fast);
    z-index: 10;
}

.booking-close:hover { background: var(--primary); color: var(--white); }

/* Progress Steps */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: var(--light-gray);
    color: var(--text-light);
    border: 2px solid var(--light-gray);
    transition: var(--transition-smooth);
}

.progress-step.active .step-icon,
.progress-step.completed .step-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-orange);
}

.step-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.progress-step.active .step-label { color: var(--primary); font-weight: 600; }

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--light-gray);
    margin: 0 0.3rem;
    position: relative;
    top: -10px;
}

.progress-line.active { background: var(--primary); }

/* Form Steps */
.form-step { display: none; animation: stepSlideIn 0.4s ease-out; }
.form-step.active { display: block; }

@keyframes stepSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header { text-align: center; margin-bottom: 1.5rem; }

.step-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.step-header p { color: var(--text-gray); font-size: 0.9rem; }

.confirm-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    animation: confirmPop 0.5s ease-out;
}

@keyframes confirmPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Form Inputs */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: span 2; }

.form-group label { font-weight: 500; color: var(--text-dark); font-size: 0.85rem; }

.input-wrapper { position: relative; }

.input-wrapper i {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
    font-size: 0.9rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.field-error { font-size: 0.75rem; color: #e53e3e; min-height: 1rem; }

/* Phone Input */
.phone-input-wrapper { display: flex; gap: 0.5rem; }

.phone-input-wrapper input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.phone-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

/* Custom Country Code Selector */
.country-code-selector {
    position: relative;
    flex: 0 0 auto;
}

.country-code-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 0.75rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    background: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 95px;
}

.country-code-btn:hover,
.country-code-btn:focus {
    border-color: var(--primary);
    outline: none;
}

.country-code-btn .selected-flag {
    font-size: 1.1rem;
}

.country-code-btn .selected-code {
    font-weight: 500;
    color: var(--text-dark);
}

.country-code-btn i {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-left: auto;
    transition: var(--transition-fast);
}

.country-code-selector.active .country-code-btn i {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 280px;
    max-height: 300px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.country-code-selector.active .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-search-wrapper {
    position: relative;
    padding: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.country-search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.8rem;
}

.country-search {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.country-search:focus {
    outline: none;
    border-color: var(--primary);
}

.country-list {
    overflow-y: auto;
    flex: 1;
    max-height: 240px;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.country-option:hover,
.country-option.highlighted {
    background: rgba(255, 122, 0, 0.1);
}

.country-option.selected {
    background: rgba(255, 122, 0, 0.15);
    color: var(--primary);
}

.country-option .country-flag {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.country-option .country-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-option .country-dial {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.country-list-empty {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Booking Type Cards */
.booking-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-card { position: relative; cursor: pointer; }
.type-card input { position: absolute; opacity: 0; pointer-events: none; }

.card-content {
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.card-icon {
    width: 60px; height: 60px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.card-content p { color: var(--text-gray); font-size: 0.8rem; margin-bottom: 0.75rem; }

.price-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.type-card:hover .card-content {
    border-color: var(--primary);
    box-shadow: var(--shadow-orange);
}

.type-card:hover .card-icon { background: var(--primary-gradient); color: var(--white); }

.type-card input:checked + .card-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    box-shadow: var(--shadow-orange);
}

.type-card input:checked + .card-content .card-icon {
    background: var(--primary-gradient);
    color: var(--white);
}

/* Size Pills */
.size-pills { display: flex; gap: 0.6rem; margin-bottom: 1.25rem; }

.size-pill { flex: 1; position: relative; }
.size-pill input { position: absolute; opacity: 0; pointer-events: none; }

.pill-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.85rem 0.5rem;
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pill-content .size-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.pill-content .size-price { font-size: 0.8rem; color: var(--primary); font-weight: 500; }

.size-pill input:checked + .pill-content {
    border-color: var(--primary);
    background: rgba(255, 122, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Quantity Stepper */
.stepper-group { margin-bottom: 1.25rem; }
.stepper-label { font-weight: 500; color: var(--text-dark); font-size: 0.85rem; margin-bottom: 0.4rem; display: block; }

.stepper {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 2px solid #e8e8e8;
}

.stepper-btn {
    width: 44px; height: 44px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.stepper-btn:hover { background: var(--primary); color: var(--white); }

.stepper input {
    flex: 1;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.6rem;
}

.stepper input:focus { outline: none; }

/* Period Slider */
.slider-group { margin-bottom: 1.25rem; }

.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.slider-label { font-weight: 500; color: var(--text-dark); font-size: 0.85rem; }
.slider-value { font-weight: 600; color: var(--primary); font-size: 0.95rem; }

.period-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e8e8e8;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.period-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-fast);
}

.period-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

/* Price Summary Card */
.price-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-header i { color: var(--primary); }
.summary-header h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; }

.summary-rows { display: flex; flex-direction: column; gap: 0.5rem; }

.summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.summary-row span:first-child { color: rgba(255,255,255,0.7); }
.summary-row span:last-child { font-weight: 500; }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.summary-total span:first-child { font-size: 0.95rem; font-weight: 500; }
.total-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary); }

/* Step Actions */
.step-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.step-actions.center { justify-content: center; flex-wrap: wrap; }

.btn-prev, .btn-next, .btn-submit, .btn-save, .btn-new {
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prev {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid #e8e8e8;
}

.btn-prev:hover { background: var(--white); border-color: var(--primary); color: var(--primary); }

.btn-next, .btn-submit {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.35);
}

.btn-next:disabled, .btn-submit:disabled {
    background: var(--light-gray);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.btn-next:disabled:hover, .btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-save {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-save:hover { transform: translateY(-2px); }

.btn-new {
    background: var(--light-gray);
    color: var(--text-dark);
}

.btn-new:hover { background: var(--primary); color: var(--white); }

/* Live Bill */
.live-bill {
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 2px solid rgba(255, 122, 0, 0.2);
    padding: 0.75rem 1rem;
    margin: 1rem -2rem -2rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.bill-row { display: flex; justify-content: space-between; align-items: center; }
.bill-row span:first-child { font-weight: 500; color: var(--text-gray); font-size: 0.9rem; }
.bill-total { 
    font-family: var(--font-display); 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--primary);
    transition: var(--transition-smooth);
}

/* Live Bill - Inactive/Disabled State */
.live-bill.inactive {
    border-top-color: #e8e8e8;
}

.live-bill.inactive .bill-row span:first-child {
    color: var(--text-light);
}

.live-bill.inactive .bill-total {
    color: var(--text-light);
    font-size: 1rem;
}

.live-bill .bill-helper {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 0.25rem;
    display: none;
}

.live-bill.inactive .bill-helper {
    display: block;
}

/* Bill Total Animation */
.bill-total.counting {
    animation: countPulse 0.3s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--primary-dark); }
    100% { transform: scale(1); }
}

/* Booking Card Preview */
.booking-card-preview {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-card-preview .booking-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.booking-card-preview .qr-code { margin: 1rem auto; max-width: 150px; }
.booking-card-preview .qr-code img { width: 100%; border-radius: var(--border-radius-sm); }

/* Location Button in Confirmation */
.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.location-btn i { font-size: 1.1rem; }

/* ========== PAYMENT METHOD SELECTION ========== */
.payment-selection {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--gray-300);
}

.payment-header i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 10px;
    font-size: 1rem;
}

.payment-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 480px) {
    .payment-methods {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.payment-method-card {
    cursor: pointer;
    position: relative;
}

.payment-method-card input {
    display: none;
}

.payment-card-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.payment-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.payment-method-card:hover .payment-card-content {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.12);
}

.payment-method-card input:checked + .payment-card-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 154, 64, 0.06));
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
}

.payment-method-card input:checked + .payment-card-content::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-method-card:hover .payment-icon {
    transform: scale(1.05);
}

.payment-icon.stripe {
    background: linear-gradient(135deg, #635bff, #8b7dff);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #003087, #0070ba);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
}

.payment-info {
    flex: 1;
    min-width: 0;
}

.payment-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.payment-info p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.3;
}

.payment-check {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-method-card input:checked + .payment-card-content .payment-check {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 3px 10px rgba(255, 122, 0, 0.3);
}

/* Stripe Card Element */
.stripe-card-container {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stripe-card-container label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

#stripe-card-element {
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
}

#stripe-card-errors {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* PayPal Button Container */
.paypal-button-container {
    margin-top: 1rem;
    min-height: 50px;
}

/* Payment Error Message */
.payment-error-message {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.payment-error-message i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.payment-error-message span {
    display: block;
    color: #991b1b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-pay-later-fallback {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-pay-later-fallback:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Payment Badge on Confirmation */
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.payment-badge.paid {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.payment-badge.pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p { color: var(--text-gray); font-size: 1rem; max-width: 500px; margin: 0 auto; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.feature-card-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-gray); font-size: 0.9rem; }

/* ========== INSTANT CALL SECTION ========== */
.instant-call-section {
    background: var(--primary-gradient);
    padding: 2rem 0;
}

.instant-call-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.call-icon {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.call-content { flex: 1; }
.call-content h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.call-content p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }

/* ========== KEYBAX INFO SECTION ========== */
.keybax-info-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff5eb 100%);
}

.keybax-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.keybax-info-container .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.keybax-info-container .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.info-column {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-list li strong {
    color: var(--primary);
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    margin-top: 1.5rem;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.35);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.faq-container .section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding-left: 2.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .keybax-info-container .section-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-answer {
        padding-left: 0;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img { height: 45px; width: auto; filter: brightness(0) invert(1); }

.footer-nav { display: flex; justify-content: center; gap: 2rem; }

.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover { color: var(--primary); }

.footer-social { display: flex; justify-content: flex-end; gap: 0.75rem; }

.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover { background: var(--primary); transform: translateY(-2px); }

.footer-bottom { padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s ease-in-out infinite;
    border: 3px solid var(--primary);
}

.whatsapp-float a:hover { transform: scale(1.1) rotate(8deg); }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(255, 122, 0, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(255, 122, 0, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 5.5rem;
    z-index: 1000;
}

.mobile-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-smooth);
}

.mobile-call-btn a:hover { transform: scale(1.1); }

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active { display: flex; }

.loading-spinner { text-align: center; }
.loading-spinner i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.loading-spinner p { font-size: 1rem; color: var(--text-dark); font-weight: 500; }

/* Messages */
.message {
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: fadeInUp 0.3s ease-out;
    font-size: 0.9rem;
}

.message.success { background: rgba(72, 187, 120, 0.1); color: #2f855a; border: 1px solid rgba(72, 187, 120, 0.3); }
.message.error { background: rgba(245, 101, 101, 0.1); color: #c53030; border: 1px solid rgba(245, 101, 101, 0.3); }
.message.info { background: rgba(255, 122, 0, 0.1); color: var(--primary-dark); border: 1px solid rgba(255, 122, 0, 0.3); }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-text { padding-right: 0; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-illustration { order: -1; }
    .hero-vector { max-width: 350px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-social { justify-content: center; }
    
    .instant-call-container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; --header-height-scrolled: 56px; }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        background: transparent;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        padding: 0.85rem;
        background: var(--light-gray);
        border-radius: var(--border-radius-sm);
    }
    
    .nav-toggle { display: flex; }
    
    .hero { min-height: auto; padding: 120px 0 3rem; }
    .hero-container { padding-top: 0; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-features { flex-direction: column; gap: 0.75rem; }
    .hero-vector { max-width: 280px; }
    
    .booking-glass-card { padding: 1.5rem; max-height: 85vh; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .booking-type-cards { grid-template-columns: 1fr; }
    .size-pills { flex-direction: column; }
    .step-actions { flex-direction: column; }
    .btn-prev, .btn-next, .btn-submit, .btn-save, .btn-new { width: 100%; justify-content: center; }
    
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 1.5rem 1rem; }
    
    .footer-nav { flex-direction: column; gap: 0.75rem; }
    
    .mobile-call-btn { display: block; }
    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
    .whatsapp-float a { width: 50px; height: 50px; font-size: 1.2rem; }
    .mobile-call-btn { right: 5rem; }
    .mobile-call-btn a { width: 44px; height: 44px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 1rem; }
    .hero-container { padding: 0 1rem; }
    .features-container { padding: 0 1rem; }
    .footer-container { padding: 0 1rem; }
    .instant-call-container { padding: 0 1rem; }
    
    .booking-glass-card { padding: 1.25rem; border-radius: var(--border-radius); }
    .phone-input-wrapper { flex-direction: row; }
    
    .country-code-selector { flex: 0 0 auto; }
    .country-code-btn { min-width: 85px; padding: 0.75rem 0.5rem; }
    .country-dropdown { width: 260px; left: 0; }
    
    .form-progress { overflow-x: auto; padding-bottom: 0.5rem; }
    .step-icon { width: 32px; height: 32px; font-size: 0.75rem; }
    .step-label { font-size: 0.6rem; }
    
    .whatsapp-float { bottom: 1rem; right: 1rem; }
    .mobile-call-btn { right: 4.5rem; bottom: 1rem; }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-orange { color: var(--primary); }
.bg-orange { background: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }


/* ========== HERO WITH EMBEDDED BOOKING FORM ========== */
.hero-booking-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-card-embedded {
    background: var(--white);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    width: 100%;
    position: relative;
}

.booking-card-embedded::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.booking-card-embedded .form-progress {
    margin-bottom: 1.5rem;
}

.booking-card-embedded .live-bill {
    margin: 1rem -1.5rem -1.5rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* ========== ABOUT SECTION (TAGLINE) ========== */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff5eb 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-title span {
    display: block;
}

.about-title .highlight {
    color: var(--primary);
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray);
    transition: var(--transition-smooth);
}

.about-feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive for embedded form */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-booking-form {
        order: 1;
        width: 100%;
    }
    
    .hero-illustration {
        order: 2;
        display: none; /* Hide on tablet too */
    }
    
    .booking-card-embedded {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-feature-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .about-feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 90px 0 1.5rem;
    }
    
    .hero-container {
        min-height: auto;
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-booking-form {
        width: 100%;
    }
    
    .booking-card-embedded {
        padding: 1.25rem;
        max-width: 100%;
        border-radius: var(--border-radius);
        margin: 0;
    }
    
    .booking-card-embedded .live-bill {
        margin: 1rem -1.25rem -1.25rem;
    }
    
    /* Hide hero illustration/vector on mobile */
    .hero-illustration {
        display: none !important;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-feature-item {
        padding: 1rem;
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 75px 0 0.5rem;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .booking-card-embedded {
        padding: 0.75rem;
        border-radius: var(--border-radius-sm);
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    
    .booking-card-embedded::before {
        border-radius: 0;
    }
    
    .booking-card-embedded .live-bill {
        margin: 0.75rem -0.75rem -0.75rem;
        border-radius: 0;
    }
    
    .booking-card-embedded .form-progress {
        margin-bottom: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .booking-card-embedded .step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .booking-card-embedded .step-label {
        font-size: 0.6rem;
    }
    
    .booking-card-embedded .progress-line {
        min-width: 20px;
    }
}

@media (max-width: 375px) {
    .hero-container {
        padding: 0;
    }
    
    .booking-card-embedded {
        padding: 0.5rem;
        border: none;
        box-shadow: none;
    }
    
    .booking-card-embedded .live-bill {
        margin: 0.5rem -0.5rem -0.5rem;
    }
}


/* Item Select Dropdown */
.item-select {
    width: 100%;
    padding: 1rem 1rem 1rem 2.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.item-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-glow);
}

.input-wrapper .item-select {
    padding-left: 2.75rem;
}


/* ========== CRITICAL MOBILE RESPONSIVE FIXES ========== */

/* Ensure no horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

/* Container fixes */
.nav-container,
.hero-container,
.keybax-info-container,
.about-container,
.features-container,
.faq-container,
.footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: var(--transition-fast);
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 1rem;
        display: block;
        text-align: center;
        border-radius: 12px;
        background: var(--light-gray);
    }
}

/* Mobile Hero & Booking Form */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .hero-booking-form {
        width: 100%;
        padding: 0;
    }
    
    .booking-card-embedded {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }
    
    .hero-illustration {
        order: 2;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .hero-vector {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* Mobile Form Progress */
@media (max-width: 768px) {
    .form-progress {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        overflow-x: visible;
    }
    
    .progress-step {
        flex: 1;
        min-width: 60px;
        max-width: 80px;
    }
    
    .progress-line {
        display: none;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}

/* Small Mobile - 5px padding */
@media (max-width: 480px) {
    .hero-container {
        padding: 0.5rem;
    }
    
    .hero-booking-form {
        padding: 0 5px;
    }
    
    .booking-card-embedded {
        padding: 0.75rem;
    }
    
    .form-progress {
        gap: 0.25rem;
    }
    
    .progress-step {
        min-width: 50px;
        max-width: 70px;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-container {
        padding: 0.25rem;
    }
    
    .booking-card-embedded {
        padding: 0.5rem;
    }
    
    .progress-step {
        min-width: 45px;
        max-width: 60px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .step-label {
        font-size: 0.6rem;
    }
}

/* Mobile Sections */
@media (max-width: 768px) {
    .instant-call-section {
        padding: 1.5rem 1rem;
    }
    
    .instant-call-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .keybax-info-section {
        padding: 3rem 1rem;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-column {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Buttons & Inputs */
@media (max-width: 768px) {
    .btn-next,
    .btn-prev,
    .btn-submit,
    .btn-save,
    .btn-new {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }
    
    .step-actions {
        display: flex;
        gap: 0.75rem;
        width: 100%;
    }
    
    .step-actions button {
        flex: 1;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .booking-type-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Typography */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
}

/* Floating Buttons Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 5rem;
        right: 1rem;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .mobile-call-btn {
        display: block;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        z-index: 999;
    }
    
    .mobile-call-btn a {
        width: 55px;
        height: 55px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.25rem;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 4.5rem;
        right: 0.75rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }
    
    .mobile-call-btn {
        bottom: 0.75rem;
        left: 0.75rem;
    }
    
    .mobile-call-btn a {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

/* Image Section Mobile */
@media (max-width: 768px) {
    .info-image-column {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .info-image-wrapper {
        max-width: 100%;
    }
    
    .info-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .info-image-column {
        min-height: 250px;
    }
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Landscape mode fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }
    
    .nav-menu {
        height: calc(100vh - 65px);
        overflow-y: auto;
    }
}


/* ========== FORM FIELD FIXES - NO ICON OVERLAP ========== */

/* Direct input styling (without input-wrapper) */
.form-group > input[type="text"],
.form-group > input[type="date"],
.form-group > input[type="time"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
    box-sizing: border-box;
}

.form-group > input[type="text"]:focus,
.form-group > input[type="date"]:focus,
.form-group > input[type="time"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Strong labels */
.form-group label strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Date and Time inputs - remove default icons overlap */
input[type="date"],
input[type="time"] {
    position: relative;
    padding-right: 2.5rem;
}

/* Ensure native date/time picker icons don't overlap */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0.75rem;
    cursor: pointer;
}

/* Mobile specific fixes for date/time inputs */
@media (max-width: 768px) {
    .form-group > input[type="text"],
    .form-group > input[type="date"],
    .form-group > input[type="time"] {
        padding: 0.75rem 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    input[type="date"],
    input[type="time"] {
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .form-group > input[type="text"],
    .form-group > input[type="date"],
    .form-group > input[type="time"] {
        padding: 0.625rem 0.75rem;
    }
}
