/**
 * assets/css/about.css - About Page - FULLY RESPONSIVE
 */

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    padding: 7rem 0 5rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5.5rem 0 2.5rem;
    }
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-elements .element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.element-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.element-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.element-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: -50px;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom: 1rem;
    }
}

.hero-title .highlight {
    background: linear-gradient(to right, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

@media (max-width: 480px) {
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 0 0 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .stats-section {
        margin-top: -2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        margin-top: -1.5rem;
        padding-bottom: 1.5rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .stats-grid {
        gap: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

@media (max-width: 380px) {
    .stats-grid {
        padding: 1.25rem;
        gap: 1rem;
    }
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #2563eb;
}

.stat-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #f97316;
}

.stat-icon.green {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    color: #22c55e;
}

.stat-icon.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    color: #a855f7;
}

@media (max-width: 480px) {
    .stat-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #1f2937;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #f97316;
    display: inline;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    .stat-suffix {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-suffix {
        font-size: 1rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.375rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.story-section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .story-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 2.5rem 0;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .story-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff7ed;
    color: #f97316;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-badge.center {
    display: inline-flex;
    margin: 0 auto 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title-center {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-title-center.light {
    color: white;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-heading-center {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-heading-center {
        margin-bottom: 1.5rem;
    }
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.95rem;
    }
}

.story-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .story-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

.story-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .story-highlights {
        margin-top: 1.5rem;
    }
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 2rem;
    height: 2rem;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.highlight-content h4 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.highlight-content p {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (max-width: 480px) {
    .highlight-content h4 {
        font-size: 0.9rem;
    }
    .highlight-content p {
        font-size: 0.8rem;
    }
}

.story-images {
    position: relative;
}

.images-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .images-grid {
        gap: 0.75rem;
    }
}

.image-item {
    border-radius: 1.25rem;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.main-image {
    grid-row: 1 / 3;
    min-height: 400px;
}

@media (max-width: 768px) {
    .main-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .main-image {
        min-height: 250px;
    }
}

.side-image {
    min-height: 195px;
}

@media (max-width: 480px) {
    .side-image {
        min-height: 120px;
    }
}

.small-image {
    min-height: 195px;
}

@media (max-width: 480px) {
    .small-image {
        min-height: 120px;
    }
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

@media (max-width: 768px) {
    .experience-badge {
        bottom: -1rem;
        left: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        bottom: -0.75rem;
        left: 0.75rem;
        padding: 0.75rem;
        border-radius: 1rem;
    }
}

.badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .badge-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }
}

.badge-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #1f2937;
    line-height: 1;
}

@media (max-width: 480px) {
    .badge-number {
        font-size: 1.5rem;
    }
}

.badge-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .badge-text {
        font-size: 0.75rem;
    }
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    padding: 5rem 0;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 2.5rem 0;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #f97316);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 1.5rem;
    }
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 3.5rem;
        padding-bottom: 2rem;
    }
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border: 3px solid #2563eb;
    border-radius: 50%;
    z-index: 2;
    top: 0.5rem;
}

.timeline-dot.active {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 1.5rem;
    }
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content.active {
    border: 2px solid #f97316;
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 1rem;
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

@media (max-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        text-align: left;
    }
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content.active .timeline-year {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .timeline-content h3 {
        font-size: 1rem;
    }
}

.timeline-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .timeline-content p {
        font-size: 0.8rem;
    }
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 2.5rem 0;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mv-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .mv-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.mv-decoration {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
}

.mission-card .mv-decoration {
    background: radial-gradient(circle, #2563eb, transparent);
}

.vision-card .mv-decoration {
    background: radial-gradient(circle, #f97316, transparent);
}

.mv-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

@media (max-width: 480px) {
    .mv-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .mv-card h3 {
        font-size: 1.25rem;
    }
}

.mv-card > p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .mv-card > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.mv-list li i {
    color: #22c55e;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .mv-list li {
        font-size: 0.85rem;
    }
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.values-section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .values-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 2.5rem 0;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.value-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.value-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #f3f4f6;
    line-height: 1;
}

@media (max-width: 480px) {
    .value-number {
        font-size: 2rem;
        top: 0.75rem;
        right: 1rem;
    }
}

.value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.value-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #f97316;
}

.value-icon.green {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    color: #22c55e;
}

.value-icon.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    color: #a855f7;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .value-icon {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
    .value-card h3 {
        font-size: 1.1rem;
    }
}

.value-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .value-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 5rem 0;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 2.5rem 0;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}

.team-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .team-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .team-card {
        border-radius: 1rem;
    }
}

.team-image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .team-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    }
}

.team-bio {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .team-bio {
        font-size: 0.8rem;
    }
}

.team-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .team-social {
        opacity: 1;
        transform: none;
    }
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 1.25rem;
    text-align: center;
}

.team-info h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
    .team-info h3 {
        font-size: 1rem;
    }
}

.team-role {
    font-size: 0.875rem;
    color: #f97316;
    font-weight: 600;
}

@media (max-width: 480px) {
    .team-role {
        font-size: 0.8rem;
    }
}

.team-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
    .team-cta {
        padding: 1.5rem;
    }
}

.team-cta p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .team-cta p {
        font-size: 0.9rem;
    }
}

.team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

@media (max-width: 480px) {
    .team-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   WHY CHOOSE US / FEATURES SECTION
   ============================================ */
.features-section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2.5rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.features-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .features-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .features-list {
        gap: 1.25rem;
    }
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #2563eb;
    flex-shrink: 0;
}

.feature-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #f97316;
}

.feature-icon.green {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    color: #22c55e;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    color: #a855f7;
}

@media (max-width: 480px) {
    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 0.9375rem;
    }
}

.feature-content h4 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .feature-content h4 {
        font-size: 0.95rem;
    }
    .feature-content p {
        font-size: 0.8rem;
    }
}

.features-visual {
    position: relative;
    min-height: 400px;
}

@media (max-width: 768px) {
    .features-visual {
        min-height: 350px;
    }
}

.visual-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.visual-card.main-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2rem;
}

.visual-card.small-card {
    position: absolute;
    bottom: 3.5rem;
    left: 0;
    width: 45%;
}

.visual-card.small-card.right {
    left: auto;
    right: 0;
}

.visual-card.bottom-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
}

.visual-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.visual-icon.small {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.visual-icon.small.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.visual-icon.small.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

@media (max-width: 480px) {
    .visual-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
    .visual-icon.small {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9375rem;
    }
}

.visual-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.visual-card p {
    font-size: 0.8rem;
    color: #6b7280;
}

@media (max-width: 480px) {
    .visual-card h3 {
        font-size: 1rem;
    }
    .visual-card p {
        font-size: 0.75rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .testimonial-stars {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-style: italic;
}

@media (max-width: 480px) {
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .author-avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.75rem;
    }
}

.author-info h4 {
    font-weight: 700;
    font-size: 0.95rem;
}

.author-info p {
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .author-info h4 {
        font-size: 0.875rem;
    }
    .author-info p {
        font-size: 0.75rem;
    }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 2.5rem 0;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.partner-item {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

@media (max-width: 480px) {
    .partner-item {
        padding: 1rem 0.75rem;
    }
}

.partner-icon {
    font-size: 1.75rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .partner-icon {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }
}

.partner-item p {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 600;
}

@media (max-width: 480px) {
    .partner-item p {
        font-size: 0.7rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 0;
    }
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-element-1 {
    width: 400px;
    height: 400px;
    top: -50%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}

.cta-element-2 {
    width: 300px;
    height: 300px;
    bottom: -50%;
    left: -10%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .cta-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .cta-title {
        margin-bottom: 0.75rem;
    }
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #f97316;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .cta-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-trust {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #22c55e;
}

@media (max-width: 480px) {
    .trust-item {
        font-size: 0.8rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.shadow-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
   MOBILE UTILITIES
   ============================================ */
@media (max-width: 640px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
}

/* Disable hover on touch */
@media (hover: none) {
    .team-card:hover,
    .value-card:hover,
    .mv-card:hover,
    .testimonial-card:hover,
    .partner-item:hover,
    .visual-card:hover,
    .timeline-content:hover {
        transform: none;
    }

    .team-card:hover .team-image-wrapper img,
    .image-item:hover img {
        transform: none;
    }
}

/* Safe area */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .about-hero {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }
    }
}

/* Smooth scroll */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}