.elementor-14 .elementor-element.elementor-element-6d5b482{--display:flex;}/* Start custom CSS for html, class: .elementor-element-00f09a1 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0f1115;
    --card-bg: rgba(26, 29, 36, 0.75);
    --gold: #C6A15B;
    --gold-light: #E4C580;
    --text-main: #F4F0E8;
    --text-muted: #9BA1A6;
    --border-color: rgba(198, 161, 91, 0.25);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 20%, rgba(198, 161, 91, 0.08) 0%, transparent 60%);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 17, 21, 0.95), rgba(26, 29, 36, 0.85));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(198, 161, 91, 0.12);
    color: var(--gold-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.company-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.company-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 1.25rem;
}

.tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 1.25rem;
    width: 100%;
    max-width: 750px;
    margin: 1rem 0;
}

.time-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.notify-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notify-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.branches-info {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        gap: 2rem;
    }

    .company-name {
        font-size: 2.1rem;
    }

    .company-sub {
        font-size: 1.15rem;
        letter-spacing: 4px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .time-box {
        padding: 1.25rem 0.75rem;
    }

    .number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.75rem;
    }

    .company-sub {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 0.95rem;
    }
}/* End custom CSS */