.about-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.about-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?q=80&w=2000&auto=format&fit=crop') center/cover;
    background-attachment: fixed;
    z-index: 0;
}

.about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(15,15,15,0.75) 100%);
    z-index: 1;
}

.about-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-header h1 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-images {
    position: relative;
    width: 100%;
    height: 350px;
    order: 1;
}

.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    filter: sepia(8%) brightness(0.95);
}

.img-backdrop-box {
    display: none;
}

.story-content {
    order: 2;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.highlight-text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.6;
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.story-content strong {
    color: var(--primary-color);
    font-weight: 600;
}


.experience-highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 0.3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.experience-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.signature-img {
    margin-top: 30px;
    height: 45px;
    filter: invert(1) brightness(0.8);
    opacity: 0.6;
}

.team-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.team-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.team-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.team-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

.team-highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-feature:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.team-feature i,
.team-feature svg {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}


.team-feature svg.drone-icon {
    display: block;
    margin: 0 auto 5px;
}

.team-feature svg.drone-icon path {
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.team-feature:hover svg.drone-icon path {
    fill: var(--primary-color);
}

.team-feature span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

.team-commitment {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-style: italic;
}

.vision-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.vision-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.vision-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.vision-card p {
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.gear-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gear-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gear-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gear-card:hover::before {
    opacity: 1;
}

.gear-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    transition: all 0.4s ease;
}

.gear-card:hover .gear-icon-wrapper {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.gear-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.gear-card:hover i {
    transform: scale(1.15);
}

.gear-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.gear-desc {
    color: var(--text-gray);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .about-header {
        min-height: 60vh;
        padding: 160px 0 100px;
    }

    .about-header h1 {
        font-size: 4rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-container {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .story-images {
        flex: 1;
        height: 450px;
        order: 1;
    }

    .img-main {
        width: 100%;
    }

    .img-backdrop-box {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: inset 0 0 0 2px var(--primary-color);
        border-radius: 12px;
        z-index: 1;
        opacity: 0.5;
        pointer-events: none;
    }

    .story-content {
        flex: 1;
        order: 2;
    }

    .story-content h2 {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-card {
        padding: 50px 40px;
    }

    .team-icon {
        width: 90px;
        height: 90px;
    }

    .team-icon i {
        font-size: 2.5rem;
    }

    .team-card h3 {
        font-size: 2rem;
    }

    .team-description {
        font-size: 1.05rem;
    }

    .team-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .team-feature {
        padding: 20px 15px;
    }

    .team-feature i,
    .team-feature svg {
        font-size: 1.8rem;
        width: 1.8rem;
        height: 1.8rem;
    }

    .team-feature span {
        font-size: 0.9rem;
    }

    .vision-section {
        padding: 80px 0;
    }

    .vision-card {
        padding: 60px 50px;
        max-width: 900px;
        margin: 0 auto;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .vision-card h3 {
        font-size: 1.8rem;
    }

    .vision-card p {
        font-size: 1.1rem;
    }

    .gear-section {
        padding: 80px 0;
    }

    .gear-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .gear-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .gear-card i {
        font-size: 2rem;
    }

    .gear-name {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .about-header h1 {
        font-size: 5rem;
    }

    .story-section {
        padding: 100px 0;
    }

    .story-images {
        height: 500px;
    }

    .story-content h2 {
        font-size: 2.8rem;
    }

    .team-section {
        padding: 100px 0;
    }

    .team-card {
        padding: 60px 50px;
    }

    .team-icon {
        width: 100px;
        height: 100px;
    }

    .team-icon i {
        font-size: 3rem;
    }

    .team-card h3 {
        font-size: 2.2rem;
    }

    .vision-section {
        padding: 100px 0;
    }

    .vision-card {
        padding: 70px 60px;
    }

    .gear-section {
        padding: 100px 0;
    }

    .gear-grid {
        gap: 30px;
    }

    .gear-card {
        padding: 40px 25px;
    }
}

@media (min-width: 1440px) {
    .about-header h1 {
        font-size: 6rem;
    }

    .story-images {
        height: 550px;
    }

    .story-content h2 {
        font-size: 3rem;
    }

    .gear-grid {
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .about-header {
        min-height: 45vh;
        padding: 120px 0 60px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .story-section {
        padding: 50px 0;
    }

    .story-images {
        height: 300px;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1rem;
        padding-left: 15px;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-card {
        padding: 35px 20px;
    }

    .team-icon {
        width: 70px;
        height: 70px;
    }

    .team-icon i {
        font-size: 2rem;
    }

    .team-card h3 {
        font-size: 1.5rem;
    }

    .team-description {
        font-size: 0.95rem;
    }

    .team-features {
        gap: 15px;
        padding: 20px 0;
    }

    .team-feature {
        padding: 12px 8px;
    }

    .team-feature i,
    .team-feature svg {
        font-size: 1.3rem;
        width: 1.3rem;
        height: 1.3rem;
    }

    .team-feature span {
        font-size: 0.75rem;
    }

    .team-commitment {
        font-size: 0.9rem;
    }

    .vision-section {
        padding: 50px 0;
    }

    .vision-card {
        padding: 35px 20px;
    }

    .vision-card h3 {
        font-size: 1.3rem;
    }

    .vision-card p {
        font-size: 0.95rem;
    }

    .gear-section {
        padding: 50px 0;
    }

    .gear-grid {
        gap: 15px;
    }

    .gear-card {
        padding: 25px 15px;
    }

    .gear-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .gear-card i {
        font-size: 1.3rem;
    }

    .gear-name {
        font-size: 0.95rem;
    }

    .gear-desc {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-card,
    .gear-card,
    .vision-card,
    .img-main,
    .team-feature {
        transition: none;
        animation: none;
    }
}


.team-card:focus-within,
.gear-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}