/* ==========================================================================
   SPECIAL ELECTRONICS // MINIMALIST CENTERED COMING SOON (WHITE BACKGROUND)
   ========================================================================== */

:root {
    /* Color Palette - Clean Simple White with Brand Red & WhatsApp Green */
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;

    /* Brand Accents */
    --accent-red: #ff001e;
    --accent-red-hover: #d10015;
    --accent-red-light: rgba(255, 0, 30, 0.08);
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #1ebd5a;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-red: 0 8px 25px rgba(255, 0, 30, 0.22);
    --shadow-wa: 0 8px 25px rgba(37, 211, 102, 0.28);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem 0 1rem;
    overflow-x: hidden;
}

/* Utility classes */
.highlight-red {
    color: var(--accent-red);
}

/* Page Container (Centered Layout) */
.page-container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ==========================================================================
   1. CENTER ALIGNED LOGO
   ========================================================================== */
.logo-section {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.8s ease;
}

.center-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
    transition: var(--transition);
}

.center-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 24px rgba(255, 0, 30, 0.15));
}

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

/* ==========================================================================
   2. MAIN HEADLINE & TAGLINE
   ========================================================================== */
.title-section {
    max-width: 880px;
    margin: 0 auto 3.5rem auto;
    animation: fadeIn 0.9s ease;
}

.launch-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--accent-red);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.sub-title {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ==========================================================================
   3. CENTERED LAUNCH COUNTDOWN TIMER
   ========================================================================== */
.countdown-section {
    margin-bottom: 3.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 160px));
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 760px;
}

.countdown-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-red);
    border-radius: 14px;
    padding: 1.8rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.countdown-val {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.countdown-lbl {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 0.15em;
}

/* ==========================================================================
   4. ACTION BUTTONS (CALL & WHATSAPP) BELOW COUNTDOWN
   ========================================================================== */
.cta-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
    width: 100%;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1.1rem 2.4rem;
    border-radius: 10px;
    transition: var(--transition);
    min-width: 260px;
}

.btn-call {
    background: var(--accent-red);
    color: #ffffff;
    box-shadow: var(--shadow-red);
}

.btn-call:hover {
    background: var(--accent-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 0, 30, 0.35);
}

.btn-wa {
    background: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: var(--shadow-wa);
}

.btn-wa:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
}

.btn-icon {
    font-size: 1.3rem;
}

/* ==========================================================================
   5. GOOGLE MAPS EMBED
   ========================================================================== */
.location-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.location-heading {
    margin-bottom: 1.5rem;
}

.location-heading h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.location-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.map-wrapper {
    width: 100%;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    background: #f8fafc;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* ==========================================================================
   6. FOOTER ("DEVELOPING BY N4 DESIGNS")
   ========================================================================== */
.main-footer {
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.copyright {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.n4-brand {
    color: var(--accent-red);
    font-weight: 900;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .cta-section {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-action {
        width: 100%;
        max-width: 360px;
    }

    .map-wrapper {
        height: 350px;
    }
}
