/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-inline {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(30, 144, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo-icon-inline:hover {
    transform: scale(1.05);
}

.logo-text-main {
    font-size: 72px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.logo-text-image {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
    display: none;
}

.tagline {
    text-align: center;
    font-size: 20px;
    color: #1E90FF;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Social & App Section */
.social-app-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.section-divider {
    margin-bottom: 40px;
}

.section-divider h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-btn-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-btn-large:hover {
    background: #1E90FF;
    color: white;
    border-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.social-btn-large svg {
    width: 24px;
    height: 24px;
}

.app-buttons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn-large {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    background: #0f172a;
    color: white;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-btn-large:hover {
    background: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.app-btn-large svg {
    width: 32px;
    height: 32px;
}

.app-label {
    font-size: 12px;
    opacity: 0.8;
    text-align: left;
}

.app-name {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f1f5f9;
    color: #1E90FF;
    transform: translateY(-2px);
}

/* Hero Carousel Section */
.hero-section {
    padding: 60px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.slide-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.slide-content p {
    font-size: 26px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

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

.nav-dot.active {
    background: #FFD700;
    width: 40px;
    border-radius: 7px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 70px;
    color: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
    border-color: #1E90FF;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1E90FF 0%, #0ea5e9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.25);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E90FF 0%, #0ea5e9 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: #f8fafc;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 900;
    color: #0f172a;
}

.cta-section p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #64748b;
}

.cta-button-large {
    display: inline-block;
    padding: 25px 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 60px 0 30px;
    border-top: 4px solid #1E90FF;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-section ul li a:hover {
    color: #1E90FF;
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    color: #1E90FF;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #1E90FF;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #0ea5e9;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, #1E90FF 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.cookie-reject {
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.cookie-reject:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Coming Soon Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background: #ffffff;
    margin: 10% auto;
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1E90FF;
    transform: rotate(90deg);
}

.modal-icon {
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-btn {
    background: linear-gradient(135deg, #1E90FF 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-container {
        height: 600px;
    }
    
    .slide-content h2 {
        font-size: 48px;
    }
    
    .slide-content p {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .logo-text-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-icon-inline {
        height: 60px;
    }
    
    .logo-text-main {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .section-divider h3 {
        font-size: 24px;
    }
    
    .social-btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .social-btn-large span {
        display: none;
    }
    
    .app-btn-large {
        padding: 14px 28px;
    }
    
    .app-label {
        font-size: 11px;
    }
    
    .app-name {
        font-size: 18px;
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .carousel-container {
        height: 500px;
        border-radius: 15px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 15px 35px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .carousel-arrow.prev {
        left: 15px;
    }
    
    .carousel-arrow.next {
        right: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
    
    .cta-section p {
        font-size: 20px;
    }
    
    .cta-button-large {
        font-size: 22px;
        padding: 20px 45px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-icon {
        font-size: 42px;
    }
    
    .feature-card h3 {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-button-large {
        font-size: 20px;
        padding: 18px 40px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .modal-content h2 {
        font-size: 28px;
    }
    
    .modal-content p {
        font-size: 16px;
    }
    
    .modal-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 14px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 24px;
    }
}