/*
Theme Name: KNNS Minimal Theme
Theme URI: https://kanenas.net/
Author: Nikolas Branis (aka kanenas)
Author URI: https://kanenas.net/
Description: A responsive minimal WordPress theme with Bootstrap 5.3
Version: 2.2.1
License: GNU General Public License v2 or later
Text Domain: knns-booking-theme
*/

/* CSS Variables for Professional Government/Procurement Color Scheme */
:root {
    /* Primary Blue Colors - Professional Government Style */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --primary-blue-darker: #1e3a8a;
    
    /* Secondary Colors */
    --secondary-blue: #0ea5e9;
    --accent-blue: #06b6d4;
    --success-green: #059669;
    --warning-orange: #d97706;
    --danger-red: #dc2626;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
}

/* Base Typography - Professional Government Style */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
}

h5, h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Professional Header Styles */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-blue);
}

.navbar {
    padding: 1rem 0;
    background: var(--white);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

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

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    background-color: var(--gray-100);
}

/* Professional Button Styles */
.btn {
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
    color: var(--white);
}

.btn-warning {
    background-color: var(--warning-orange);
    border-color: var(--warning-orange);
    color: var(--white);
}

.btn-danger {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    color: var(--white);
}

/* Professional Form Styles */
.form-control, .form-select, input[type="text"], input[type="email"], input[type="password"], 
input[type="tel"], input[type="url"], textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-800);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus, .form-select:focus, input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-label, label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Professional Card Styles */
.card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

/* Professional Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Professional Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.col, .col-12, .col-md-6, .col-lg-4, .col-lg-8 {
    padding: 0 0.75rem;
    flex: 1;
}

.col-12 { flex: 0 0 100%; }
.col-md-6 { flex: 0 0 50%; }
.col-lg-4 { flex: 0 0 33.333333%; }
.col-lg-8 { flex: 0 0 66.666667%; }

/* Professional Footer */
.site-footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
    color: var(--white);
}

.site-footer p {
    color: var(--gray-300);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-links-inline a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links-inline a:hover {
    color: var(--white);
}

/* Ensure all footer links are visible */
.site-footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer .widget-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Force footer text visibility */
.site-footer * {
    color: inherit;
}

.site-footer .text-muted {
    color: var(--gray-400) !important;
}

.site-footer .text-light {
    color: var(--gray-300) !important;
}

.site-footer .text-white {
    color: var(--white) !important;
}

/* Ensure footer links are always visible */
.site-footer a:not(.btn) {
    color: var(--gray-300) !important;
}

.site-footer a:not(.btn):hover {
    color: var(--white) !important;
}

/* Professional Alerts/Notices */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(5, 150, 105, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.alert-warning {
    background-color: rgba(217, 119, 6, 0.1);
    border-color: var(--warning-orange);
    color: var(--warning-orange);
}

.alert-danger {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: var(--danger-red);
    color: var(--danger-red);
}

.alert-info {
    background-color: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Professional Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-form h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Professional Registration Buttons */
.registration-buttons {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.registration-buttons h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-registration {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-registration:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-registration.btn-client {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-registration.btn-client:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-registration.btn-technician {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-registration.btn-technician:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

/* Professional Responsive Design */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .col-lg-4 { flex: 0 0 50%; }
    .col-lg-8 { flex: 0 0 100%; }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}

/* Tablet Portrait & Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .search-form, .registration-buttons {
        padding: 1.25rem;
        margin: 1rem 0;
    }
    
    .footer-links-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
    }
    
    .col-lg-4 { flex: 0 0 100%; }
    .col-lg-8 { flex: 0 0 100%; }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.25rem; }
    
    /* Navbar mobile fixes */
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .navbar-nav {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    /* User actions in mobile nav */
    .d-flex.align-items-center.ms-3 {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .d-flex.align-items-center.ms-3 .dropdown {
        width: 100%;
    }
    
    .d-flex.align-items-center.ms-3 .dropdown .btn {
        width: 100%;
        text-align: left;
    }
    
    /* D-flex stacking on mobile */
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .d-flex.gap-2,
    .d-flex.gap-3 {
        flex-wrap: wrap;
    }
    
    /* Card responsive */
    .card-body {
        padding: 1rem;
    }
    
    .card-header {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* Row responsive */
    .row {
        margin: 0 -0.5rem;
    }
    
    .col, .col-12, .col-md-6, .col-lg-4, .col-lg-8 {
        padding: 0 0.5rem;
    }
    
    /* Table responsive */
    .table {
        font-size: 0.875rem;
    }
    
    .table th, .table td {
        padding: 0.5rem;
    }
    
    /* Buttons full width on mobile */
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Site footer */
    .site-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .search-form, .registration-buttons {
        padding: 1rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    
    body {
        font-size: 15px;
    }
}

/* Professional Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Professional Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Registration Buttons Section */
.registration-buttons {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--booking-shadow);
    backdrop-filter: blur(10px);
}

.registration-buttons h4 {
    color: var(--booking-blue-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.registration-buttons .small {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Card Styles */
.booking-card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--booking-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--booking-shadow-lg);
}

.booking-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.booking-card .card-body {
    padding: 1.5rem;
}

.booking-card .card-title {
    font-weight: 600;
    color: var(--booking-gray-dark);
    margin-bottom: 0.5rem;
}

.booking-card .card-text {
    color: var(--booking-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.booking-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--booking-blue);
}

/* Rating Stars */
.rating {
    color: var(--booking-orange);
    font-size: 0.9rem;
}

.rating .fa-star {
    margin-right: 2px;
}

/* Features Section */
.features-section {
    background: var(--booking-gray-light);
    padding: 4rem 0;
    margin: 3rem 0;
}

.feature-icon {
    font-size: 3rem;
    color: var(--booking-blue);
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    color: var(--booking-gray-dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--booking-gray);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-section-title {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .footer-links-inline {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-links-inline a {
        font-size: 0.85rem;
    }
    
    /* Hide pipe separators on mobile since links stack vertically */
    .footer-separator {
        display: none;
    }
    
    .site-footer {
        padding: 2rem 0 1.5rem;
    }
    
    .site-footer hr {
        margin: 1.5rem 0 !important;
    }
    
    .site-footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-links-inline a {
        font-size: 0.8rem;
    }
    
    .footer-section-title {
        font-size: 0.875rem;
    }
    
    .site-footer {
        padding: 1.5rem 0 1rem;
    }
}

/* Blog/Post Styles */
.post-card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--booking-shadow);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.post-card:hover {
    transform: translateY(-2px);
}

.post-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.post-meta {
    color: var(--booking-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: var(--booking-gray);
    line-height: 1.6;
}

.read-more {
    color: var(--booking-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--booking-blue-light);
}

/* Pagination */
.pagination {
    justify-content: center;
    margin: 3rem 0;
}

.page-link {
    color: var(--booking-blue);
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--booking-blue);
    color: var(--booking-white);
    border-color: var(--booking-blue);
}

.page-item.active .page-link {
    background: var(--booking-blue);
    border-color: var(--booking-blue);
}

/* Responsive Design - Booking */
@media (max-width: 768px) {
    .booking-card .card-img-top {
        height: 180px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .features-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .post-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .btn-booking {
        width: 100%;
        margin-top: 1rem;
    }
    
    .booking-card .card-img-top {
        height: 150px;
    }
}

/* Utility Classes */
.text-booking-blue {
    color: var(--booking-blue) !important;
}

.bg-booking-blue {
    background-color: var(--booking-blue) !important;
}

.text-booking-orange {
    color: var(--booking-orange) !important;
}

.bg-booking-orange {
    background-color: var(--booking-orange) !important;
}

.shadow-booking {
    box-shadow: var(--booking-shadow) !important;
}

.shadow-booking-lg {
    box-shadow: var(--booking-shadow-lg) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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