/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Page Header */
.page-header--about {
    background: linear-gradient(135deg, #0097b2 0%, #007a92 100%);
    color: white;
}

.page-header--about .breadcrumb__item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header--about .breadcrumb__item:hover {
    color: white;
}

.page-header--about .breadcrumb__item--active {
    color: white;
}

.page-header--about .breadcrumb__separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #007a92;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.section-header--center .section-badge {
    margin-bottom: 1.5rem;
}

/* About Intro */
.about-intro {
    padding: 5rem 0;
}

.about-intro__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro__content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4B5563;
    font-size: 1.0625rem;
}

.about-text strong {
    color: #0097b2;
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F9FAFB, white);
    border-radius: 1rem;
    border-left: 4px solid #0097b2;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}

.feature-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0097b2, #007a92);
    color: white;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
    color: #111827;
}

.feature-item p {
    font-size: 0.9375rem;
    color: #6B7280;
}

/* About Image */
.about-intro__image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-intro__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 150px;
}

.image-badge__number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0097b2, #007a92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.image-badge__text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6B7280;
}

/* Stats Alt */
.stats-section--alt {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F9FAFB, #E0F2FE);
}

.stats-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card {
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #0097b2, #007a92);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.15);
}

.mission-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #007a92;
    border-radius: 1.25rem;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-card--vision .mission-card__icon {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: #16A34A;
}

.mission-card__title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #111827;
}

.mission-card__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4B5563;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: white;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #0097b2;
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.15);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #007a92;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-card__icon {
    background: linear-gradient(135deg, #0097b2, #007a92);
    color: white;
    transform: rotateY(360deg);
}

.value-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #111827;
}

.value-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-card__image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.1);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #0097b2;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social__link:hover {
    background: #0097b2;
    color: white;
    transform: translateY(-4px);
}

.team-card__content {
    padding: 1.75rem;
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.375rem;
}

.team-card__role {
    font-size: 0.9375rem;
    color: #0097b2;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.team-card__bio {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #EFF6FF, #F9FAFB);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}

.testimonial-card__stars i {
    color: #F59E0B;
    font-size: 1.125rem;
}

.testimonial-card__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-card__tour {
    font-size: 0.875rem;
    color: #6B7280;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, #0097b2, #007a92);
    border-radius: 2rem;
    color: white;
}

.cta-card__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.cta-card__text {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cta-card__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn--outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn--outline:hover {
    background: white;
    color: #0097b2;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.1);
}

/* Video Section Styles */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-notice {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #ddd;
}

/* Gallery Preview in Admin */
.gallery-preview {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gallery-preview img {
    border: 2px solid #dee2e6;
    transition: transform 0.2s;
}

.gallery-preview img:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

