/* ═══════════════════════════════════════════
   Who We Are – Page-Specific Styles
   Inherits design tokens from styles.css
═══════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────── */
.about-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 16, 47, 0.7) 0%, rgba(11, 14, 20, 0) 100%);
    pointer-events: none;
}

.about-hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60A5FA;
    margin-bottom: 16px;
}

.about-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    max-width: 860px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #c0c9d5;
    max-width: 760px;
    margin: 0 auto 16px;
    line-height: 1.75;
}

/* ── Breadcrumb ─────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--text-main);
}

.breadcrumb span {
    color: #60A5FA;
}

/* ── Awards Slider ──────────────────────────── */
.awards-section {
    padding: 80px 24px;
    text-align: center;
}

.award-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.award-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.award-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Each slide = full width, contains 3 cards in a row */
.award-slide {
    min-width: calc(100% / 3);
    display: flex;
    justify-content: center;
    padding: 8px 4px;
}
.award-item {
    width: 100%;
    margin: 0 10px;
}

/* Partial slide (< 3 items) — centre the items */
.award-slide--partial {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
}

/* Individual award card */
.award-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px 28px;
    background: linear-gradient(160deg, rgba(20, 30, 62, 0.75) 0%, rgba(11, 16, 38, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

/* Glowing top accent bar */
.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60A5FA, #a78bfa, #60A5FA, transparent);
    opacity: 0.7;
    border-radius: 0 0 2px 2px;
    transition: opacity 0.35s ease;
}

/* Subtle inner shine at top */
.award-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(96, 165, 250, 0.06), transparent);
    pointer-events: none;
}

.award-item:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.12);
}

.award-item:hover::before {
    opacity: 1;
}

/* Award image — direct, no wrapper box */
.award-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.2));
}

.award-item:hover img {
    transform: scale(1.08) translateY(-3px);
}

/* Caption */
.award-slide-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    line-height: 1.4;
    max-width: 200px;
}

/* Prev / Next arrow buttons */
.award-slider-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.award-slider-btn:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(96, 165, 250, 0.5);
    transform: scale(1.1);
}

.award-slider-btn .lucide {
    width: 20px;
    height: 20px;
}

/* Dots */
.award-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.award-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.award-dot.active {
    background: #60A5FA;
    width: 28px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .award-slide {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .award-slide {
        min-width: 100%;
    }
}



/* ── Vision & Mission ───────────────────────── */
.vision-mission-section {
    padding: 80px 24px;
}

.vision-mission-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    background: linear-gradient(135deg, rgba(20, 30, 62, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    pointer-events: none;
}

.vm-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    margin-bottom: 16px;
}

.vm-icon-wrap .lucide {
    width: 26px;
    height: 26px;
}

.vm-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #60A5FA;
    margin-bottom: 12px;
    display: block;
}

.vm-card h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.vm-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── Core Values ────────────────────────────── */
.values-section {
    padding: 80px 24px;
    text-align: center;
}

.values-section .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #60A5FA;
    margin-bottom: 12px;
}

.values-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.values-section .section-sub {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 56px;
    font-size: 0.975rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: visible;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    width: 210px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(59, 130, 246, 0.08);
}

.value-icon-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
}

.value-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-icon-wrap .lucide {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ── Team / About ────────────────────────────── */
.team-section {
    padding: 80px 24px;
}

.team-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-inner.reverse {
    direction: rtl;
}

.team-inner.reverse>* {
    direction: ltr;
}

.team-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(20, 30, 62, 0.5);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.team-img-wrap:hover img {
    opacity: 1;
}

.team-img-glow {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    pointer-events: none;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-content .section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #60A5FA;
}

.team-content h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    line-height: 1.2;
}

.team-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.975rem;
}

.team-content .btn {
    align-self: flex-start;
}

/* ── Services ────────────────────────────────── */
.services-section {
    padding: 80px 24px;
    text-align: center;
}

.services-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.services-section .section-sub {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.35);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    margin-bottom: 20px;
}

.service-card-icon .lucide {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── DreamzAI CTA ────────────────────────────── */
.dreamzai-cta-section {
    padding: 140px 24px 100px;
    background: #101835;
    clip-path: polygon(0 60px, 60% 60px, calc(60% + 60px) 0, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.dreamzai-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.dreamzai-cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    pointer-events: none;
}

.dreamzai-cta-text .tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #60A5FA;
    margin-bottom: 12px;
    display: block;
}

.dreamzai-cta-text h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.dreamzai-cta-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.975rem;
    margin-bottom: 28px;
}

.dai-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dai-mascot-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    animation: floatMascot 5s ease-in-out infinite;
}

.dai-mascot-wrapper img:first-child {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.35));
}

.dai-wa-float {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 40%;
    right: -12%;
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.7));
    animation: floatWa 4s ease-in-out infinite 0.8s;
    pointer-events: none;
}

@keyframes floatWa {

    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}

.dai-phone-badge {
    position: absolute;
    top: 15%;
    left: -10%;
    background: rgb(62 189 67 / 31%);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.dai-phone-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.dai-phone-badge .badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dai-phone-badge-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.dai-phone-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dai-reply-badge {
    position: absolute;
    bottom: 15%;
    right: -8%;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #93C5FD;
    animation: float 7s ease-in-out infinite 1.5s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dai-reply-badge-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
}

@keyframes floatMascot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* ── Company Video ──────────────────────────── */
.about-video-section {
    padding: 20px 24px 80px;
}

.about-video-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 32px;
    background: #000;
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(59, 130, 246, 0.1);
}

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

.video-cta-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ── Stats Banner ───────────────────────────── */
.stats-banner {
    padding: 60px 24px;
}

.stats-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-num {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff, #77b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── Page divider ───────────────────────────── */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
    .about-hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .vision-mission-section,
    .awards-section,
    .values-section,
    .team-section,
    .services-section,
    .about-video-section,
    .stats-banner {
        padding: 60px 20px;
    }

    .vision-mission-inner,
    .team-inner,
    .dreamzai-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .stats-banner-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .team-inner.reverse {
        direction: ltr;
    }

    .dreamzai-cta-inner {
        padding: 0;
    }

    .dreamzai-cta-section {
        padding: 80px 16px;
        clip-path: none;
        margin-top: 0;
    }

    .video-container {
        border-radius: 20px;
    }

    .video-cta-wrap {
        margin-top: 24px;
    }

    .dai-hero-visual {
        transform: scale(0.8);
        transform-origin: center;
        margin: -20px 0;
    }

    .hero-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 32px;
    }

    .hero-cta .btn,
    .team-content .btn,
    .value-card .btn,
    .vm-card .btn,
    .about-video-section .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        justify-content: center;
        width: 100%;
    }

    .dai-phone-badge {
        top: 2%;
        left: -10%;
        transform: scale(0.75);
    }
    .dai-reply-badge {
        bottom: 5%;
        right: -10%;
        transform: scale(0.75);
    }
    .dai-wa-float {
        width: 80px;
        height: 80px;
        right: -5%;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 100px 16px 40px;
    }

    .vision-mission-section,
    .awards-section,
    .values-section,
    .team-section,
    .services-section,
    .about-video-section,
    .stats-banner {
        padding: 48px 16px;
    }

    .services-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        overflow-x: visible;
        padding: 0;
        margin: 0;
    }

    .value-card {
        width: 100%;
        padding: 24px 16px;
    }

    .values-grid .value-card:last-child {
        grid-column: span 2;
        width: 60%;
        margin: 0 auto;
    }

    .value-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .vm-card {
        padding: 32px 24px;
    }

    .about-hero-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .team-content .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section .hero-cta {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}