/* About Section Styles */
.about-section {
    background-color: var(--color-black); /* Dark theme for premium feel */
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.about-content {
    padding-right: var(--spacing-md);
}

.about-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-gray-medium);
}

.about-description {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Square Slider */
.about-slider-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Subtle curve */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); /* Deep shadow */
}

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

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

/* Slider Controls */
.about-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 var(--spacing-sm);
    pointer-events: none;
}

.about-slider-arrow {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    font-size: 1.2rem;
}

.about-slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.about-slider-dots {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.about-dot.active {
    background-color: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
