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

:root {
    --primary-green: #00FF88;
    --dark-bg: #0a0a0a;
    --light-bg: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #888888;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
    background: var(--dark-bg);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--primary-green);
    color: var(--dark-bg);
}

/* Contact Button */
.contact-btn {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.5);
}

.contact-btn svg {
    flex-shrink: 0;
}

/* Contact Menu - Desktop */
.contact-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: var(--dark-bg);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* overflow-y: auto; */
    z-index: 1000;
}

.contact-menu.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    border: none;
    width: 50px;
    height: 60px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 255, 136, 0.3);
    z-index: 1001;
}

.close-menu-btn:hover {
    background: var(--text-light);
    box-shadow: -4px 0 30px rgba(255, 255, 255, 0.4);
}

.contact-menu-content {
    padding: 3rem 2rem;
    color: var(--text-light);
}

.contact-menu-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-green);
    letter-spacing: -0.02em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(0, 255, 136, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
}

.contact-details h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.content {
    max-width: 1024px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.logo {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg,
                rgba(0, 255, 136, 0.3) 0%,
                rgba(0, 255, 136, 0) 50%,
                rgba(0, 255, 136, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.brand {
    text-align: center;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Main Heading */
.main-heading {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-heading h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-dark);
}

.highlight {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.underline {
    width: 200px;
    height: 6px;
    background-color: var(--primary-green);
    margin: 1rem auto;
    border-radius: 3px;
}

/* Description */
.description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.countdown-item {
    background: var(--dark-bg);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Notify Section */
.notify-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.notify-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.notify-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
}

.btn-notify {
    background: var(--primary-green);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

.btn-notify:active {
    transform: translateY(0);
}

.arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-notify:hover .arrow {
    transform: translateX(4px);
}

/* Services Preview */
.services-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.service-badge {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.service-badge:hover {
    transform: scale(1.05);
}

.badge-icon {
    font-size: 1.125rem;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    animation: fadeIn 0.8s ease-out 1.2s both;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-gray);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Decorative Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -75px;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Responsive Design */
@media (max-width: 900px) {
    .container {
        padding-top: 6rem;
    }

    .language-toggle {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.4rem;
    }

    .lang-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .contact-btn {
        top: 1.5rem;
        right: 1.5rem;
        transform: none;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .contact-btn:hover {
        transform: scale(1.05);
    }

    .contact-text {
        display: none;
    }

    .contact-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Contact Menu - Mobile */
    .contact-menu {
        top: -100%;
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 85vh;
        background: rgba(10, 10, 10, 0.85);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-radius: 0 0 24px 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 2rem;
        z-index: 1000;
    }

    .contact-menu.active {
        top: 0;
        right: 0;
    }

    .close-menu-btn {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: -50px;
        transform: translateX(-50%) rotateZ(0deg);
        width: 60px;
        height: 50px;
        border-radius: 0 0 8px 8px;
    }

    .close-menu-btn svg {
        transform: rotate(-90deg);
    }

    .contact-menu-content {
        padding: 5rem 1.5rem 2rem;
        max-height: 85vh;
        overflow-y: auto;
    }

    .contact-menu-title {
        font-size: 1.75rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem 1.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .services-preview {
        gap: 0.75rem;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 5rem;
    }

    .language-toggle {
        top: 1rem;
        left: 1rem;
        padding: 0.35rem;
    }

    .lang-btn {
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
    }

    .contact-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.65rem 1rem;
    }

    .logo-section {
        flex-direction: column;
        gap: 0.75rem;
    }

    .brand {
        text-align: center;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 1rem 0.75rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
}
