/* Base Styles */
:root {
    --primary-color: #2a4365; /* Deep navy */
    --secondary-color: #38a169; /* Sage green */
    --accent-color: #dd6b20; /* Terracotta */
    --light-accent: #f6ad55; /* Light terracotta */
    --text-color: #2d3748;
    --text-light: #4a5568;
    --background: #ffffff;
    --light-bg: #f7fafc;
    --success-color: #38a169;
    --error-color: #e53e3e;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    min-width: 120px;
}

.btn:hover:not(:disabled) {
    background-color: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Coming Soon Specific Styles */
.coming-soon {
    width: 100%;
    padding: 2rem 0;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Main Message */
.main-message {
    margin-bottom: 3rem;
}

.coming-soon-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1.5rem auto;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Notify Section */
.notify-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.notify-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.notify-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.notify-input:focus-visible {
    outline: 2px solid var(--light-accent);
    outline-offset: 2px;
}

.notify-btn {
    white-space: nowrap;
}

.btn-loader {
    font-size: 1.2rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 1.5rem;
    background-color: #f0fff4;
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    color: var(--success-color);
}

.success-icon {
    width: 40px;
    height: 40px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.success-message p {
    margin: 0;
    font-size: 1rem;
}

.success-message span {
    font-weight: 600;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 1rem;
    background-color: #fff5f5;
    border: 1px solid var(--error-color);
    border-radius: var(--border-radius);
    color: var(--error-color);
    margin-top: 1rem;
}

.error-message p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Support */
.contact-support {
    margin: 2rem 0;
    padding: 1.5rem;
    text-align: center;
}

.contact-support p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.support-email {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.support-email:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.support-email:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Footer Note */
.footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-btn {
        width: 100%;
    }

    .support-email {
        font-size: 1rem;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .notify-section {
        padding: 1.5rem 1rem;
    }

    .contact-support {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}