/* ============================================
   About Page Styles
   ============================================ */

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: url('/assets/about/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    display: inline-block;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #ffc107;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
    margin: 0;
}

/* Introduction Section */
.about-intro {
    background: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

.about-intro .container {
    max-width: 800px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.intro-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.about-intro h2 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: #2e7d32;
    font-weight: 600;
}

/* Team Section */
.about-team {
    padding: 5rem 0;
    background: #fff;
}

.about-team h2 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-photo {
    width: 100%;
    height: 40%;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: #ffc107;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.member-social {
    margin-bottom: 1rem;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0077b5;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.member-social a:hover {
    background: #005885;
    transform: scale(1.1);
}

.member-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Video Section */
.about-video {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-video h3 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    background: #000;
    aspect-ratio: 16 / 9;
}

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

/* Testimonials Section */
.about-testimonials {
    padding: 5rem 0;
    background: #fff;
}

.about-testimonials h3 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-card .stars i {
    color: #ffc107;
    font-size: 1rem;
    margin: 0 2px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.trustpilot-link {
    text-align: center;
}

.trustpilot-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #00b67a;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00b67a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trustpilot-link a:hover {
    background: #00b67a;
    color: #fff;
}

.trustpilot-link a i {
    font-size: 0.85rem;
}

/* CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.cta-business {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/about/cta-business-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-services {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/about/cta-services-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-content {
    padding: 2rem;
    color: #fff;
    width: 100%;
}

.cta-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.cta-content h3 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffc107;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ffca28;
    transform: translateX(4px);
}

.btn-cta .btn-icons {
    display: flex;
    gap: 2px;
}

.btn-cta .btn-icons i {
    font-size: 0.75rem;
    color: #1a1a1a;
}

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

.btn-cta.btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        min-height: 200px;
    }

    .about-hero h1 {
        padding: 0.75rem 2rem;
    }

    .about-intro,
    .about-team,
    .about-video,
    .about-testimonials,
    .about-cta {
        padding: 3rem 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .member-photo {
        height: 240px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        min-height: 220px;
    }
}


@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.25rem;
        padding: 0.625rem 1.5rem;
        letter-spacing: 0.1em;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon i {
        font-size: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Hero Slider Styles
   ============================================ */

.about-hero--slider {
    background: none;
    padding: 0;
    min-height: 300px;
}

.about-hero-slider {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
}

.about-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.about-hero-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.about-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.about-hero--slider .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero--slider .about-hero-overlay .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero--slider .about-hero-overlay h1 {
    display: inline-block;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #ffc107;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
    margin: 0;
}

/* Nav buttons */
.about-hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    padding: 0;
}

.about-hero-btn:hover {
    background: rgba(255, 193, 7, 0.85);
    color: #1a1a1a;
}

.about-hero-btn--prev {
    left: 1rem;
}

.about-hero-btn--next {
    right: 1rem;
}

/* Dots */
.about-hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.about-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-hero-dot.active {
    background: #ffc107;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .about-hero--slider {
        min-height: 200px;
    }

    .about-hero-slider {
        min-height: 200px;
    }

    .about-hero-slide img {
        min-height: 200px;
    }

    .about-hero--slider .about-hero-overlay h1 {
        padding: 0.75rem 2rem;
    }

    .about-hero-btn {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

