/* ========================================
   ABOUT SECTION - EXPERIENCE
   ======================================== */

.about-section {
    padding: 100px 0;
    background-image: url('../../image/bg/reservation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0f0f0f;
    position: relative; /* Ensure ::before is scoped to this section */
    z-index: 0; /* Create stacking context */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 8%;
    align-items: center;
    margin-bottom: 80px;
}

/* ========================================
   ABOUT IMAGE SECTION
   ======================================== */

.about-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-frame:hover .about-image {
    transform: scale(1.05);
}



/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-dark);
    padding: 20px 25px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.badge-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: var(--text-light-soft);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================================
   ABOUT CONTENT SECTION
   ======================================== */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* About Label */
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.label-icon {
    font-size: 1rem;
}

/* About Title */
.about-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Description */
.about-description {
    font-size: 1.05rem;
    color: var(--text-light-soft);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-light-soft);
    font-weight: 500;
}

.feature-box i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* About CTA Group */
.about-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.about-button-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 100%);
    color: var(--text-light);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.about-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.about-button-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light-soft);
}

.about-button-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE ABOUT SECTION
   ======================================== */

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .about-content {
        text-align: center;
        align-items: center;
    }

    .about-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .about-features {
        align-items: center;
    }

    .feature-box {
        justify-content: center;
    }

    .about-cta-group {
        justify-content: center;
    }

    .about-image-wrapper {
        order: -1;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        margin-bottom: 50px;
    }

    .about-image-frame {
        max-width: 350px;
    }

    .experience-badge {
        padding: 15px 20px;
        gap: 12px;
        bottom: -15px;
    }

    .badge-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    .badge-label {
        font-size: 0.8rem;
    }

    .about-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .about-description {
        font-size: 1rem;
    }

    .about-bottom-features {
        gap: 25px;
        padding: 0 4%;
    }

    .bottom-feature-item {
        padding: 30px 20px;
        min-height: 260px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .feature-title {
        font-size: 1.15rem;
    }

    .feature-description {
        font-size: 0.95rem;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 4%;
        margin-bottom: 40px;
    }

    .about-image-frame {
        max-width: 280px;
    }

    .experience-badge {
        flex-direction: column;
        padding: 15px;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
    }

    .badge-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-label {
        font-size: 0.75rem;
    }

    .badge-content {
        text-align: center;
    }

    .about-label {
        justify-content: center;
    }

    .about-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-features {
        gap: 12px;
    }

    .feature-box {
        font-size: 0.9rem;
    }

    .about-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .about-button {
        width: 100%;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .about-bottom-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 4%;
    }

    .bottom-feature-item {
        padding: 25px 15px;
        min-height: 240px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
        max-width: 200px;
    }
}
