/**
 * Professional Theme - Clean Corporate Design
 * No Gradients - Solid Professional Colors
 */

/* ========================================
   SIMPLE PROFESSIONAL HERO SECTION
   ======================================== */

.simple-hero-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #1e3a8a;
}

/* Background Container */
.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Simple Overlay - Semi-transparent dark overlay for text contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-slide-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}

/* Typography - Enhanced text shadow for better readability */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9),
                 0 2px 15px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.9),
                 0 2px 12px rgba(0, 0, 0, 0.7),
                 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-outline:hover {
    background: #ffffff;
    color: #3b82f6;
}

/* Simple Stats - Balanced and uniform with equal spacing */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: nowrap;
    margin-top: 0;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8),
                 0 1px 8px rgba(0, 0, 0, 0.5);
}

.stat-text {
    font-size: 0.95rem;
    color: #f1f5f9;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Navigation Controls - HIDDEN (Removed from UI) */
.hero-nav {
    display: none !important;
}

.hero-prev {
    display: none !important;
}

.hero-next {
    display: none !important;
}

/* Dots Indicator - Minimal and clean */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    width: 18px;
    border-radius: 3px;
    background: #ffffff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PROFESSIONAL SECTIONS
   ======================================== */

/* Section Common Styles */
.pro-section {
    padding: 90px 20px;
    position: relative;
}

.pro-section.gray {
    background: #f8fafc;
}

.pro-section.white {
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #dbeafe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: #3b82f6;
}

.feature-icon i {
    font-size: 32px;
    color: #1e40af;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* Professional Buttons */
.pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pro-btn-primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.pro-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.pro-btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.pro-btn-outline:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* Stats Section */
.stats-section {
    background: #1e3a8a;
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #1e3a8a;
    padding: 90px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .pro-btn-primary {
    background: #ffffff;
    color: #1e3a8a;
}

.cta-section .pro-btn-primary:hover {
    background: #f1f5f9;
}

.cta-section .pro-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .pro-btn-outline:hover {
    background: #ffffff;
    color: #1e3a8a;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
    .simple-hero-wrapper {
        height: 600px;
    }

    .hero-slide-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 18px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 6px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        margin-bottom: 35px;
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
        white-space: nowrap;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0 15px;
        max-width: 700px;
    }

    .stat {
        flex: 1;
        min-width: 160px;
        max-width: 200px;
        padding: 20px 18px;
    }

    .stat-value {
        font-size: 2.25rem;
        margin-bottom: 8px;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    }

    .stat-text {
        font-size: 0.88rem;
    }

    /* Smaller dots for tablet */
    .hero-dots {
        padding: 5px 10px;
        gap: 5px;
        bottom: 16px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Mobile - 414px to 480px */
@media (max-width: 480px) {
    .simple-hero-wrapper {
        height: 650px;
        min-height: 600px;
    }

    .hero-slide-content {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 18px;
        line-height: 1.25;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 2px 10px rgba(0, 0, 0, 0.9);
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 26px;
        line-height: 1.5;
        padding: 0 10px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 0.9);
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        margin-bottom: 35px;
        gap: 0;
    }

    .hero-btn {
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 8px;
        font-weight: 600;
    }

    .hero-btn i {
        font-size: 14px;
        margin-right: 8px;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 0 10px;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .stat {
        flex: 1 1 auto;
        min-width: 105px;
        max-width: 115px;
        padding: 16px 14px;
        background: rgba(0, 0, 0, 0.65);
    }

    .stat-value {
        font-size: 1.75rem;
        margin-bottom: 6px;
        font-weight: 800;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
    }

    .stat-text {
        font-size: 0.72rem;
        line-height: 1.25;
        color: #f1f5f9;
        font-weight: 600;
    }

    /* Hide dots on mobile */
    .hero-dots {
        display: none !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pro-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Extra Small Mobile - iPhone SE, Small Android (320px - 375px) */
@media (max-width: 375px) {
    .simple-hero-wrapper {
        height: 600px;
        min-height: 550px;
    }

    .hero-slide-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 24px;
        padding: 0 5px;
    }

    .hero-buttons {
        margin-bottom: 32px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-btn i {
        font-size: 13px;
    }

    .hero-stats {
        gap: 10px;
        padding: 0 8px;
        justify-content: center;
    }

    .stat {
        flex: 1 1 auto;
        min-width: 92px;
        max-width: 100px;
        padding: 14px 12px;
        background: rgba(0, 0, 0, 0.7);
    }

    .stat-value {
        font-size: 1.55rem;
        margin-bottom: 5px;
    }

    .stat-text {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .hero-dots {
        display: none !important;
    }
}

/* Very Small Mobile - 320px */
@media (max-width: 320px) {
    .simple-hero-wrapper {
        height: 580px;
    }

    .hero-slide-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 22px;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 8px;
        padding: 0 5px;
        justify-content: center;
    }

    .stat {
        flex: 1 1 auto;
        min-width: 85px;
        max-width: 90px;
        padding: 12px 10px;
        background: rgba(0, 0, 0, 0.7);
    }

    .stat-value {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .stat-text {
        font-size: 0.62rem;
    }

    .hero-dots {
        display: none !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .simple-hero-wrapper {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .stat-value {
        font-size: 1.75rem;
    }
}
