/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ============ ANIMATED BACKGROUND ============ */
.bg-shapes {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 20s infinite ease-in-out;
}

.shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; right: -150px; animation-delay: -5s; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 50%; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(50px, -50px) scale(1.1); }
    66%      { transform: translate(-30px, 30px) scale(0.9); }
}

/* ============ CONTAINER ============ */
.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============ LOGO ============ */
.logo-wrap {
    margin-bottom: 25px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

/* ============ TYPOGRAPHY ============ */
.company-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-style: italic;
}

/* ============ BADGE ============ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.9);
    color: #222;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    animation: blink 2s infinite;
}

.badge-icon {
    font-size: 1.3rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.75; }
}

/* ============ COUNTDOWN ============ */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-box small {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
}

/* ============ CONTACT INFO ============ */
.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
    transition: transform 0.3s, background 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-item .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ============ NOTIFY FORM ============ */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1rem;
    outline: none;
}

.notify-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.notify-form button {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-form button:hover {
    background: #ee5253;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 82, 83, 0.4);
}

/* ============ FOOTER ============ */
footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
    .company-name { font-size: 2rem; }
    .tagline      { font-size: 1rem; }
    .time-box     { min-width: 75px; padding: 15px 10px; }
    .time-box span { font-size: 1.8rem; }
    .logo         { width: 90px; height: 90px; }
}