* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

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

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

.logo i {
    color: #3b82f6;
    font-size: 28px;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1e40af;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
}

.info-item i {
    color: #3b82f6;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 15px;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder i:nth-child(2) {
    animation-delay: 1s;
}

.image-placeholder i:nth-child(3) {
    animation-delay: 2s;
}

.image-placeholder i:nth-child(4) {
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #64748b;
}

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

.feature-card {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #3b82f6;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background-color: #f1f5f9;
}

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

.advantage-item {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
}

.advantage-number {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 60px;
    font-weight: 800;
    color: #e2e8f0;
    z-index: 1;
}

.advantage-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.advantage-item p {
    color: #64748b;
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
}

.stat-text {
    color: #64748b;
    font-size: 16px;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image-placeholder i {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 20px;
    animation: pulse 3s infinite;
}

.about-image-placeholder i:nth-child(2) {
    animation-delay: 0.5s;
}

.about-image-placeholder i:nth-child(3) {
    animation-delay: 1s;
}

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

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.coming-soon-content h2 i {
    animation: spin-clockwise 4s linear infinite;
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.coming-soon-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 6px;
    animation: progress-animation 2s ease-out;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
    100% {
        width: 85%;
    }
}

.progress-text {
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.availability-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #60a5fa;
    font-weight: 500;
}

.availability-text i {
    animation: pulse 2s infinite;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #60a5fa;
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.coming-soon-footer {
    color: #60a5fa;
    font-weight: 500;
    margin-top: 10px;
    animation: pulse-text 3s infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
}

.modal-icon {
    font-size: 60px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1e293b;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 15px;
}

.modal-close-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.modal-close-button:hover {
    background-color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .features-grid, .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-content h2 {
        font-size: 28px;
    }
}
