/* About Page Custom Styles */

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #e53e3e 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title span {
    background: linear-gradient(45deg, #ffffff, #e53e3e, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 3rem;
    font-weight: 300;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.trust-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trust-indicator.green { background: #10b981; }
.trust-indicator.blue { background: #3b82f6; }
.trust-indicator.red { background: #e53e3e; }

.trust-text {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.trust-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #e53e3e, #dc2626);
    color: white;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn i {
    margin: 0 0.75rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .scroll-bar {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator .scroll-dot {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollPulse 2s infinite;
}

/* Company Story Section */
.company-story {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.2);
    margin-bottom: 2rem;
}

.section-badge i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-title span {
    background: linear-gradient(45deg, #1e40af, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 128px;
    height: 4px;
    background: linear-gradient(45deg, #1e40af, #e53e3e);
    border-radius: 2px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
    }
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-card {
    padding: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.story-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1);
}

.story-icon.primary {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.story-icon.accent {
    background: linear-gradient(135deg, #e53e3e, #dc2626);
}

.story-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.story-text-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.story-text-content p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.milestone-card {
    position: relative;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.milestone-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-card:hover::before {
    opacity: 1;
}

.milestone-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-icon {
    transform: scale(1.1);
}

.milestone-year {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.milestone-card:hover .milestone-year {
    transform: scale(1.1);
}

.milestone-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.milestone-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

.story-image {
    position: relative;
}

.story-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.story-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(229, 62, 62, 0.3));
    z-index: 1;
}

.story-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image-container:hover img {
    transform: scale(1.05);
}

.floating-stats {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-stats.top-right {
    top: 2rem;
    right: 2rem;
}

.floating-stats.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.floating-stats-content {
    text-align: center;
}

.floating-stats-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.floating-stats-number.primary {
    color: #1e40af;
}

.floating-stats-number.accent {
    color: #e53e3e;
}

.floating-stats-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollPulse {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-content {
        gap: 3rem;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .floating-stats {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 1rem;
    }
}
