/* ===== Variables ===== */
:root {
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #3373D9;
    --secondary-color: #003366;
    --accent-color: #00A6FB;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --border-color: #E0E0E0;
    --bg-gradient-1: #0066CC;
    --bg-gradient-2: #00A6FB;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ===== Container ===== */
.coming-soon-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 10;
}

/* ===== Background Animation ===== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(30px);
    }
    50% {
        transform: translateY(30px) translateX(-30px);
    }
    75% {
        transform: translateY(-30px) translateX(-30px);
    }
}

/* ===== Content ===== */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo {
    width: 50px;
    height: 50px;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
}

.logo-qore {
    color: var(--text-dark);
}

.logo-soft {
    color: var(--primary-color);
}

.title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.business-description {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===== Contact Form ===== */
.contact-form {
    margin: 3rem auto 2rem;
    max-width: 700px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-btn:active {
    transform: translateY(0);
}

/* ===== Contact Info ===== */
.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-lighter);
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    text-decoration: underline;
}

.form-message {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    min-height: 1.25rem;
    text-align: center;
}

.form-message.success {
    color: #10B981;
    font-weight: 500;
}

.form-message.error {
    color: #EF4444;
    font-weight: 500;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .content {
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .title {
        font-size: 1.75rem;
    }
}

/* ===== Animation for smooth appearance ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeIn 0.6s ease-out;
}

.content > *:nth-child(1) { animation-delay: 0.1s; }
.content > *:nth-child(2) { animation-delay: 0.2s; }
.content > *:nth-child(3) { animation-delay: 0.3s; }
.content > *:nth-child(4) { animation-delay: 0.4s; }
.content > *:nth-child(5) { animation-delay: 0.5s; }
.content > *:nth-child(6) { animation-delay: 0.6s; }
.content > *:nth-child(7) { animation-delay: 0.7s; }

.content > * {
    opacity: 0;
    animation-fill-mode: both;
}

