/* ==========================================================================
   BSF GLOBAL LOGISTICS - CORE DESIGN SYSTEM
   Theme: High-Performance Maritime & Air Freight Deep Navy / Amber / Cyan
   ========================================================================== */

:root {
    /* Color Palette matching Best Freight (Crimson Red, Jet/Obsidian, Pure White & Cyan) */
    --bg-primary: #070d1e;
    --bg-secondary: #0d1730;
    --bg-tertiary: #132247;
    --bg-card: rgba(14, 25, 52, 0.72);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    --primary-accent: #e63946;       /* Best Freight Signature Red */
    --primary-accent-hover: #ff4d5a;
    --primary-glow: rgba(230, 57, 70, 0.38);

    --cyan-accent: #00d2ff;          /* Global Route Cyan */
    --cyan-glow: rgba(0, 210, 255, 0.3);

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #e63946;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(230, 57, 70, 0.35);

    /* Typography */
    --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Elevation & Transitions */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dynamic Interactive Radar Background Canvas */
#radarCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.65;
}

/* Ambient Radial Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.ambient-glow-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.18), transparent 70%);
}
.ambient-glow-2 {
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12), transparent 70%);
}

/* Layout Container */
.app-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    width: 100%;
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
.site-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(6, 11, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-image-wrap {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), 0 0 15px rgba(230, 57, 70, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-logo:hover .logo-image-wrap {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--cyan-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.status-badge-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: #34d399;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   BUTTONS & FORM ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-accent), #ff8552);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ff8552, #ffa07a);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.45);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--primary-accent);
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-accent);
}

.btn-glow-cyan {
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: var(--cyan-accent);
}
.btn-glow-cyan:hover {
    background: rgba(0, 210, 255, 0.22);
    box-shadow: 0 0 20px var(--cyan-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 1.15rem;
    max-width: 880px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, var(--cyan-accent) 70%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.92rem, 1.6vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.6;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    min-width: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.countdown-box:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 107, 53, 0.15);
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.countdown-divider {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   HERO SUBSCRIBE & ACTIONS
   ========================================================================== */
.subscribe-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 680px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    margin-bottom: 3.5rem;
}

.subscribe-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subscribe-card-sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.subscribe-form {
    display: flex;
    gap: 0.6rem;
    width: 100%;
}

.input-group {
    flex: 1;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: rgba(8, 14, 30, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    background: rgba(12, 22, 46, 0.95);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.hero-quick-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   FEATURED PREVIEW / SERVICES SECTION
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    color: var(--primary-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(0, 210, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.1);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--cyan-accent);
}

.service-card:nth-child(even) .service-icon-wrap {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
    color: var(--primary-accent);
}

.service-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   LAUNCH READINESS / PROGRESS BAR
   ========================================================================== */
.readiness-section {
    background: linear-gradient(145deg, var(--bg-card), rgba(12, 22, 46, 0.8));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(16px);
}

.readiness-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.readiness-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.readiness-percentage {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-accent);
}

.progress-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.progress-bar-fill {
    height: 100%;
    width: 86%;
    background: linear-gradient(90deg, var(--cyan-accent), var(--primary-accent));
    border-radius: var(--radius-full);
    position: relative;
    animation: barShimmer 2.5s infinite linear;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.milestone-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.milestone-text h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.milestone-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   24/7 ACTIVE CONTACT / DISPATCH DESK
   ========================================================================== */
.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    background: rgba(20, 36, 75, 0.7);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-info h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-card-info p {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    word-break: break-word;
}

/* ==========================================================================
   MODAL / POPUP (QUICK QUOTE DRAWER)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #0d1730;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.25rem;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal-backdrop.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.modal-sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 85px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast-msg {
    background: #0f1c3a;
    border-left: 4px solid var(--primary-accent);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    max-width: 380px;
    animation: toastSlideIn 0.35s ease forwards;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-msg.success {
    border-left-color: var(--success);
}
.toast-msg.error {
    border-left-color: var(--danger);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(5, 9, 20, 0.95);
    padding: 2.5rem 2rem;
    margin-top: auto;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-link:hover {
    color: var(--primary-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
    }

    .brand-logo {
        gap: 0.65rem;
    }

    .logo-image-wrap {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-sm);
        padding: 2px;
        flex-shrink: 0;
    }

    .brand-title {
        font-size: 1.05rem;
        letter-spacing: 0;
    }

    .brand-subtitle {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    .header-actions .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.82rem;
        gap: 0.4rem;
        white-space: nowrap;
    }

    .header-actions .btn svg {
        width: 15px;
        height: 15px;
    }

    .main-content {
        padding: 1rem 1rem 3rem;
    }

    .hero-section {
        padding: 2rem 0 1.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .countdown-wrapper {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .countdown-divider {
        display: none;
    }

    .countdown-box {
        min-width: 68px;
        flex: 1 1 calc(25% - 0.5rem);
        max-width: 85px;
        padding: 0.75rem 0.4rem;
        border-radius: var(--radius-sm);
    }

    .countdown-num {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .countdown-label {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .subscribe-card {
        padding: 1.35rem 1.15rem;
        border-radius: var(--radius-md);
        margin-bottom: 2.25rem;
    }

    .subscribe-card-title {
        font-size: 1.05rem;
    }

    .subscribe-card-sub {
        font-size: 0.84rem;
        margin-bottom: 1rem;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 0.65rem;
    }

    .subscribe-form .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .hero-quick-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-quick-cta .btn {
        width: 100%;
        padding: 0.8rem 1.25rem;
        font-size: 0.88rem;
    }

    .section-header {
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 1.35rem;
        border-radius: var(--radius-md);
    }

    .contact-preview-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .contact-card {
        padding: 1.15rem;
    }

    .modal-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-box {
        padding: 1.35rem;
        max-height: 88vh;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .toast-msg {
        max-width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 380px) {
    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        display: none;
    }

    .header-actions .btn span {
        display: inline;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .countdown-box {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
    }

    .countdown-num {
        font-size: 1.3rem;
    }
}
