/* EVBOX Page Specific Styles */
.evbox-hero {
    background: url('/img/evbox/evbox-tlo.jpg') center / cover no-repeat;
    color: #fff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.evbox-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.evbox-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evbox-hero__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.evbox-hero__title {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evbox-hero__logo {
    max-width: 300px;
    height: auto;
}

.evbox-hero__description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.evbox-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.evbox-hero__feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.evbox-hero__feature-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Section Styles */
.evbox-section {
    padding: 100px 0;
    position: relative;
}

.evbox-section:nth-child(even) {
    background-color: #f8f9fa;
}

.evbox-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evbox-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.evbox-section__category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00b1cf;
    background: rgba(0, 177, 207, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.evbox-section__title {
    font-size: 3rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
}

.evbox-section__subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Card */
.evbox-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.evbox-service:last-child {
    margin-bottom: 0;
}

.evbox-service__content {
    padding: 2rem 0;
}

.evbox-service__name {
    font-size: 2rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
}

.evbox-service__tagline {
    font-size: 1.125rem;
    color: #00b1cf;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.evbox-service__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.evbox-service__specs {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.evbox-section:nth-child(even) .evbox-service__specs {
    background: #fefefe;
}

.evbox-service__specs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 1rem;
}

.evbox-service__specs-list {
    list-style: none;
    padding: 0;
}

.evbox-service__specs-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.evbox-service__specs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: bold;
}

.evbox-service__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.evbox-service__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
}

.evbox-service__button--primary {
    background-color: #00b1cf;
    color: #fff;
    border: 2px solid #00b1cf;
}

.evbox-service__button--primary:hover {
    background-color: #0097ad;
    border-color: #0097ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 177, 207, 0.3);
}

/* Gallery */
.evbox-service__gallery {
    position: sticky;
    top: 120px;
}

.evbox-gallery__main {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evbox-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

/* Serial Numbers Section */
.evbox-serial-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.evbox-serial-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evbox-serial-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.evbox-serial-section__category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00b1cf;
    background: rgba(0, 177, 207, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.evbox-serial-section__title {
    font-size: 3rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
}

.evbox-serial-section__subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.serial-numbers {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.serial-numbers__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 1.5rem;
}

.serial-numbers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.serial-numbers__item {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    text-align: center;
}

.serial-numbers__item:hover {
    background: #e5e7eb;
    border-color: #00b1cf;
}

/* Responsive */
@media (max-width: 1024px) {
    .evbox-service {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .evbox-service__gallery {
        position: static;
    }

    .evbox-gallery__main {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .evbox-hero__logo {
        max-width: 200px;
    }

    .evbox-hero__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .evbox-section__title {
        font-size: 2rem;
    }

    .evbox-service__name {
        font-size: 1.5rem;
    }

    .evbox-section {
        padding: 60px 0;
    }

    .serial-numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .serial-numbers__grid {
        grid-template-columns: 1fr;
    }
}