/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary-green: #2d6a4f;
    --light-green: #52b788;
    --pale-green: #b7e4c7;
    --very-pale-green: #d8f3dc;
    --neutral-gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --dark-gray: #343a40;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --float-animation: float 6s ease-in-out infinite;
    --pulse-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --slide-animation: slideInUp 0.6s ease-out;
    --bounce-animation: bounce 0.8s ease-in-out;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo .logo-link:hover {
    color: var(--light-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--light-gray);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-in-out;
    filter: brightness(0.8) contrast(1.1);
}

.hero-slide:hover .hero-background img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 106, 79, 0.4) 0%,
        rgba(45, 106, 79, 0.2) 50%,
        rgba(45, 106, 79, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--pale-green);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
}

.hero-button:hover {
    background: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== SLIDER NAVIGATION ===== */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 4;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 106, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-green);
}

.slider-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 24px;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--neutral-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--very-pale-green);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SERVICE SECTIONS ===== */
.service-section {
    background: var(--white);
}

.service-section:nth-child(even) {
    background: var(--very-pale-green);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.service-content.reversed {
    grid-template-columns: 1fr 1fr;
}

.service-content.reversed .service-text {
    order: 2;
}

.service-content.reversed .service-image {
    order: 1;
}

/* Mobile responsive para service sections */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-content.reversed {
        grid-template-columns: 1fr;
    }
    
    .service-content.reversed .service-text {
        order: 1;
    }
    
    .service-content.reversed .service-image {
        order: 2;
    }
    
    .service-text {
        text-align: center;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .service-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .service-content {
        gap: 32px;
    }
    
    .service-text {
        padding: 10px 0;
        gap: 12px;
    }
    
    .service-image img {
        height: 250px;
    }
}

.service-text {
    padding: 40px 0;
}

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pale-green);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.service-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: left;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-size: 1rem;
}

.feature-item svg {
    color: var(--light-green);
    flex-shrink: 0;
}

.service-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
}

.service-button:hover {
    background: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 106, 79, 0.2);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--very-pale-green);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--pale-green);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--primary-green);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.contact-info {
    color: var(--neutral-gray);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pale-green);
    margin-bottom: 8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--pale-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

/* Tablets */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .service-description {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    section {
        padding: 64px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-social {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.service-text,
.service-image,
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.service-text.visible,
.service-image.visible,
.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.service-section:nth-child(1) .service-text { transition-delay: 0.1s; }
.service-section:nth-child(1) .service-image { transition-delay: 0.3s; }
.service-section:nth-child(2) .service-text { transition-delay: 0.2s; }
.service-section:nth-child(2) .service-image { transition-delay: 0.4s; }
.service-section:nth-child(3) .service-text { transition-delay: 0.3s; }
.service-section:nth-child(3) .service-image { transition-delay: 0.5s; }

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.2s; }
.contact-card:nth-child(3) { transition-delay: 0.3s; }

/* ===== ANIMATIONS KEYFRAMES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-3px); }
    75% { transform: translateY(3px); }
}

/* ===== ENHANCED MOVEMENTS ===== */
.hero-button {
    animation: var(--pulse-animation);
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-button:hover::before {
    width: 300px;
    height: 300px;
}

.service-button {
    position: relative;
    overflow: hidden;
    animation: var(--bounce-animation) 3s ease-in-out infinite;
}

.service-button:nth-child(even) {
    animation-delay: 1.5s;
}

.service-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-button:hover::after {
    left: 100%;
}

.service-card {
    animation: var(--slide-animation);
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.contact-card {
    animation: var(--slide-animation);
    animation-fill-mode: both;
}

.contact-card:hover {
    animation: var(--pulse-animation);
}

.nav-link {
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    transform: translateY(-2px);
}

.footer-link {
    position: relative;
    transition: var(--transition);
}

.footer-link:hover {
    transform: translateX(5px);
    color: var(--light-green);
}

.social-link {
    transition: var(--transition);
    position: relative;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--light-green);
}

.social-link:nth-child(1):hover { animation-delay: 0s; }
.social-link:nth-child(2):hover { animation-delay: 0.1s; }
.social-link:nth-child(3):hover { animation-delay: 0.2s; }

.section-title {
    animation: var(--slide-animation);
    animation-fill-mode: both;
}

.service-number {
    animation: var(--pulse-animation);
    animation-delay: 2s;
}

.feature-item {
    transition: var(--transition);
    transform-origin: left center;
}

.feature-item:hover {
    transform: translateX(10px) scale(1.05);
    color: var(--primary-green);
}

.hero-title {
    animation: var(--slide-animation);
    animation-fill-mode: both;
}

.hero-subtitle {
    animation: var(--slide-animation);
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-description {
    animation: var(--slide-animation);
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.slider-btn {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.slider-btn:hover {
    transform: scale(1.1);
    background: var(--light-green);
}

.slider-btn:active {
    transform: scale(0.95);
}

.dot {
    transition: var(--transition);
}

.dot:hover {
    transform: scale(1.3);
    background: var(--light-green);
}

.dot.active {
    animation: var(--pulse-animation);
}

.room-card {
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-item {
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    transition: var(--transition);
}

.service-item:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--light-green);
}

.contact-icon {
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--light-green);
}

.map-container {
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.footer-content {
    animation: var(--slide-animation);
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.logo-text {
    transition: var(--transition);
}

.logo-link:hover .logo-text {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-green);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: var(--float-animation);
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--pale-green);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 30%;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

/* ===== LOADING STATES ===== */
.loading {
    animation: var(--pulse-animation);
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== INTERACTIVE STATES ===== */
.clickable {
    transition: var(--transition);
    cursor: pointer;
}

.clickable:active {
    transform: scale(0.98);
}

.clickable:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
