/* ==========================================================================
   FLEXIMART PREMIUM DESIGN SYSTEM - STYLESHEET
   Designed for Visual Excellence & High Conversions (Corporate Look)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Colors */
    --color-primary: #3b82f6;          /* Vibrant Tech Blue */
    --color-primary-dark: #1d4ed8;     /* Deep Navy Royal */
    --color-secondary: #0f172a;        /* Deep Slate Navy (Corporate background/headings) */
    --color-secondary-light: #1e293b;  /* Slate Grey */
    --color-accent: #0d9488;           /* High-End Teal Accent */
    --color-accent-light: #14b8a6;     /* Electric Teal Light */
    --color-accent-rgb: 13, 148, 136;
    --color-text-dark: #0f172a;        /* High-contrast dark copy */
    --color-text-muted: #4b5563;       /* Balanced slate gray copy */
    --color-bg-light: #f8fafc;         /* Soft clean grey background */
    --color-bg-white: #ffffff;         /* Pure white container */
    --color-border: #e2e8f0;           /* Soft border lines */
    --color-success: #10b981;          /* Emerald Green Success */
    --color-error: #ef4444;            /* Red Warning */

    /* Typography */
    --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows (Tactile & Soft) */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 16px -6px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 10px 20px -8px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.2);
    --shadow-glow-teal: 0 0 25px rgba(13, 148, 136, 0.25);

    /* Layout Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typographical Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Structural Containers --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background-color: rgba(13, 148, 136, 0.08);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

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

/* --- Reusable Components (Buttons) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #2563eb; /* Premium Royal Blue */
    border-color: #2563eb;
    color: var(--color-bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Header / Navigation Styling --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-fast);
}

.site-header.scrolled .header-container {
    height: 70px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-accent-light);
}

.logo-accent {
    color: var(--color-accent);
}

/* Desktop Links */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-secondary-light);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb; /* Premium Royal Blue */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: #2563eb; /* Premium Royal Blue */
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: #2563eb; /* Premium Royal Blue */
}

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

/* Hamburger toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* --- Mobile Menu Drawer --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-white);
    z-index: 150;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    padding: 8rem 2rem 2rem 2rem;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-link {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:hover {
    color: #2563eb; /* Premium Royal Blue */
    padding-left: 0.25rem;
}

.mobile-drawer-actions {
    margin-top: 2rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Hero Section Styling --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.8) 0%, var(--color-bg-light) 100%);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(13, 148, 136, 0.04) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 2s infinite;
}

.badge-text {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary-light);
    letter-spacing: 0.02em;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.75rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-family: var(--font-headings);
    font-weight: 500;
    color: var(--color-secondary-light);
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.hero-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-mini-item {
    display: flex;
    flex-direction: column;
}

.stat-mini-val {
    font-family: var(--font-headings);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
}

.stat-mini-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.stat-mini-divider {
    width: 1px;
    height: 35px;
    background-color: var(--color-border);
}

/* Image Visual mockups */
.image-wrapper-outer {
    position: relative;
    width: 100%;
}

.image-border-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(13,148,136,0.15) 100%);
    filter: blur(10px);
    z-index: 0;
}

.image-wrapper-inner {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 2;
    background: #0f172a; /* placeholder baseline */
}

.hero-main-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: var(--transition-slow);
}

.image-wrapper-outer:hover .hero-main-img {
    transform: scale(1.03);
}

/* Floating dynamic cards */
.floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    z-index: 5;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-secondary);
    animation: floatingFloat 4s ease-in-out infinite;
}

.tag-icon {
    color: var(--color-accent);
}

.tag-uptime {
    top: 15%;
    left: -40px;
    animation-delay: 0.5s;
}

.tag-revenue {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

/* --- Stats Bar Section --- */
.stats-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 60px;
}

.stats-grid {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: var(--color-border);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(59, 130, 246, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.stat-icon {
    width: 28px;
    height: 28px;
}

.stat-item:hover .stat-icon-box {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* --- About Us Section Styling --- */
.about-section {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}

/* Lifecycle flow card */
.interactive-process-card {
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    color: var(--color-bg-white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.interactive-process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.25rem;
}

.process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.process-dot.red { background-color: var(--color-error); }
.process-dot.yellow { background-color: #f59e0b; }
.process-dot.green { background-color: var(--color-success); }

.process-title {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-left: 0.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-fast);
}

.process-step .step-num {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    transition: var(--transition-fast);
}

.process-step h4 {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.process-step p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.process-step.active, 
.process-step:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 148, 136, 0.3);
}

.process-step.active .step-num,
.process-step:hover .step-num {
    color: var(--color-accent-light);
}

.process-step.active h4,
.process-step:hover h4 {
    color: var(--color-bg-white);
}

/* About content */
.about-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-body {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(13, 148, 136, 0.06);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 22px;
    height: 22px;
}

.about-feature-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.about-feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --- Solutions Section Styling --- */
.solutions-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

/* Navigation tabs selector */
.solutions-tabs {
    display: inline-flex;
    background-color: rgba(226, 232, 240, 0.8);
    padding: 0.4rem;
    border-radius: var(--radius-full);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

/* Card components */
.solutions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    margin-bottom: 4rem;
}

.solution-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card.active-tab-content {
    /* When active from tabs on mobile */
}

.sol-badge {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--color-primary-dark);
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.sol-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: rgba(59,130,246,0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.sol-icon {
    width: 24px;
    height: 24px;
}

.sol-title {
    font-size: 1.35rem;
    font-weight: 700;
}

.sol-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.sol-price-block {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sol-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.sol-price-val {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.sol-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-grow: 1; /* push footer/button down */
}

.sol-features li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-secondary-light);
    font-weight: 500;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sol-action {
    margin-top: auto;
}

/* Hover effects for cards */
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.solution-card:hover .sol-icon-box {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-glow);
}

/* Highlighting the middle card (Subscription) as premium */
.solution-card:nth-child(2) {
    border-color: rgba(13, 148, 136, 0.15);
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.03), 0 2px 4px -1px rgba(13, 148, 136, 0.02);
}

.solution-card:nth-child(2):hover {
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.solution-card:nth-child(2) .sol-icon-box {
    background-color: rgba(13, 148, 136, 0.06);
    color: var(--color-accent);
}

.solution-card:nth-child(2):hover .sol-icon-box {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
}

.solution-card:nth-child(2) .sol-price-block {
    background-color: rgba(13, 148, 136, 0.03);
}

/* Lower helper CTA text */
.solutions-footer-cta {
    margin-top: 2rem;
}

.solutions-footer-cta p {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-secondary-light);
    margin-bottom: 1.25rem;
}

/* --- Who Is It For Section --- */
.who-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.who-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.who-body {
    margin-bottom: 2.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 2.25rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.loc-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(59, 130, 246, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.loc-icon {
    width: 22px;
    height: 22px;
}

.location-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.location-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hover highlights for location cards */
.location-card:hover {
    background-color: var(--color-bg-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59,130,246,0.15);
}

.location-card:hover .loc-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-glow);
}

/* Custom icon-colors for other cards to look extremely designed */
#loc-gyms .loc-icon-wrapper { background-color: rgba(13, 148, 136, 0.06); color: var(--color-accent); }
#loc-gyms:hover .loc-icon-wrapper { background-color: var(--color-accent); color: var(--color-bg-white); box-shadow: var(--shadow-glow-teal); }
#loc-gyms:hover { border-color: rgba(13, 148, 136, 0.15); }

#loc-hospitals .loc-icon-wrapper { background-color: rgba(239, 68, 68, 0.06); color: var(--color-error); }
#loc-hospitals:hover .loc-icon-wrapper { background-color: var(--color-error); color: var(--color-bg-white); box-shadow: 0 0 15px rgba(239,68,68,0.25); }
#loc-hospitals:hover { border-color: rgba(239, 68, 68, 0.15); }

#loc-retail .loc-icon-wrapper { background-color: rgba(245, 158, 11, 0.06); color: #d97706; }
#loc-retail:hover .loc-icon-wrapper { background-color: #d97706; color: var(--color-bg-white); box-shadow: 0 0 15px rgba(245,158,11,0.25); }
#loc-retail:hover { border-color: rgba(245, 158, 11, 0.15); }

/* --- Why Choose Us Section Styling --- */
.why-section {
    padding: 100px 0;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.why-bg-accent {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.why-section .section-title {
    color: var(--color-bg-white);
}

.why-section .section-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-accent-light);
    border-color: rgba(255,255,255,0.1);
}

.why-intro-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Beautiful Vertical lists */
.why-grid-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-num-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.why-text-box h4 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.why-text-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.925rem;
    margin-bottom: 0;
}

.why-cta-block {
    margin-top: 3.5rem;
}

/* Graphic elements */
.why-visual-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.graphic-circle.outer {
    width: 85%;
    height: 85%;
    border-style: dashed;
    animation: rotateSlow 40s linear infinite;
}

.graphic-circle.middle {
    width: 60%;
    height: 60%;
    border-color: rgba(13, 148, 136, 0.15);
}

.graphic-circle.inner {
    width: 35%;
    height: 35%;
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255,255,255,0.05);
}

.graphic-stat-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 200px;
    box-shadow: var(--shadow-lg);
    animation: floatingFloat 5s ease-in-out infinite;
}

.graphic-stat-box .g-num {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent-light);
    line-height: 1.1;
    display: block;
}

.graphic-stat-box .g-lbl {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    display: block;
}

/* --- Contact & Location Section Styling --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.contact-panel-desc {
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

/* Brand detail box */
.brand-info-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.brand-info-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.brand-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Info detail items */
.info-detail-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 22px;
    height: 22px;
}

.info-detail-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.info-detail-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--color-accent);
}

/* Modern Glassmorphic Form Panel */
.contact-form-panel {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-instruction {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary-light);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: none;
}

/* Active outlines */
.form-control:focus {
    background-color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
}

/* Errors */
.form-group.has-error .form-control {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.01);
}

.form-group.has-error .form-control:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-error);
    margin-top: 0.35rem;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Spinner active button state */
.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-bg-white);
    border-radius: 50%;
    animation: rotateSlow 0.8s linear infinite;
    position: absolute;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading .btn-spinner {
    display: block;
}

/* --- Success Modal Styling --- */
.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 3.5rem;
    width: 90%;
    max-width: 500px;
    z-index: 200;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.success-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.modal-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.modal-success-icon svg {
    width: 32px;
    height: 32px;
}

.success-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-modal p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.success-modal p.modal-sub {
    font-size: 0.85rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
    border: 1px solid var(--color-border);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Footer Styling --- */
.site-footer {
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    color: var(--color-bg-white);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-teal);
}

.footer-nav-col h4 {
    color: var(--color-bg-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 0.25rem;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-info-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent-light);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-info-list a:hover {
    color: var(--color-accent-light);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2.25rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dot-sep {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-block;
}

.footer-bottom-links a:hover {
    color: var(--color-accent-light);
}

/* --- Scroll-Reveal Framework --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Keyframe Animations --- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes floatingFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .grid-2 {
        gap: 2.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats-mini {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .tag-uptime { left: -20px; }
    .tag-revenue { right: -20px; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stats-bar-section {
        margin-top: -20px;
        padding-bottom: 40px;
    }
    
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .solution-card {
        padding: 2.5rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.95rem; }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    #nav-cta-button {
        display: none;
    }
    
    /* Toggle active animation for trigger */
    .mobile-menu-toggle.active .bar-1 {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar-2 {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar-3 {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-visual {
        order: 2;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-content {
        order: 1;
    }
    
    .contact-form-panel {
        padding: 2.25rem 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 50px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    
    .stat-mini-divider {
        display: none;
    }
    
    .interactive-process-card {
        padding: 1.5rem;
    }
    
    .process-step {
        gap: 1rem;
        padding: 0.75rem;
    }
}

/* Updated logo styles */
.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Adjust footer logo sizing to be clean and slightly larger */
.site-footer .logo-img {
    height: 40px;
}
