/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
}

.hero__content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.5s ease-out;
    transform: translateY(5vh);
}

.hero__title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    color: var(--silver);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__tagline {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #cccccc;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Slideshow Section */
.slideshow-section {
    position: relative;
    height: 60vh;
    min-height: 60vh;
    overflow: hidden;
    background: #1a1a1a;
    display: block;
    width: 100%;
}

.slideshow-container {
    position: relative;
    height: 100%;
    width: 100%;
    background: #000000;
}

.slideshow-track {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(192, 192, 192, 0.1) 100%
    );
    z-index: 3;
}

.slideshow-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #C0C0C0;
    border-color: rgba(192, 192, 192, 0.3);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.slideshow-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-arrow.prev {
    left: 1rem;
}

.slideshow-arrow.next {
    right: 1rem;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: #1a1a1a;
    position: relative;
    display: block;
    width: 100%;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
}

.description-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.description-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.description-text {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #cccccc;
    max-width: 90vw;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-item {
    background: rgba(45, 45, 45, 0.6);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--silver);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-item p {
    color: #cccccc;
    font-weight: 300;
    line-height: 1.7;
}

