/* =========================================
   CSS Variables & Design System
   ========================================= */
:root {
    --bg-primary: #0B1020;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --accent: #2563EB;
    --accent-bright: #22D3EE;
    --text-primary: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: rgba(148, 163, 184, 0.15);
    --border-hover: rgba(34, 211, 238, 0.4);
    --gradient-primary: linear-gradient(135deg, #2563EB, #06B6D4);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(34, 211, 238, 0.2);
    border-top-color: var(--accent-bright);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   Glassmorphism & Utility Components
   ========================================= */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px -10px rgba(34, 211, 238, 0.15);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.cta-glow {
    position: relative;
    overflow: hidden;
}

.cta-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-glow:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-bright);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subheading, .section-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* =========================================
   Header / Navbar
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.site-header.scrolled {
    background: rgba(11, 16, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent-bright);
    font-size: 1.1rem;
}

.logo-highlight {
    color: var(--accent-bright);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-bright);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 999;
    padding: 6rem 2rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-link:hover {
    color: var(--accent-bright);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    top: 10%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: var(--accent);
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #06B6D4;
    animation: floatOrb 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-bright);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-bright);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

/* Hero Visual Mockup */
.hero-visual {
    position: relative;
}

.tech-dashboard-mockup {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-hover);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    animation: floatingMockup 6s ease-in-out infinite alternate;
}

@keyframes floatingMockup {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.dashboard-header {
    background: rgba(30, 41, 59, 0.6);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.window-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.dashboard-body {
    padding: 1.5rem;
    position: relative;
    min-height: 280px;
}

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.card-metrics {
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-icon {
    font-size: 1.25rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-weight: 700;
    color: var(--accent-bright);
    font-size: 0.95rem;
}

.metric-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.code-snippet-box {
    background: rgba(2, 6, 23, 0.7);
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-keyword { color: #38BDF8; }
.code-variable { color: #F472B6; }
.code-class { color: #FACC15; }
.code-string { color: #34D399; }
.code-prop { color: #FB7185; }
.code-method { color: #818CF8; }

.card-security {
    bottom: 1.5rem;
    left: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    z-index: 2;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-bright);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* =========================================
   Trust / Stats Section
   ========================================= */
.stats-section {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    padding-bottom: 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    height: 450px;
}

.about-primary-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    overflow: hidden;
}

.abstract-grid-bg {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(34, 211, 238, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.floating-badge-about {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(11, 16, 32, 0.9);
    border: 1px solid var(--border-hover);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(12px);
}

.badge-icon {
    font-size: 1.5rem;
}

.floating-badge-about strong {
    display: block;
    font-size: 0.95rem;
}

.floating-badge-about span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-secondary-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--border-hover);
}

.about-secondary-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-secondary-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-content-col .section-heading {
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.about-bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.about-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-quick-ref {
    display: flex;
    flex-direction: column;
}

.ref-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ref-phone {
    font-weight: 700;
    color: var(--accent-bright);
}

/* =========================================
   Services Section
   ========================================= */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.service-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(10deg) scale(1.05);
}

.service-index {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(148, 163, 184, 0.15);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-bright);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* =========================================
   Featured Solutions Section
   ========================================= */
.solutions-section {
    background: var(--bg-secondary);
}

.solutions-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.solutions-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.sol-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sol-tab.active, .sol-tab:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--accent-bright);
    color: var(--accent-bright);
    transform: translateX(10px);
}

.solutions-content-card {
    padding: 3rem;
}

.sol-badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-bright);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.sol-card-inner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sol-card-inner p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.sol-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sol-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.sol-features-list li::before {
    content: '✓';
    color: var(--accent-bright);
    font-weight: 700;
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.why-section {
    background: var(--bg-primary);
}

.why-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.why-card {
    padding: 2.5rem;
}

.wide-card {
    grid-column: span 2;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Technology / Expertise Section
   ========================================= */
.tech-stack-section {
    background: var(--bg-secondary);
}

.tech-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3rem;
}

.tech-chip {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 2rem;
}

.tech-chip:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--accent-bright);
    transform: translateY(-4px);
}

/* =========================================
   Process Section
   ========================================= */
.process-section {
    background: var(--bg-primary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.timeline-step {
    padding: 2.5rem 2rem;
    position: relative;
}

.step-num {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Case Studies Section
   ========================================= */
.projects-section {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.project-card {
    overflow: hidden;
}

.project-mockup {
    height: 220px;
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.bg-gradient-1 { background: linear-gradient(135deg, #1E3A8A, #2563EB); }
.bg-gradient-2 { background: linear-gradient(135deg, #065F46, #0D9488); }

.project-category {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-body {
    padding: 2rem;
}

.project-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.project-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--accent-bright);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    box-sizing: border-box;
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.client-info strong {
    display: block;
    font-size: 1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background: var(--accent-bright);
    width: 24px;
    border-radius: 4px;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 0 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.cta-box {
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(37, 99, 235, 0.2));
    border: 1px solid var(--border-hover);
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 3.5rem;
}

.contact-info-card {
    padding: 3rem;
}

.contact-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.c-icon {
    font-size: 1.5rem;
}

.contact-details-list span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-details-list a, .contact-details-list p {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-wrapper {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(11, 16, 32, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-bright);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.form-group input.error, .form-group textarea.error {
    border-color: #EF4444;
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 0.3rem;
}

.success-alert {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #34D399;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0 1.5rem 0;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a, .footer-contact-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-bright);
}

.footer-contact-info {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    color: var(--accent-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   Responsive Design Breakpoints
   ========================================= */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 992px) {
    .nav-menu, .nav-actions .btn { display: none; }
    .hamburger { display: flex; }
    .hero-container, .about-grid, .solutions-split-layout, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .why-asymmetric-grid { grid-template-columns: 1fr; }
    .wide-card { grid-column: span 1; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 2.5rem; }
    .cta-actions { width: 100%; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .services-grid, .process-timeline { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; gap: 1rem; text-align: center; }
}