/**
 * ============================================
 * MODERN ABOUT PAGE STYLES
 * ============================================
 * Professional, modern design with full mobile responsiveness
 */

/* Hero Section */
.modern-about-hero {
    background: linear-gradient(135deg, #048ED3 0%, #0277BD 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.modern-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.modern-about-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-about {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-about h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero-content-about p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-content h2 .highlight {
    background: linear-gradient(135deg, #048ED3 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p:last-of-type {
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(4, 142, 211, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-modern h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header-modern p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #048ED3 0%, #0277BD 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(4, 142, 211, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #048ED3 0%, #0277BD 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon .icon {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-us-content h2 .highlight {
    background: linear-gradient(135deg, #048ED3 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-content > p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.why-us-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #048ED3 0%, #0277BD 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.why-us-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-us-image.large {
    grid-column: 1 / -1;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.vision-section .container {
    position: relative;
    z-index: 1;
}

.vision-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
}

.vision-content {
    color: white;
}

.vision-badge {
    display: inline-block;
    background: rgba(4, 142, 211, 0.2);
    color: #60a5fa;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.vision-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.vision-quote {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.95;
    font-style: italic;
    border-left: 4px solid #048ED3;
    padding-left: 30px;
    margin: 0;
}

.vision-image {
    position: relative;
}

.vision-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    bottom: 30px;
    left: 30%;
    background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
    border-radius: 20px;
    z-index: 0;
    transform: skewY(-3deg);
}

.vision-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 5px solid #048ED3;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 0 0 auto;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.cta-contact {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.cta-contact-item .icon {
    font-size: 24px;
    color: #048ED3;
    flex-shrink: 0;
}

.cta-contact-item a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s ease;
}

.cta-contact-item a:hover {
    color: #048ED3;
}

.cta-payment {
    flex-shrink: 0;
}

.cta-payment img {
    max-width: 200px;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid,
    .why-us-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid .why-us-content {
        order: 1;
    }
    
    .why-us-grid .why-us-images {
        order: 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-about-hero {
        padding: 60px 0 50px;
    }
    
    .hero-content-about h1 {
        font-size: 36px;
    }
    
    .hero-content-about p {
        font-size: 16px;
    }
    
    .story-section,
    .features-section,
    .why-us-section,
    .vision-section {
        padding: 60px 0;
    }
    
    .story-content h2,
    .why-us-content h2,
    .vision-content h2,
    .section-header-modern h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .why-us-images {
        grid-template-columns: 1fr;
    }
    
    .vision-quote {
        font-size: 20px;
        padding-left: 20px;
    }
    
    .cta-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-payment {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 28px;
    }
    
    .hero-content-about p {
        font-size: 15px;
    }
    
    .story-content h2,
    .why-us-content h2,
    .vision-content h2,
    .section-header-modern h2 {
        font-size: 26px;
    }
    
    .story-content p,
    .why-us-content > p {
        font-size: 15px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}
