/* ===== ABOUT PAGE STYLES ===== */

/* ===== ABOUT HERO ===== */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 60px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: center;
    background: var(--primary-bg-color);
}

.about-hero-content h2 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.75;
    font-family: "Inter", sans-serif;
}

.about-hero-content hr {
    border: none;
    height: 2px;
    background: var(--accent-color);
    width: 80px;
    margin: 20px 0;
    opacity: 0.5;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 25px 0 0 0;
    color: var(--primary-text-color);
    letter-spacing: -1px;
    font-weight: 700;
}

.about-hero-content p {
    margin: 25px 0 0 0;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--primary-text-color);
    opacity: 0.75;
    max-width: 560px;
}

/* ===== ABOUT HERO VIDEO (replaces image) ===== */
.about-hero-video {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(30, 42, 58, 0.15);
    aspect-ratio: 4 / 5;
    background: #000;
}

.about-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-hero-video:hover video {
    transform: scale(1.03);
}

/* ===== MEET THE TEAM ===== */
.meet-team {
    padding: 100px 60px;
    background: var(--alt-bg);
    position: relative;
    overflow: hidden;
}

.meet-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.meet-team-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.meet-team-header h2 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.75;
    font-family: "Inter", sans-serif;
}

.meet-team-header hr {
    border: none;
    height: 2px;
    background: var(--accent-color);
    width: 80px;
    margin: 20px auto;
    opacity: 0.5;
}

.meet-team-header h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 25px 0 0 0;
    color: var(--primary-text-color);
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* Team Grid — 3 across */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-card {
    display: flex;
    flex-direction: column;
    background: var(--primary-bg-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 10px 30px rgba(30, 42, 58, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover), var(--accent-color));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 42, 58, 0.12);
    border-color: rgba(149, 6, 6, 0.15);
}

.team-card:hover::before {
    opacity: 1;
    animation: gradientMove 3s ease infinite;
}

.team-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--alt-bg);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-info {
    padding: 26px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.team-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text-color);
    letter-spacing: -0.3px;
}

.team-info h4 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
}

.team-info p {
    margin: 10px 0 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--primary-text-color);
    opacity: 0.7;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 100px 60px;
    background: var(--primary-bg-color);
    position: relative;
}

.why-choose-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.why-choose-header h2 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.75;
    font-family: "Inter", sans-serif;
}

.why-choose-header hr {
    border: none;
    height: 2px;
    background: var(--accent-color);
    width: 80px;
    margin: 20px auto;
    opacity: 0.5;
}

.why-choose-header h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 25px 0 0 0;
    color: var(--primary-text-color);
    letter-spacing: -0.5px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    padding: 40px 32px;
    background: var(--alt-bg);
    border-radius: 20px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 10px 30px rgba(30, 42, 58, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--hover), var(--accent-color));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 42, 58, 0.1);
    border-color: rgba(149, 6, 6, 0.15);
}

.why-card:hover::before {
    opacity: 1;
    animation: gradientMove 3s ease infinite;
}

.why-number {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.25;
    letter-spacing: -1px;
    transition: opacity 0.4s ease;
}

.why-card:hover .why-number {
    opacity: 0.5;
}

.why-card h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text-color);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--primary-text-color);
    opacity: 0.75;
}

/* ===== TABLET RESPONSIVE (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .about-hero {
        padding: 80px 40px;
        gap: 40px;
    }

    .about-hero-content h1 {
        font-size: 2.6rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .meet-team {
        padding: 80px 40px;
    }

    .meet-team-header h1 {
        font-size: 2.3rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 900px;
    }

    .team-info {
        padding: 20px 18px 24px;
    }

    .team-info h3 {
        font-size: 1.15rem;
    }

    .team-info p {
        font-size: 0.85rem;
    }

    .why-choose-us {
        padding: 80px 40px;
    }

    .why-choose-header h1 {
        font-size: 2.3rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* --- About Hero --- */
    .about-hero {
        grid-template-columns: 1fr;
        padding: 60px 25px;
        gap: 40px;
    }

    .about-hero-content h2 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .about-hero-content p {
        font-size: 0.95rem;
    }

    .about-hero-video {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    /* --- Meet The Team --- */
    .meet-team {
        padding: 60px 20px;
    }

    .meet-team-header {
        margin-bottom: 40px;
    }

    .meet-team-header h2 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .meet-team-header h1 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        max-width: 100%;
    }

    .team-info {
        padding: 16px 12px 20px;
    }

    .team-info h3 {
        font-size: 0.95rem;
    }

    .team-info h4 {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .team-info p {
        font-size: 0.75rem;
        margin-top: 6px;
        line-height: 1.5;
    }

    /* --- Why Choose Us --- */
    .why-choose-us {
        padding: 60px 20px;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-header h2 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .why-choose-header h1 {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .why-number {
        font-size: 2.2rem;
    }

    .why-card h3 {
        font-size: 1.15rem;
    }

    .why-card p {
        font-size: 0.9rem;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* --- About Hero --- */
    .about-hero {
        padding: 50px 18px;
        gap: 30px;
    }

    .about-hero-content h1 {
        font-size: 1.6rem;
    }

    .about-hero-content p {
        font-size: 0.9rem;
    }

    .about-hero-video {
        aspect-ratio: 1 / 1;
        border-radius: 16px;
    }

    /* --- Meet The Team --- */
    .meet-team {
        padding: 50px 15px;
    }

    .meet-team-header {
        margin-bottom: 30px;
    }

    .meet-team-header h1 {
        font-size: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 340px;
        margin: 0 auto;
    }

    .team-info {
        padding: 22px 20px 26px;
    }

    .team-info h3 {
        font-size: 1.15rem;
    }

    .team-info h4 {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .team-info p {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    /* --- Why Choose Us --- */
    .why-choose-us {
        padding: 50px 15px;
    }

    .why-choose-header {
        margin-bottom: 30px;
    }

    .why-choose-header h1 {
        font-size: 1.5rem;
    }

    .why-grid {
        gap: 16px;
    }

    .why-card {
        padding: 28px 20px;
        border-radius: 16px;
        gap: 10px;
    }

    .why-number {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1.05rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }
}