/* ============================================
   MICROHUB - Coming Soon Page Styles
   HTML/CSS/Bootstrap 5 Version
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables - Color Palette
   ============================================ */
:root {
    /* Deep Navy/Slate Professional Palette */
    --background: hsl(222, 47%, 4%);
    --foreground: hsl(210, 40%, 98%);

    /* Precise Cobalt Blue as Primary */
    --primary: hsl(217, 91%, 60%);
    --primary-foreground: hsl(222, 47%, 4%);

    /* Soft Slate as Secondary */
    --secondary: hsl(215, 25%, 27%);
    --secondary-foreground: hsl(210, 40%, 98%);

    --card: hsl(222, 47%, 6%);
    --card-foreground: hsl(210, 40%, 98%);

    --muted: hsl(217, 32%, 17%);
    --muted-foreground: hsl(215, 20%, 65%);

    --accent: hsl(217, 91%, 60%);
    --accent-foreground: hsl(210, 40%, 98%);

    --border: hsl(217, 32%, 17%);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --radius: 0.5rem;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgba(59, 130, 246, 0.3);
}

html {
    height: 100%;
    width: 100%;
}

body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: -0.025em;
}

/* ============================================
   Main Container
   ============================================ */
.main-container {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   Background Styles
   ============================================ */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    animation: scaleIn 2s ease-out forwards;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, var(--background), rgba(10, 15, 25, 0.8), transparent);
}

@keyframes scaleIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* ============================================
   Navigation Styles
   ============================================ */
.navbar-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 2rem 2.5rem;
    background: transparent;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.navbar-brand-custom img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.25) grayscale(1);
    transition: filter 0.5s ease;
}

.navbar-brand-custom:hover img {
    filter: brightness(1.25) grayscale(0);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: white;
    text-transform: uppercase;
}

.brand-text .accent {
    color: var(--primary);
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-inquire {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    transition: background 0.3s ease;
}

.btn-inquire:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ============================================
   Main Content Area
   ============================================ */
.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    padding-top: 120px;
    padding-bottom: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   Left Column - Brand & Countdown
   ============================================ */
.brand-section {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tagline-line {
    height: 1px;
    width: 48px;
    background: rgba(59, 130, 246, 0.5);
}

.tagline-text {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 3rem;
}

.main-title .highlight {
    color: var(--primary);
    display: inline-block;
}

/* Countdown Styles */
.countdown-section {
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    font-weight: 700;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    gap: 2rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
}

.countdown-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-display);
    font-weight: 900;
    color: white;
}

.countdown-unit-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* CTA Button */
.btn-cta {
    padding: 1.25rem 2.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    border-radius: 2px;
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.6);
}

/* ============================================
   Right Column - Features Card
   ============================================ */
.features-section {
    animation: scaleInFeatures 1s ease-out 0.4s both;
}

@keyframes scaleInFeatures {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.features-card {
    background: rgba(15, 25, 45, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.features-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0.5;
}

.features-card-inner {
    position: relative;
    z-index: 1;
}

/* Features Card Header */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.features-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper {
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
}

.features-header-text span {
    display: block;
}

.features-header-text .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
}

.features-header-text .title {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Feature Display */
.feature-display {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: border-color 0.3s ease;
}

.features-card:hover .feature-icon-box {
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon-box i {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-highlight-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--primary);
    font-weight: 900;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-display);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Features Card Footer */
.features-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.features-footer span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    font-weight: 700;
}

/* Background Glows */
.glow-top {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(120px);
    z-index: -1;
}

.glow-bottom {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 256px;
    height: 256px;
    background: rgba(37, 99, 235, 0.05);
    filter: blur(120px);
    z-index: -1;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer-left {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 10px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-item i {
    color: var(--primary);
    font-size: 12px;
}

.footer-item i.pulse {
    animation: pulse 2s infinite;
}

.footer-right {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 10px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
}

/* ============================================
   Feature Transition Animation
   ============================================ */
.feature-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-content.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.feature-content.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Responsive Styles - Tablet (991px and below)
   ============================================ */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .content-wrapper {
        padding-top: 100px;
        padding-bottom: 80px;
        justify-content: flex-start;
    }

    .brand-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .tagline-wrapper {
        justify-content: center;
    }

    .main-title {
        text-align: center;
        margin-bottom: 2rem;
    }

    .countdown-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .brand-section .pt-3 {
        text-align: center;
    }

    .features-card {
        padding: 2rem;
    }

    .features-header {
        margin-bottom: 2rem;
    }

    .feature-display {
        min-height: 160px;
    }

    .footer-left,
    .footer-right {
        display: none;
    }
}

/* ============================================
   Responsive Styles - Mobile Landscape (767px and below)
   ============================================ */
@media (max-width: 767.98px) {
    .navbar-custom {
        padding: 0.75rem 1rem;
    }

    .navbar-brand-custom img {
        width: 32px;
        height: 32px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .btn-inquire {
        padding: 0.4rem 1rem;
        font-size: 9px;
    }

    .content-wrapper {
        padding: 80px 1rem 60px 1rem;
    }

    .main-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .tagline-wrapper {
        margin-bottom: 1rem;
    }

    .tagline-line {
        width: 30px;
    }

    .tagline-text {
        font-size: 9px;
        letter-spacing: 0.3em;
    }

    .countdown-section {
        margin-bottom: 1.5rem;
    }

    .countdown-timer {
        gap: 1.25rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-unit-label {
        font-size: 8px;
    }

    .btn-cta {
        padding: 0.875rem 1.75rem;
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .features-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .features-header {
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .icon-wrapper {
        padding: 0.5rem;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }

    .features-header-text .label {
        font-size: 9px;
    }

    .features-header-text .title {
        font-size: 10px;
    }

    .feature-display {
        min-height: 140px;
    }

    .feature-icon-row {
        margin-bottom: 1rem;
    }

    .feature-icon-box {
        padding: 0.75rem;
    }

    .feature-icon-box i {
        font-size: 1.75rem;
    }

    .feature-highlight-label {
        font-size: 9px;
        letter-spacing: 0.3em;
    }

    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .feature-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .features-footer {
        padding-top: 1.25rem;
    }

    .features-footer span {
        font-size: 9px;
    }

    .glow-top,
    .glow-bottom {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   Responsive Styles - Mobile Portrait (575px and below)
   ============================================ */
@media (max-width: 575.98px) {
    .navbar-custom {
        padding: 0.75rem;
    }

    .navbar-brand-custom {
        gap: 0.5rem;
    }

    .navbar-brand-custom img {
        width: 28px;
        height: 28px;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .btn-inquire {
        padding: 0.35rem 0.75rem;
        font-size: 8px;
    }

    .content-wrapper {
        padding: 70px 0.75rem 50px 0.75rem;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .main-title br {
        display: none;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-unit-label {
        font-size: 7px;
        letter-spacing: 0.1em;
    }

    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 9px;
        width: 100%;
        max-width: 280px;
    }

    .features-card {
        padding: 1.25rem;
    }

    .features-header-left {
        gap: 0.75rem;
    }

    .feature-icon-box i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .feature-display {
        min-height: 120px;
    }
}

/* ============================================
   Responsive Styles - Very Small Screens (400px and below)
   ============================================ */
@media (max-width: 400px) {
    .navbar-brand-custom img {
        width: 24px;
        height: 24px;
    }

    .brand-text {
        font-size: 0.8rem;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 9px;
    }

    .features-card {
        padding: 1rem;
    }

    .icon-wrapper {
        display: none;
    }

    .feature-icon-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }
}

/* ============================================
   Landscape Mode Adjustments
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .content-wrapper {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .main-title br {
        display: none;
    }

    .countdown-section {
        margin-bottom: 1rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .feature-display {
        min-height: 100px;
    }

    .features-header {
        margin-bottom: 1rem;
    }

    .features-footer {
        padding-top: 1rem;
    }
}

/* ============================================
   Desktop Large Screens (1400px and above)
   ============================================ */
@media (min-width: 1400px) {
    .content-wrapper {
        padding-top: 140px;
    }

    .main-title {
        font-size: 7rem;
    }

    .countdown-value {
        font-size: 3.5rem;
    }

    .features-card {
        padding: 3.5rem;
    }

    .feature-title {
        font-size: 2.25rem;
    }
}