/* ==========================================================================
   DUALIA — Premium Design System & Stylesheet (index.css)
   ========================================================================== */

/* Custom Properties / Design Tokens */
:root {
    --bg-dark: #050505;
    --bg-card: #0c0c0e;
    --bg-card-hover: #121215;
    --bg-light: #ffffff;
    --text-white: #ffffff;
    --text-silver: #a0a0a5;
    --text-dark: #121212;
    --text-dark-muted: #55555a;
    --accent: #ffffff;
    --accent-subtle: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);
    
    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease-out;
    
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
}

/* CSS Reset & General Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-silver);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.25;
}

.font-serif {
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Common Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-silver);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark-muted);
}

.section-light h2, .section-light h3, .section-light h4 {
    color: var(--text-dark);
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.text-center { text-align: center; }
.text-lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.text-body {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.text-muted {
    opacity: 0.85;
}
.text-white {
    color: var(--text-white) !important;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Grid System */
.grid {
    display: grid;
    gap: 3rem;
}

.grid-2-col {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
}

.align-center {
    align-items: center;
}

.gap-lg {
    gap: 5rem;
}

/* Section Badges & Titles */
.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 600;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 1px;
    background-color: var(--text-white);
}

.section-light .section-badge {
    color: var(--text-dark);
}
.section-light .section-badge::before {
    background-color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    margin: 1.5rem 0 2rem 0;
}

.section-light .divider {
    background-color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
}

.btn-block {
    display: width;
    width: 100%;
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 100;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(5, 5, 5, 0.9);
}

.header-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    max-height: 38px;
}

.nav {
    display: none; /* Hidden on mobile */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--text-silver);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-white);
    transition: var(--transition-quick);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-white);
    position: absolute;
    left: 0;
    transition: var(--transition-quick);
}

.menu-toggle span:nth-child(1) { top: 4px; }
.menu-toggle span:nth-child(2) { bottom: 4px; }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 12px;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav Overlay */
.nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease forwards;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.nav.mobile-open .nav-link {
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6.5rem;
    }
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-silver);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-silver);
    opacity: 0.7;
}

.indicator-arrow {
    width: 1px;
    height: 40px;
    background-color: var(--text-silver);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.indicator-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--text-white);
    animation: scrollLine 2s infinite ease-in-out;
}

/* Emblem Interactive Card */
.interactive-logo-card {
    position: relative;
    display: inline-block;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 12, 0.8) 100%);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.interactive-logo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.emblem-img {
    max-width: 250px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
}

.interactive-logo-card:hover .card-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

/* Sushi 2x1 Section Elements */
.sushi-franchise-logo {
    max-height: 80px;
    width: auto;
    margin: 0 auto 2rem auto;
}

.image-stack {
    position: relative;
    padding-bottom: 20%;
}

.img-stack-main {
    width: 85%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.img-stack-sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    border: 4px solid var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.image-stack:hover .img-stack-sub {
    transform: translate(-10px, -10px) scale(1.05);
}

.concept-features {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.75rem;
    background-color: var(--accent-subtle);
    padding: 0.75rem;
    border-radius: 50%;
    line-height: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.section-dark .feature-icon {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--border-dark);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.9rem;
}

/* Premium Showcase Gallery */
.gallery-intro {
    margin-bottom: 4rem;
}

.premium-gallery {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .premium-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .premium-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-silver);
    margin-bottom: 0.5rem;
}

.gallery-name {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--text-white);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Las Lomitas / Scrollytell Section */
.scrollytell-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
}

.scrollytell-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.scrollytell-content {
    background-color: rgba(5, 5, 5, 0.85);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.location-details {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .location-details {
        grid-template-columns: 1fr 1fr;
    }
}

.location-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-quick);
}

.location-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.location-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-silver);
    margin-bottom: 0.5rem;
}

.location-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

/* Contact & Careers Cards */
.premium-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    padding: 3.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-header {
    margin-bottom: 2.5rem;
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.card-desc {
    font-size: 0.95rem;
}

.contact-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.email-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.02em;
    word-break: break-all;
}

.email-link:hover {
    opacity: 0.8;
}

.btn-copy {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-quick);
    flex-shrink: 0;
}

.btn-copy:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
}

/* Forms */
.premium-form {
    display: grid;
    gap: 1.5rem;
    margin-top: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-silver);
    font-weight: 600;
}

.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form select,
.premium-form textarea {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    padding: 1rem;
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.premium-form select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* File Drag & Drop */
.cv-upload-area {
    border: 1px dashed var(--border-dark);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-quick);
    position: relative;
}

.cv-upload-area:hover,
.cv-upload-area.drag-over {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.upload-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.upload-text {
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.upload-subtext {
    font-size: 0.7rem;
    color: var(--text-silver);
    display: block;
}

.hidden-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-name-preview {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #4cd964;
    font-weight: 500;
}

/* Footer styling */
.footer {
    padding: 5rem 0 3rem 0;
    border-top: 1px solid var(--border-dark);
    background-color: var(--bg-dark);
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-silver);
}

.footer-link:hover {
    color: var(--text-white);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-dark);
    margin-bottom: 2.5rem;
}

.footer-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-silver);
    opacity: 0.7;
}

.footer-text a {
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text a:hover {
    border-bottom-color: var(--text-white);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: var(--text-white);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    .grid {
        gap: 2rem;
    }
    .interactive-logo-card {
        padding: 1.5rem;
    }
    .emblem-img {
        max-width: 180px;
    }
    .img-stack-sub {
        width: 50%;
    }
    .premium-card {
        padding: 2rem;
    }
}
