/* =========================================
   Kilevon Professional Services Theme
   ========================================= */

:root {
    --kv-bg: #FFFFFF;
    --kv-bg-light: #F8F9FA;
    --kv-text: #1A1A1A;
    --kv-text-light: #4A4A4A;
    --kv-accent: #0A2540;
    /* Navy Blue - Professional */
    --kv-gold: #C5A059;
    /* Muted Gold Accent */

    --font-kv-sans: 'IBM Plex Sans', sans-serif;
    --font-kv-serif: 'IBM Plex Serif', serif;
}

body.kv-body {
    background-color: var(--kv-bg);
    color: var(--kv-text);
    font-family: var(--font-kv-sans);
}

/* Base Navigation Overrides if needed */
.glass-header .nav-item {
    color: var(--kv-text) !important;
}

.glass-header .social-icon svg {
    stroke: var(--kv-text) !important;
}

.glass-header .social-icon:hover svg {
    stroke: var(--kv-gold) !important;
}

/* =========================================
   Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   Hero Section (Split)
   ========================================= */
.kv-hero-split {
    padding: 140px 0 80px;
    background: #fff;
    overflow: hidden;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kv-eyebrow {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kv-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.kv-headline {
    font-family: var(--font-kv-serif);
    font-size: 4.5rem;
    color: var(--kv-accent);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.kv-lead {
    font-size: 1.25rem;
    color: var(--kv-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.kv-emphasis {
    font-family: var(--font-kv-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--kv-accent);
    border-left: 3px solid var(--kv-gold);
    padding-left: 20px;
}

.kv-btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--kv-accent);
    color: var(--kv-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.kv-btn-outline:hover {
    background: var(--kv-accent);
    color: #fff;
}

/* Hero Image Column */
.image-wrapper {
    position: relative;
}

.kv-hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(10, 37, 64, 0.1);
    /* Navy shadow */
}

.image-overlay-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.25);
    /* Liquid transparency */
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    /* Soft deep shadow */
    backdrop-filter: blur(16px);
    /* Strong blur for liquid effect */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Glass edge */
    border-top: 4px solid var(--kv-gold);
    max-width: 300px;
}

.image-overlay-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-overlay-box li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-overlay-box li i {
    color: var(--kv-gold);
}

/* Intro Section */
.section-intro {
    padding: 80px 0;
}

.intro-large {
    font-size: 1.5rem;
    font-family: var(--font-kv-serif);
    color: var(--kv-text);
    line-height: 1.6;
}

.highlight-gold {
    color: var(--kv-gold);
    font-style: italic;
}

/* =========================================
   Service Grid
   ========================================= */
.kv-section {
    padding: 100px 0;
}

.bg-light {
    background-color: #f7f9fb;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 2rem;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kv-section-title {
    font-family: var(--font-kv-serif);
    font-size: 2.5rem;
    color: var(--kv-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Slightly narrower min */
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    /* Soften edges */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    /* Subtle start shadow */
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--kv-gold);
}

.card-header {
    display: flex;
    flex-direction: column;
    /* Icon above title */
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--kv-accent);
    background: rgba(10, 37, 64, 0.05);
    /* Light navy bg */
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.service-card:hover .card-icon {
    background: var(--kv-accent);
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-kv-serif);
    font-size: 1.35rem;
    color: var(--kv-accent);
    margin: 0;
}

.kv-list-dot {
    list-style: none;
    padding: 0;
}

.kv-list-dot li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--kv-text-light);
    transition: color 0.3s;
}

.service-card:hover .kv-list-dot li {
    color: var(--kv-text);
}

.kv-list-dot li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dde1e6;
    /* Lighter grey initially */
    transition: background 0.3s;
}

.service-card:hover .kv-list-dot li::before {
    background: var(--kv-gold);
}


/* =========================================
   Process Section (Visual Update)
   ========================================= */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.visual-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s;
}

.visual-image-wrapper:hover .process-img {
    transform: scale(1.08);
}

.visual-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.95);
    /* Navy Overlay */
    padding: 40px;
    color: #fff;
}

.visual-overlay-content h3 {
    font-family: var(--font-kv-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.kv-list-check {
    list-style: none;
    padding: 0;
}

.kv-list-check li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.kv-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--kv-gold);
}

.kv-list-check.light-text li {
    color: rgba(255, 255, 255, 0.9);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* =========================================
   CTA Section
   ========================================= */
.kv-cta {
    padding: 120px 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax effect */
    color: #fff;
    z-index: 1;
}

.kv-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
    /* Navy Overlay */
    z-index: -1;
}

.kv-cta-title {
    font-family: var(--font-kv-serif);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.kv-cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.kv-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: var(--kv-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 2px;
}

.kv-btn:hover {
    background: var(--kv-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 900px) {
    .kv-headline {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* =========================================
   Booking Page Styles
   ========================================= */
.booking-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-card {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.08);
    /* Navy shadow */
    border-top: 5px solid var(--kv-accent);
}

.kv-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--kv-text-light);
    letter-spacing: 0.5px;
}

.form-control {
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-kv-sans);
    font-size: 1rem;
    color: var(--kv-text);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--kv-accent);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--kv-text-light);
    font-size: 0.8rem;
}

.form-control::placeholder {
    color: #bbb;
}

.kv-btn-solid {
    display: inline-block;
    padding: 18px 40px;
    background: var(--kv-accent);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-kv-sans);
}

.kv-btn-solid:hover {
    background: var(--kv-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 30px;
    }
}

/* =========================================
   PREMIUM BOOKING PAGE (International Standard)
   ========================================= */
.booking-section-premium {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Shapes */
.booking-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--kv-accent);
    top: -200px;
    left: -200px;
    animation: floatShape 20s infinite ease-in-out alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--kv-gold);
    bottom: -100px;
    right: -100px;
    animation: floatShape 15s infinite ease-in-out alternate-reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--kv-accent);
    top: 50%;
    right: 20%;
    animation: floatShape 18s infinite ease-in-out alternate;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* Split Layout */
.booking-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Info Panel (Left) */
.booking-info-panel {
    padding: 40px 0;
}

.booking-title {
    font-family: var(--font-kv-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--kv-accent);
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--kv-gold);
}

.booking-subtitle {
    font-size: 1.15rem;
    color: var(--kv-text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--kv-accent);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.info-feature:hover .feature-icon {
    background: var(--kv-gold);
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--kv-text);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--kv-text-light);
    margin: 0;
}

/* Form Panel (Right) */
.booking-form-panel {
    position: relative;
}

.booking-card-premium {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.12);
    position: relative;
    z-index: 2;
}

.kv-form-premium {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Floating Label Input Groups */
.form-group-animated {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 16px;
    font-size: 1rem;
    font-family: var(--font-kv-sans);
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fdfdfd;
    color: var(--kv-text);
    transition: all 0.3s ease;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--kv-accent);
    box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.1);
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.25s ease;
    background: transparent;
    padding: 0 4px;
}

/* Label moves up when input is focused or has content */
.form-input:focus~.floating-label,
.form-input:not(:placeholder-shown)~.floating-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--kv-accent);
    background: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Highlight bar animation */
.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--kv-gold);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.form-input:focus~.input-highlight {
    width: 100%;
    left: 0;
}

/* Select Dropdown */
.form-select {
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: transform 0.3s;
}

.form-select:focus~.select-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--kv-accent);
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-textarea~.floating-label {
    top: 20px;
    transform: translateY(0);
}

.form-textarea:focus~.floating-label,
.form-textarea:not(:placeholder-shown)~.floating-label {
    top: 0;
    transform: translateY(-50%);
}

/* Form Row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Premium Button */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--kv-accent) 0%, #163a5f 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--font-kv-sans);
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--kv-gold) 0%, #d4aa5e 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.35);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-text i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Ripple effect on click */
.btn-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    top: 0;
    left: 0;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.btn-premium:active .btn-ripple {
    transform: scale(2);
    opacity: 1;
    transition: transform 0s;
}

/* Staggered Slide Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-field {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Staggered Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-info-panel {
        text-align: center;
    }

    .info-feature {
        justify-content: center;
        text-align: left;
    }

    .booking-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .booking-card-premium {
        padding: 30px 20px;
    }

    .booking-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   BOOKING PAGE ENHANCEMENTS
   ========================================= */

/* Hero Section with Background */
.booking-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center center/cover;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 80px;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.7) 100%);
    z-index: 1;
}

.booking-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 60px 20px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-kv-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kv-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-kv-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    line-height: 1.6;
    font-family: var(--font-kv-sans);
}

/* Enhanced Form Section */
.booking-enhanced {
    position: relative;
    padding: 100px 0;
}

.booking-enhanced .form-container-paper {
    position: relative;
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.12);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.booking-enhanced .form-container-paper:hover {
    box-shadow: 0 40px 90px rgba(10, 37, 64, 0.18);
    transform: translateY(-5px);
}

/* Enhanced Button */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

/* Form Field Animations */
.form-field-animated {
    opacity: 0;
    animation: slideUpFade 0.6s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Focus Enhancements */
.booking-enhanced .paper-input {
    transition: all 0.3s ease;
}

.booking-enhanced .paper-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
}

/* Hero Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInScale 1s ease-out forwards;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .booking-hero {
        min-height: 40vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .booking-enhanced {
        padding: 60px 0;
    }
}