/* Services Page Styles */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-top: 0;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.services-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Service Detail Hero */
.service-detail-hero {
    padding: 3rem 0;
    text-align: center;
    margin-top: 0;
    color: white;
}

.service-detail-hero .hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.service-detail-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.service-detail-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Service Detail Section */
.service-detail-section {
    padding: 3rem 0;
    background: var(--bg);
    min-height: calc(100vh - 400px);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Service Info Cards */
.service-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg);
}

.info-card h2 i {
    color: var(--primary);
}

.info-card p {
    color: var(--text);
    line-height: 1.8;
}

/* Features List */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    color: var(--text);
    line-height: 1.6;
}

.features-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* Tech Specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spec-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Service Pricing Sidebar */
.service-pricing-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.pricing-header i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Pricing Plans */
.pricing-plans {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-plan {
    cursor: pointer;
    position: relative;
}

.pricing-plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-content {
    padding: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan input[type="radio"]:checked + .plan-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-badge.save {
    background: #2ecc71;
    color: white;
}

.plan-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-currency {
    font-size: 1rem;
    color: var(--text-light);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.plan-features i {
    color: #2ecc71;
    font-size: 0.8rem;
}

/* Pricing Summary */
.pricing-summary {
    padding: 1.5rem 2rem;
    background: var(--bg);
    border-top: 2px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.summary-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Large Add to Cart Button */
.add-to-cart-btn.large {
    margin: 0 2rem 2rem;
    padding: 1.2rem;
    font-size: 1.2rem;
}

/* Contact Info Box */
.contact-info-box {
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--bg);
    border-top: 2px solid #eee;
}

.contact-info-box p {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.trust-badges .badge {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text);
}

.trust-badges .badge i {
    font-size: 1.5rem;
    color: #2ecc71;
}

/* Cart Icon in Navigation */
.cart-icon {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background: var(--bg);
}

.service-category {
    margin-bottom: 3rem;
}

.service-category h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h2 i {
    color: var(--primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Service Pricing */
.service-pricing {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 10px;
}

.price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-option {
    cursor: pointer;
    position: relative;
}

.price-option.full-width {
    grid-column: 1 / -1;
}

.price-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-label {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.price-option input[type="radio"]:checked + .option-label {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
}

.option-type {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.option-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Prompt', sans-serif;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.add-to-cart-btn:active {
    transform: scale(0.98);
}

/* Shopping Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.cart-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cart-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.cart-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 1.1rem;
}

/* Cart Item */
.cart-item {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cart-item-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.remove-item:hover {
    background: #ff3838;
    transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.total-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Prompt', sans-serif;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.checkout-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-category h2 {
        font-size: 1.5rem;
    }

    .price-options {
        grid-template-columns: 1fr;
    }

    .cart-content {
        width: 95%;
        max-height: 90vh;
    }

    .cart-header {
        padding: 1rem 1.5rem;
    }

    .cart-header h2 {
        font-size: 1.2rem;
    }

    .cart-body {
        padding: 1rem;
    }

    .cart-item {
        padding: 1rem;
    }
}

/* Success Animation */
@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.add-to-cart-btn.success {
    animation: successPulse 0.5s ease;
}

/* Category Filter */
.service-card.hidden {
    display: none;
}

/* Services Overview Grid - for services.html overview page */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-overview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-overview-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-overview-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price-tag {
    background: var(--bg);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.from-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.service-price-tag .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateX(5px);
}

.service-cta i {
    font-size: 1.2rem;
}

/* Services CTA Section */
.services-cta-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: white;
    color: var(--primary);
}

.cta-btn.primary:hover {
    background: var(--bg);
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
}

/* Responsive for Overview Cards */
@media (max-width: 768px) {
    .services-hero h1,
    .service-detail-hero h1 {
        font-size: 2rem;
    }

    .services-hero p,
    .service-detail-hero p {
        font-size: 1rem;
    }

    .service-detail-hero .hero-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-card h3 {
        font-size: 1.5rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-pricing-sidebar {
        position: static;
    }

    .tech-specs,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .info-card h2 {
        font-size: 1.3rem;
    }
}

