/* ============================================ */
/* MODERN CSS RESET & BASE STYLES              */
/* ============================================ */

:root {
    --primary: #0b1120;
    --primary-light: #1e3a8a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --max-width: 1280px;
    --nav-height: 80px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --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);
}

[data-theme="dark"] {
    --primary: #1a1f35;
    --primary-light: #2d5a8c;
    --text-dark: #e2e8f0;
    --text-light: #cbd5e1;
    --bg-light: #0f172a;
    --white: #1e293b;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    color: var(--text-dark); 
    background-color: var(--white); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    display: block; 
    height: auto; 
}

.container { 
    max-width: var(--max-width); 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* ============================================ */
/* LANGUAGE TRANSLATION & ANIMATIONS           */
/* ============================================ */

[data-i18n] {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.fade-out {
    opacity: 0 !important;
}

/* Theme transition - smooth color changes */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { 
    transition-delay: 0.1s; 
}

.reveal-delay-2 { 
    transition-delay: 0.2s; 
}

.reveal-delay-3 { 
    transition-delay: 0.3s; 
}

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

@keyframes spin {
    100% { 
        transform: rotate(360deg); 
    }
}

@keyframes driveAcross {
    0% { 
        left: -300px; 
        transform: scale(0.8) rotateY(-5deg); 
    }
    40% { 
        transform: scale(1) rotateY(-5deg); 
    }
    60% { 
        transform: scale(1) rotateY(-5deg); 
    }
    100% { 
        left: 110%; 
        transform: scale(0.8) rotateY(-5deg); 
    }
}

/* ============================================ */
/* PAGE LOADER - TRUCK ANIMATION                */
/* ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
    overflow: hidden;
}

.road-line {
    position: absolute;
    bottom: 44%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.truck-wrapper {
    position: absolute;
    bottom: 45%;
    left: -300px;
    transform-style: preserve-3d;
    perspective: 800px;
    z-index: 10000;
}

.truck {
    position: relative;
    width: 280px;
    height: 120px;
    transform: rotateY(-10deg);
    transform-style: preserve-3d;
}

.truck-trailer {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 4px;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.truck-trailer::after {
    content: 'XHEKI';
    color: rgba(255,255,255,0.15);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 2px;
    transform: skewX(-10deg);
}

.truck-cab {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 75px;
    height: 80px;
    background: var(--white);
    border-radius: 4px 12px 4px 4px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
}

.truck-window {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 40px;
    height: 25px;
    background: #333;
    border-radius: 0 8px 0 0;
}

.truck-light {
    position: absolute;
    bottom: 10px;
    right: -2px;
    width: 6px;
    height: 12px;
    background: #f59e0b;
    border-radius: 2px;
    box-shadow: 0 0 10px #f59e0b;
}

.truck-connector {
    position: absolute;
    left: 200px;
    bottom: 30px;
    width: 15px;
    height: 10px;
    background: #555;
}

.wheels {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
}

.wheel {
    position: absolute;
    bottom: -10px;
    width: 28px;
    height: 28px;
    background: #111;
    border: 3px solid #555;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.wheel-inner {
    position: absolute;
    top: 50%; 
    left: 50%;
    width: 6px; 
    height: 6px;
    background: #888;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wheel-spoke {
    position: absolute;
    top: 50%; 
    left: 50%;
    width: 100%; 
    height: 2px;
    background: #444;
    transform: translate(-50%, -50%);
}

.w1 { 
    left: 20px; 
}

.w2 { 
    left: 55px; 
}

.w3 { 
    right: 15px; 
}

.animating-truck {
    animation: driveAcross 2.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 12px 32px; 
    font-weight: 600; 
    font-size: 1rem; 
    border-radius: 6px; 
    transition: var(--transition); 
    cursor: pointer; 
    border: none; 
    letter-spacing: 0.025em; 
    position: relative; 
    overflow: hidden; 
}

.btn-white { 
    background-color: var(--white); 
    color: var(--primary); 
    border: 2px solid #e2e8f0; 
}

.btn-white:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow); 
}

.btn-primary { 
    background-color: var(--primary-light); 
    color: var(--white); 
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.2); 
}

.btn-primary:hover { 
    background-color: var(--accent); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 15px rgba(30, 58, 138, 0.3); 
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.theme-toggle-btn {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
    transform: scale(1.05);
}

/* ============================================ */
/* HEADER & NAVIGATION                          */
/* ============================================ */

header { 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: var(--transition); 
    background-color: var(--primary); 
}

header.scrolled { 
    background-color: rgba(11, 17, 32, 0.95); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    padding-top: 0; 
    padding-bottom: 0; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: var(--nav-height); 
    transition: height 0.3s; 
}

header.scrolled nav { 
    height: 70px; 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--white); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    letter-spacing: -0.025em; 
}

.logo span { 
    color: var(--accent); 
}

.nav-menu { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
}

.nav-links { 
    display: flex; 
    gap: 32px; 
}

.nav-links a { 
    font-weight: 500; 
    font-size: 0.95rem; 
    color: #cbd5e1; 
    transition: var(--transition); 
    position: relative; 
}

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

.nav-links a::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: -4px; 
    left: 0; 
    background-color: var(--accent); 
    transition: var(--transition); 
}

.nav-links a:hover::after { 
    width: 100%; 
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
}

.lang-switch { 
    background: rgba(255,255,255,0.1); 
    color: var(--white); 
    border: 1px solid rgba(255,255,255,0.2); 
    padding: 8px 14px; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 0.85rem; 
    transition: var(--transition); 
}

.lang-switch:hover { 
    background: rgba(255,255,255,0.2); 
    border-color: var(--white); 
    transform: scale(1.05); 
}

.hamburger { 
    display: none; 
    cursor: pointer; 
    color: var(--white); 
    font-size: 1.8rem; 
    z-index: 1001; 
    transition: transform 0.3s; 
}

.hamburger:hover { 
    transform: scale(1.1); 
}

.mobile-lang-switch { 
    display: none; 
    margin-right: 16px; 
    height: 40px; 
}

.nav-actions-flex {
    display: flex;
    align-items: center;
}

.contact-section-subtitle {
    margin-bottom: 40px;
}

.mobile-nav-overlay {
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 100%; 
    height: 100vh;
    background-color: var(--primary); 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    gap: 30px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
    z-index: 1000;
}

.mobile-nav-overlay.active { 
    right: 0; 
}

.mobile-nav-overlay a { 
    font-size: 1.5rem; 
    color: var(--white); 
    font-weight: 600; 
    transition: color 0.3s; 
}

.mobile-nav-overlay a:hover { 
    color: var(--accent); 
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */

.hero {
    height: 100vh; 
    min-height: 600px; 
    margin-top: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0.6) 100%),
                url('https://i.postimg.cc/vZBBQMjs/fun6343web-1900x1268.jpgw=2070&q=80');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white);
    padding-top: var(--nav-height);
}

.hero-content { 
    max-width: 900px; 
    padding: 0 20px; 
    animation: fadeInUp 1s ease-out; 
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    line-height: 1.1; 
    font-weight: 800; 
    margin-bottom: 24px; 
    letter-spacing: -0.02em; 
}

.hero p { 
    font-size: clamp(1.1rem, 2vw, 1.35rem); 
    margin-bottom: 40px; 
    color: #e2e8f0; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}

/* ============================================ */
/* SECTIONS LAYOUT                              */
/* ============================================ */

.section-padding { 
    padding: 100px 0; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 70px; 
}

.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 16px; 
    font-weight: 800; 
}

.section-header p { 
    color: var(--text-light); 
    max-width: 600px; 
    margin: 0 auto; 
    font-size: 1.1rem; 
}

/* ============================================ */
/* STATS SECTION                                */
/* ============================================ */

.stats-bar { 
    background-color: var(--primary-light); 
    color: var(--white); 
    padding: 50px 0; 
    margin-top: -80px; 
    position: relative; 
    z-index: 10; 
    border-radius: 8px; 
    box-shadow: var(--shadow-lg); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    text-align: center; 
}

.stat-link { 
    color: inherit; 
    text-decoration: none; 
    display: block; 
    transition: transform 0.2s; 
}

.stat-link:hover { 
    transform: scale(1.1); 
    text-shadow: 0 0 10px rgba(255,255,255,0.5); 
}

.stat-item h3 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin-bottom: 5px; 
}

.stat-item p { 
    font-size: 0.95rem; 
    opacity: 0.9; 
    font-weight: 500; 
}

/* ============================================ */
/* SERVICES SECTION                             */
/* ============================================ */

.services { 
    background-color: var(--bg-light); 
}

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

.service-card { 
    background: var(--white); 
    padding: 48px 32px; 
    border-radius: 12px; 
    transition: var(--transition); 
    box-shadow: var(--shadow); 
    border: 1px solid #e2e8f0; 
    position: relative;
    top: 0;
}

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

.icon-box { 
    width: 70px; 
    height: 70px; 
    background-color: #eff6ff; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 24px; 
    color: var(--accent); 
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--accent);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 16px; 
    color: var(--primary); 
}

.service-card p { 
    color: var(--text-light); 
    margin-bottom: 24px; 
    font-size: 1.05rem; 
}

.learn-more { 
    color: var(--accent); 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    transition: gap 0.3s; 
}

.learn-more:hover { 
    gap: 12px; 
}

/* ============================================ */
/* ABOUT SECTION                                */
/* ============================================ */

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}

.about-image { 
    position: relative; 
}

.about-image img { 
    border-radius: 12px; 
    box-shadow: var(--shadow-lg); 
    width: 100%; 
    transition: transform 0.5s; 
}

.about-image:hover img { 
    transform: scale(1.02); 
}

.about-image::before { 
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    border: 4px solid var(--accent); 
    top: 20px; 
    left: -20px; 
    z-index: -1; 
    border-radius: 12px; 
    transition: var(--transition); 
}

.about-image:hover::before { 
    top: 10px; 
    left: -10px; 
}

.about-content h4 { 
    color: var(--accent); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
    margin-bottom: 12px; 
}

.about-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.checklist { 
    list-style: none;
}

.checklist li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 16px; 
    font-weight: 500; 
    font-size: 1.05rem; 
}

.check-icon { 
    color: var(--accent); 
    background: #eff6ff; 
    padding: 4px; 
    border-radius: 50%; 
    font-size: 0.8rem; 
}

.spacer-lg {
    margin-top: 32px;
}

/* ============================================ */
/* GALLERY PREVIEW SECTION                      */
/* ============================================ */

.gallery-preview { 
    background-color: var(--bg-light); 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { 
    opacity: 1; 
}

.gallery-section-text {
    text-align: center;
}

/* ============================================ */
/* LIGHTBOX                                     */
/* ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.lightbox-prev { 
    left: 20px; 
    border-radius: 3px 0 0 3px; 
}

.lightbox-next { 
    right: 20px; 
    border-radius: 0 3px 3px 0; 
}

.lightbox-nav:hover { 
    background-color: var(--accent); 
}

/* ============================================ */
/* CONTACT SECTION                              */
/* ============================================ */

.contact-section { 
    background-color: var(--primary); 
    color: var(--white); 
    padding: 100px 0; 
    text-align: center; 
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    margin-bottom: 50px; 
    flex-wrap: wrap; 
}

.contact-item { 
    background: rgba(255,255,255,0.05); 
    padding: 20px 40px; 
    border-radius: 8px; 
    border: 1px solid rgba(255,255,255,0.1); 
    transition: var(--transition); 
}

.contact-item:hover { 
    background: rgba(255,255,255,0.1); 
    transform: translateY(-5px); 
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.social-icons-container { 
    margin-top: 30px; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}

.social-icon { 
    width: 48px; 
    height: 48px; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white); 
    transition: var(--transition);
}

.social-icon:hover { 
    background: var(--accent); 
    border-color: var(--accent); 
    transform: scale(1.1); 
}

.spacer-contact {
    margin-top: 40px;
}

.map-responsive { 
    width: 100%; 
    max-width: 1000px; 
    height: 450px; 
    margin: 0 auto; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: var(--shadow-lg); 
}

.map-responsive iframe { 
    width: 100%; 
    height: 100%; 
    border: 0; 
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer { 
    background-color: #020617; 
    color: var(--white); 
    padding: 80px 0 30px; 
    font-size: 0.95rem; 
    border-top: 1px solid #1e293b; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 60px; 
    margin-bottom: 60px; 
}

.footer-info p { 
    color: #94a3b8; 
    margin-top: 24px; 
    max-width: 320px; 
    line-height: 1.7; 
}

.footer-col h4 { 
    color: var(--white); 
    margin-bottom: 24px; 
    font-size: 1.1rem; 
    font-weight: 700; 
}

.footer-col ul li { 
    margin-bottom: 12px; 
}

.footer-col ul li a { 
    color: #94a3b8; 
    transition: var(--transition); 
}

.footer-col ul li a:hover { 
    color: var(--white); 
    padding-left: 6px; 
    color: var(--accent); 
}

.copyright { 
    text-align: center; 
    color: #475569; 
    padding-top: 30px; 
    border-top: 1px solid #1e293b; 
    font-size: 0.9rem; 
}

/* ============================================ */
/* RESPONSIVE DESIGN                            */
/* ============================================ */

@media (max-width: 1024px) {
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
    }
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .about-image::before { 
        display: none; 
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions { 
        display: none; 
    }
    .hamburger { 
        display: block; 
    }
    .mobile-lang-switch { 
        display: block; 
    }
    
    .hero { 
        background-attachment: scroll; 
    }
    .stats-bar { 
        margin-top: 0; 
        border-radius: 0; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .map-responsive { 
        height: 350px; 
    }
    .section-header h2 { 
        font-size: 2rem; 
    }
    .lightbox-content { 
        width: 95%; 
    }
    
    .truck { 
        transform: scale(0.8) rotateY(-10deg); 
    }
}
