/* Modern Home Page Design */

/* Hero Section */
.hero-home {
    position: relative;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.95) 0%, rgba(19, 132, 150, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: -4rem 0 0 0;
    padding: 6rem 0 3rem 0;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-home::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-content-home {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-home {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-btn-primary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #17a2b8;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    color: #138496;
}

.hero-btn-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #17a2b8;
    transform: translateY(-3px);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #f8f9fa;
    width: 100%;
}

.features-section .container {
    max-width: 1400px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #17a2b8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* About Preview Section */
.about-preview-section {
    padding: 6rem 0;
    background: #ffffff;
    width: 100%;
}

.about-preview-section .container {
    max-width: 1400px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-highlights li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-highlights li i {
    color: #17a2b8;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-section .container {
    max-width: 1400px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-home {
        padding: 2rem 1.5rem;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-home {
        min-height: 80vh;
        padding: 5rem 0 3rem 0;
    }
    
    .hero-content-home {
        padding: 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-home {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .features-section .container,
    .about-preview-section .container,
    .cta-section .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-home {
        min-height: 75vh;
        margin: -4rem 0 0 0;
        padding: 5rem 0 2rem 0;
    }
    
    .hero-content-home {
        padding: 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-home {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        padding: 0 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .features-section,
    .about-preview-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero-home {
        min-height: 70vh;
        padding: 4.5rem 0 2rem 0;
    }
    
    .hero-content-home {
        padding: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle-home {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-buttons {
        gap: 0.7rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1.2rem;
        padding: 1.2rem 0.8rem;
    }
    
    .stat-item {
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-section,
    .about-preview-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
}
