/* ========================================
   KEYBAX PRO - MODERN UI REDESIGN v2.0
   Modern, Clean, Professional Design
======================================== */

/* ========== CSS VARIABLES (MODERN PALETTE) ========== */
:root {
    /* Primary Colors - Modern Orange Palette */
    --primary: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C5F;
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C5F 100%);
    
    /* Neutral Colors - Modern Grays */
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --text-dark: #2D3748;
    --text-light: #718096;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    
    /* Accent Colors */
    --success: #48BB78;
    --warning: #ED8936;
    --error: #F56565;
    --info: #4299E1;
    
    /* Shadows - Modern Depth */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 10px 40px -10px rgba(255, 107, 53, 0.4);
    
    /* Border Radius - Modern Curves */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== MODERN HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    transition: var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ========== MODERN HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #FFF8F5 100%);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 140, 95, 0.08) 0%, transparent 50%);
}

/* Modern Floating Orbs */
.floating-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 7s;
}

.orb:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Modern Booking Card */
.hero-booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-card-embedded {
    position: relative;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--primary-gradient);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.progress-step.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

/* Modern Form Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Modern Buttons */
.btn-next,
.btn-prev,
.btn-submit {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.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 15px 40px -10px rgba(255, 107, 53, 0.5);
}

.btn-next:disabled {
    background: var(--light-gray);
    color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-prev {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--light-gray);
}

.btn-prev:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Illustration */
.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vector {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float-gentle 6s infinite ease-in-out;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========== MODERN SECTIONS ========== */
.instant-call-section {
    padding: 2rem;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.instant-call-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.call-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.call-content {
    flex: 1;
}

.call-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.call-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.call-btn {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Modern Info Section */
.keybax-info-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.keybax-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-column {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-column h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Modern FAQ */
.faq-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 2.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-illustration {
        order: -1;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .instant-call-container {
        flex-direction: column;
        text-align: center;
    }
}


/* ========== IMAGE SECTION WITH ANIMATED CIRCLES ========== */

/* Info Image Column */
.info-image-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.info-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    object-fit: cover;
    transition: var(--transition);
}

.info-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Animated Circles */
.animated-circles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.15;
    animation: float-circle 8s infinite ease-in-out;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5F 100%);
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 30px;
    left: -10px;
    animation-delay: 2s;
    background: linear-gradient(135deg, #FF8C5F 0%, #FFB088 100%);
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -30px;
    animation-delay: 4s;
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%);
}

.circle-4 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    right: 40px;
    animation-delay: 6s;
    background: linear-gradient(135deg, #FFB088 0%, #FF8C5F 100%);
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-10px, -25px) scale(0.95);
        opacity: 0.25;
    }
    75% {
        transform: translate(15px, -10px) scale(1.05);
        opacity: 0.18;
    }
}

/* Pulse animation for circles */
@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

/* Add pulse to specific circles */
.circle-1 {
    animation: float-circle 8s infinite ease-in-out, pulse-circle 4s infinite ease-in-out;
}

.circle-3 {
    animation: float-circle 8s infinite ease-in-out 4s, pulse-circle 5s infinite ease-in-out 2s;
}

/* Responsive adjustments for image section */
@media (max-width: 1024px) {
    .info-image-column {
        min-height: 350px;
    }
    
    .info-image-wrapper {
        max-width: 400px;
    }
    
    .circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .circle-2 {
        width: 70px;
        height: 70px;
    }
    
    .circle-3 {
        width: 85px;
        height: 85px;
    }
    
    .circle-4 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .info-image-column {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .info-image-wrapper {
        max-width: 100%;
    }
    
    .circle-1 {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }
    
    .circle-2 {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: -5px;
    }
    
    .circle-3 {
        width: 70px;
        height: 70px;
        left: -15px;
    }
    
    .circle-4 {
        width: 45px;
        height: 45px;
        bottom: -5px;
        right: 30px;
    }
}

@media (max-width: 480px) {
    .info-image-column {
        min-height: 250px;
    }
    
    .info-image {
        border-radius: var(--radius-lg);
    }
    
    .circle {
        opacity: 0.1;
    }
    
    .circle-1 {
        width: 60px;
        height: 60px;
    }
    
    .circle-2 {
        width: 45px;
        height: 45px;
    }
    
    .circle-3 {
        width: 55px;
        height: 55px;
    }
    
    .circle-4 {
        width: 35px;
        height: 35px;
    }
}


/* ========== COMPREHENSIVE MOBILE RESPONSIVE FIXES ========== */

/* Mobile Responsive - Tablet (1024px and below) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .hero-booking-form {
        order: 1;
    }
    
    .hero-illustration {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Info Columns */
    .info-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About Features */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Responsive - Mobile (768px and below) */
@media (max-width: 768px) {
    /* Root Variables */
    :root {
        --header-height: 70px;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    /* Header */
    .header {
        height: 70px;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .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: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 1rem;
        display: block;
        text-align: center;
        border-radius: var(--radius);
        background: var(--light-gray);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: var(--transition-fast);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding-top: 70px;
    }
    
    .hero-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .hero-booking-form {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .booking-card-embedded {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }
    
    /* Form Progress */
    .form-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .progress-step {
        flex: 1;
        min-width: 60px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .progress-line {
        display: none;
    }
    
    /* Form Steps */
    .step-header h3 {
        font-size: 1.25rem;
    }
    
    .step-header p {
        font-size: 0.875rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Buttons */
    .btn-next,
    .btn-prev,
    .btn-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .step-actions {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    /* Instant Call Section */
    .instant-call-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .call-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .call-content h3 {
        font-size: 1.25rem;
    }
    
    .call-content p {
        font-size: 0.875rem;
    }
    
    /* KeyBax Info Section */
    .keybax-info-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .info-column {
        padding: 1.5rem;
    }
    
    .info-column h3 {
        font-size: 1.25rem;
    }
    
    .info-list li {
        padding: 0.75rem 0;
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }
    
    .info-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    /* About Section */
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-feature-item {
        padding: 1.25rem;
    }
    
    .about-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .about-feature-text h4 {
        font-size: 1rem;
    }
    
    .about-feature-text p {
        font-size: 0.85rem;
    }
    
    /* Features Section */
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-brand img {
        height: 35px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 5rem;
        right: 1rem;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        display: block;
        bottom: 1rem;
        left: 1rem;
    }
    
    .mobile-call-btn a {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
}

/* Mobile Responsive - Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Root Variables */
    :root {
        --header-height: 65px;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 1.75rem;
        --spacing-2xl: 2.5rem;
    }
    
    /* Header */
    .header {
        height: 65px;
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-logo img {
        height: 30px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 1.5rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .language-pill {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 65px;
    }
    
    .hero-container {
        padding: 0.5rem;
    }
    
    /* BOOKING FORM - 5px padding on mobile */
    .hero-booking-form {
        padding: 0 5px;
    }
    
    .booking-card-embedded {
        padding: 0.75rem;
        border-radius: var(--radius);
    }
    
    /* Form Progress - Compact */
    .form-progress {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }
    
    .progress-step {
        min-width: 50px;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    /* Form Steps */
    .step-header {
        margin-bottom: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.125rem;
    }
    
    .step-header p {
        font-size: 0.8rem;
    }
    
    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .input-wrapper i {
        font-size: 0.875rem;
    }
    
    /* Booking Type Cards */
    .booking-type-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .type-card {
        padding: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .price-tag {
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Stepper */
    .stepper-group {
        margin-bottom: 1rem;
    }
    
    .stepper-label {
        font-size: 0.875rem;
    }
    
    .stepper {
        height: 40px;
    }
    
    .stepper-btn {
        width: 40px;
        font-size: 1.25rem;
    }
    
    .stepper input {
        font-size: 1rem;
    }
    
    /* Slider */
    .slider-group {
        margin-bottom: 1rem;
    }
    
    .slider-label,
    .slider-value {
        font-size: 0.875rem;
    }
    
    /* Price Summary */
    .price-summary {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .summary-header h4 {
        font-size: 1rem;
    }
    
    .summary-row {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .summary-total {
        font-size: 0.95rem;
        padding-top: 0.75rem;
    }
    
    .total-amount {
        font-size: 1.25rem;
    }
    
    /* Payment Methods */
    .payment-header h4 {
        font-size: 1rem;
    }
    
    .payment-method-card {
        padding: 0.875rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
    }
    
    .payment-info h5 {
        font-size: 0.9rem;
    }
    
    .payment-info p {
        font-size: 0.75rem;
    }
    
    /* Buttons */
    .btn-next,
    .btn-prev,
    .btn-submit,
    .btn-save,
    .btn-new {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    
    .step-actions {
        gap: 0.5rem;
    }
    
    /* Live Bill */
    .live-bill {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .bill-total {
        font-size: 1.125rem;
    }
    
    .bill-helper {
        font-size: 0.75rem;
    }
    
    /* Hero Illustration */
    .hero-illustration {
        max-width: 300px;
        padding: 1rem 0;
    }
    
    .hero-vector {
        max-width: 100%;
    }
    
    /* Instant Call Section */
    .instant-call-section {
        padding: 1.25rem 0.75rem;
    }
    
    .call-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .call-content h3 {
        font-size: 1.125rem;
    }
    
    .call-content p {
        font-size: 0.8rem;
    }
    
    .call-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* KeyBax Info Section */
    .keybax-info-section {
        padding: 2rem 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .info-columns {
        gap: 1.5rem;
    }
    
    .info-column {
        padding: 1.25rem;
    }
    
    .info-column p {
        font-size: 0.9rem;
    }
    
    .info-column h3 {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .info-list li {
        padding: 0.625rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }
    
    .info-list li::before {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    /* Contact Info */
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin: 1.25rem 0;
    }
    
    .btn-book-now {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* About Section */
    .about-section {
        padding: 2rem 0.75rem;
    }
    
    .about-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }
    
    .about-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    .about-features {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .about-feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 0.75rem;
    }
    
    .about-feature-text h4 {
        font-size: 0.95rem;
    }
    
    .about-feature-text p {
        font-size: 0.8rem;
    }
    
    /* Features Section */
    .features-section {
        padding: 2rem 0.75rem;
    }
    
    .features-container {
        padding: 0;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-brand img {
        height: 30px;
    }
    
    .footer-nav {
        gap: 0.75rem;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 4.5rem;
        right: 0.75rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        bottom: 0.75rem;
        left: 0.75rem;
    }
    
    .mobile-call-btn a {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    /* Loading Overlay */
    .loading-spinner i {
        font-size: 2.5rem;
    }
    
    .loading-spinner p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    /* Even more compact for very small screens */
    .hero-container {
        padding: 0.25rem;
    }
    
    .booking-card-embedded {
        padding: 0.5rem;
    }
    
    .form-progress {
        gap: 0.125rem;
    }
    
    .progress-step {
        min-width: 45px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .step-label {
        font-size: 0.6rem;
    }
    
    .step-header h3 {
        font-size: 1rem;
    }
    
    .step-header p {
        font-size: 0.75rem;
    }
    
    .btn-next,
    .btn-prev,
    .btn-submit {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .about-title {
        font-size: 1.375rem;
    }
}

/* Landscape Mode Fixes for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }
    
    .nav-menu {
        height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .form-progress {
        margin-bottom: 0.75rem;
    }
    
    .step-header {
        margin-bottom: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
}
