/* =========== Base Styles =========== */
:root {
    --primary-color: #cf0a0a;
    --primary-dark: #a00808;
    --primary-light: #ff5252;
    --secondary-color: #222222;
    --light-color: #f8f8f8;
    --gray-color: #707070;
    --light-gray: #e1e1e1;
    --dark-gray: #333333;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

/* =========== Particles Background =========== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* =========== Main Container =========== */
.coming-soon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========== Header =========== */
header {
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--light-gray);
    letter-spacing: 1px;
    text-align: center;
}

/* =========== Hero Section =========== */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(0,0,0,0.8) 0%, rgba(20,20,20,0.8) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(207, 10, 10, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207, 10, 10, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.2;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--white) 0%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-out;
}

.title span {
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
    animation: widthGrow 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes widthGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

/* =========== Countdown =========== */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(207, 10, 10, 0.05) 0%, rgba(207, 10, 10, 0.2) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 35%);
}

.countdown-item:nth-child(1) {
    animation-delay: 0.1s;
}

.countdown-item:nth-child(2) {
    animation-delay: 0.3s;
}

.countdown-item:nth-child(3) {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(4) {
    animation-delay: 0.7s;
}

.countdown-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========== Subscribe Form =========== */
.subscribe-container {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 2s ease-out;
}

.subscribe-container p {
    margin-bottom: 15px;
    color: var(--light-gray);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.subscribe-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(207, 10, 10, 0.3);
}

.subscribe-form input::placeholder {
    color: var(--light-gray);
}

.subscribe-form button {
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(207, 10, 10, 0.3);
}

.subscribe-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(207, 10, 10, 0.4);
}

/* =========== About Section =========== */
.about-section {
    margin-bottom: 60px;
}

.card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.card p {
    margin-bottom: 30px;
    color: var(--light-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========== Stats Container =========== */
.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* =========== Features Section =========== */
.features-section {
    margin-bottom: 60px;
}

.features-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-light) 100%);
}

.feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.9s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* =========== Quality Policy =========== */
.quality-policy {
    margin-bottom: 60px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.quality-policy::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.quality-policy h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.quality-policy h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--light-gray);
    text-align: center;
}

.policy-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.policy-content ul li {
    display: flex;
    align-items: center;
    color: var(--light-gray);
}

.policy-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* =========== Clients Section =========== */
.clients-section {
    margin-bottom: 60px;
}

.clients-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.clients-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.client-logo {
    height: 80px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.client-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.client-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.client-logo:nth-child(3) {
    animation-delay: 0.3s;
}

.client-logo:nth-child(4) {
    animation-delay: 0.4s;
}

.client-logo:nth-child(5) {
    animation-delay: 0.5s;
}

.client-logo:nth-child(6) {
    animation-delay: 0.6s;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(207, 10, 10, 0.2) 0%, rgba(207, 10, 10, 0.1) 100%);
}

/* =========== Contact Section =========== */
.contact-section {
    margin-bottom: 60px;
}

.contact-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.5s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.7s;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item p {
    color: var(--light-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.9s;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}

/* =========== Footer =========== */
footer {
    text-align: center;
    padding: 20px 0;
    color: var(--light-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* =========== Animations =========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== Responsive Styles =========== */
@media screen and (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 15px;
    }

    .countdown-item {
        width: 80px;
        height: 80px;
    }

    .countdown-item .number {
        font-size: 2rem;
    }

    .policy-content ul {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .card, .quality-policy {
        padding: 30px 20px;
    }

    .countdown-container {
        gap: 10px;
    }

    .countdown-item {
        width: 70px;
        height: 70px;
    }

    .countdown-item .number {
        font-size: 1.5rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }

    .subscribe-form {
        flex-direction: column;
    }
} 