.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    text-align: left;
    border-radius: 0 0 8px 8px;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 1rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 0.2rem;
    color: var(--secondary);
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-location img {
    width: 18px;
    height: 18px;
    filter: invert(61%) sepia(55%) saturate(543%) hue-rotate(54deg) brightness(93%) contrast(89%);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 6rem 3rem 6rem;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        padding: 0 12rem 3rem 12rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

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

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 0.75rem 0;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-hero-primary {
    background-color: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
}

.btn-hero-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero-secondary:hover {
    background-color: #fff;
    color: var(--text-color);
}

.services-section {
    padding: 5rem 1rem;
    background-color: transparent;
}

@media (min-width: 768px) {
    .services-section {
        padding: 5rem 6rem;
    }
}

@media (min-width: 1200px) {
    .services-section {
        padding: 5rem 12rem;
    }
}

.gallery-section {
    padding: 5rem 1rem;
    background-color: transparent;
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 5rem 6rem;
    }
}

@media (min-width: 1200px) {
    .gallery-section {
        padding: 5rem 12rem;
    }
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2px;
        max-height: 500px;
    }

    .gallery-mosaic-item.gallery-item-1 {
        grid-column: 1 / 5;
        grid-row: 1;
    }

    .gallery-mosaic-item.gallery-item-2 {
        grid-column: 5 / 8;
        grid-row: 1;
    }

    .gallery-mosaic-item.gallery-item-3 {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .gallery-mosaic-item.gallery-item-4 {
        grid-column: 3 / 6;
        grid-row: 2;
    }

    .gallery-mosaic-item.gallery-item-5 {
        grid-column: 6 / 8;
        grid-row: 2;
    }
}

.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    height: 100%;
}

.gallery-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-mosaic-item:hover .gallery-icon {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .gallery-mosaic-item {
        aspect-ratio: 4/3;
    }
}

.services-wrapper {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    position: relative;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transform: none;
    z-index: -1;
    border-radius: 8px;
    opacity: 1;
}

.service-box:hover {}

.service-icon {
    flex: 0 0 auto;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--primary);
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    position: relative;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem 3.5rem;
    }
}

@media (min-width: 992px) {
    .cta-section {
        padding: 5rem 6rem;
    }
}

@media (min-width: 1200px) {
    .cta-section {
        padding: 5rem 9rem;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 0;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
    color: var(--secondary);
    border: 2px solid #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

@media (max-width: 767px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-text {
        text-align: center;
    }
}

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

    .cta-description {
        font-size: 1.05rem;
    }
}

@media (min-width: 1200px) {
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

.equipment-section {
    padding: 5rem 1rem;
    background-color: transparent;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-header-left {
    flex: 1;
}

.section-header-right {
    flex: 0 0 auto;
}

.section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: none;
    color: var(--text-color);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}

.btn-section-link {
    display: inline-block;
    padding: 1rem 2rem;
    min-width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    background-color: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-section-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.equipment-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.equipment-item {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.equipment-item::before {
    display: none;
}

.equipment-item.active {
    background-color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(107, 180, 73, 0.2);
    transform: none;
}

.equipment-item:hover {
    border-color: var(--secondary);
}

.equipment-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.equipment-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.equipment-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.equipment-image-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    line-height: 0;
    margin-bottom: 2rem;
}

.equipment-image-container::before {
    display: none;
}

.equipment-image-container img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: opacity 0.1s ease-out, transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    transform: scale(1);
    opacity: 1;
}

.equipment-image-container img.fading-out {
    opacity: 0;
    transform: scale(0.95);
}

.equipment-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.equipment-nav {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #888;
    padding: 0;
}

.equipment-nav svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.equipment-nav:hover {
    color: var(--secondary);
    transform: scale(1.15);
}

.equipment-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.indicator-dot:hover {
    background-color: #ccc;
}

.indicator-dot.active:hover {
    background-color: var(--primary);
}

@media (min-width: 768px) {
    .equipment-section {
        padding: 5rem 6rem;
    }

    .equipment-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .equipment-list {
        flex: 0 0 40%;
    }

    .equipment-display {
        flex: 1;
        padding-left: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .equipment-section {
        padding: 5rem 12rem;
    }
}

.promo-section {
    padding: 5rem 1rem;
    background-color: transparent;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.promo-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.promo-title .highlight {
    color: var(--secondary);
}

.promo-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.btn-promo {
    display: inline-block;
    padding: 0.75rem 0;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-promo:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (min-width: 1024px) {
    .promo-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .promo-image {
        flex: 0 0 50%;
        max-width: none;
    }

    .promo-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .promo-section {
        padding: 6rem 12rem;
    }

    .promo-image {
        flex: 0 0 48%;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-description {
        font-size: 1.2rem;
    }
}