/* ========== COLOR VARIABLES ========== */
:root {
    --primary-orange: #f99820;
    --white: #ffffff;
    --dark-orange: #e08510;
    --dark-navy: #09264a;
    --light-gray: #f8f9ff;
    --gray-text: #666;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--dark-navy);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO SECTION ========== */
.about-hero {
    height: 60vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-out infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 38, 74, 0.85), rgba(9, 38, 74, 0.7));
    z-index: 2;
}

/* Rotating Orange Glow */
.about-hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(249, 152, 32, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 4;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(249, 152, 32, 0.2);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
}

/* ========== MAIN ABOUT SECTION ========== */
.about-main {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-orange);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-navy);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--dark-navy);
}

.about-content {
    padding: 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(249, 152, 32, 0.1);
    color: var(--primary-orange);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.about-content p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.about-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 152, 32, 0.3);
}

/* ========== MISSION SECTION ========== */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 152, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--primary-orange);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon i {
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-tag {
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 152, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.85rem;
    color: var(--primary-orange);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a2d5a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 152, 32, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .about-main, .mission-section, .why-choose, .team-section, .cta-section {
        padding: 50px 0;
    }
}