/* ==========================================================================
   DEVCRAFT INFOTECH - PREMIUM DESIGN SYSTEM & VARIABLES
   ========================================================================== */

:root {
    /* Color Palette */
    --color-primary: #6C63FF;
    --color-secondary: #8B5CF6;
    --color-accent: #00D4FF;
    --color-bg: #0F172A;
    --color-surface: #1E293B;
    --color-text: #F8FAFC;
    --color-text-muted: #94A3B8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    --gradient-text: linear-gradient(135deg, #A78BFA, var(--color-accent));
    --gradient-dark: linear-gradient(180deg, #0F172A 0%, #020617 100%);
    --gradient-glass-border: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    
    /* Shadow / Glow */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 25px rgba(108, 99, 255, 0.2);
    --glow-accent: 0 0 25px rgba(0, 212, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Spacing */
    --container-max-w: 1200px;
    --nav-height: 80px;
}

/* ==========================================================================
   RESET & GLOBAL RULES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

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

body {
    background-color: var(--color-bg);
    background-image: var(--gradient-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    cursor: none; /* Hide default cursor to enable custom cursor */
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    cursor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
    border: 2px solid #020617;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Selection colors */
::selection {
    background-color: rgba(108, 99, 255, 0.3);
    color: var(--color-accent);
}

.container {
    width: 100%;
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   AESTHETIC UTILITIES
   ========================================================================== */

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(30, 41, 59, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

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

.btn-gradient {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: #fff;
}

.btn-gradient:hover {
    background-position: right center;
    box-shadow: var(--glow-accent);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   EXTRA PREMIUM HOVER WIDGETS
   ========================================================================== */

/* Custom Cursor */
.custom-cursor {
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovered {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 212, 255, 0.05);
    border-color: var(--color-primary);
}

/* Mouse-follow Glow Background Effect */
#mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

/* Particles Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1001;
    background: transparent;
}

#scroll-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
}

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

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loader-anim 2.5s infinite linear;
}

.loader-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes loader-anim {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ==========================================================================
   SECTION 1: HEADER / NAVIGATION
   ========================================================================== */

.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar-header.scrolled {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    z-index: 1002;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active transformations */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   SECTION 2: HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--color-primary);
    animation: float-shape 12s infinite ease-in-out alternate;
}

.shape-2 {
    bottom: 10%;
    right: 15%;
    width: 350px;
    height: 350px;
    background-color: var(--color-secondary);
    animation: float-shape 16s infinite ease-in-out alternate-reverse;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 250px;
    height: 250px;
    background-color: var(--color-accent);
    animation: float-shape 10s infinite ease-in-out alternate;
}

@keyframes float-shape {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.15); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-quick-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    width: 100%;
}

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

.quick-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plus-sign, .percent-sign {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
}

.quick-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 400px;
}

/* Glass Dashboard Mockup */
.main-dashboard {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 70%;
    border-radius: var(--radius-md);
    background: rgba(30, 41, 59, 0.6);
    z-index: 2;
    overflow: hidden;
}

.mockup-header {
    height: 40px;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-header .dot.red { background: #EF4444; }
.mockup-header .dot.yellow { background: #F59E0B; }
.mockup-header .dot.green { background: #10B981; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-left: 8px;
    font-family: monospace;
}

.mockup-body {
    padding: 20px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #38BDF8;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mockup-code-lines {
    line-height: 1.6;
}

.mockup-code-lines .keyword { color: #F472B6; }
.mockup-code-lines .string { color: #34D399; }
.mockup-code-lines .function { color: #60A5FA; }

.mockup-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
}

.chart-bar-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    animation: bar-rise 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes bar-rise {
    0% { height: 0; }
}

/* Floating overlay cards */
.floating-elem {
    animation: float-y 5s infinite ease-in-out alternate;
}

.floating-elem-delay {
    animation: float-y 6s infinite ease-in-out alternate-reverse;
}

@keyframes float-y {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.sub-card-1 {
    position: absolute;
    bottom: -5%;
    left: -8%;
    width: 220px;
    height: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    border-radius: var(--radius-sm);
}

.sub-card-2 {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 200px;
    height: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    border-radius: var(--radius-sm);
}

.card-glow-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1px solid rgba(0, 212, 255, 0.15);
    pointer-events: none;
}

.sub-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.sub-card-icon.accent-glow {
    background: rgba(0, 212, 255, 0.15);
    color: var(--color-accent);
}

.sub-card-title {
    font-size: 0.8rem;
    font-weight: 700;
}

.sub-card-meta {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 22px;
    height: 38px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { opacity: 0; top: 6px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 16px; }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   COMMON SECTION STYLING
   ========================================================================== */

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.subtitle-gradient {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 20px auto 0;
}

.text-center .title-underline {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SECTION 3: ABOUT US
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon.red-glow { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.stat-icon.purple-glow { background: rgba(139, 92, 246, 0.1); color: var(--color-secondary); }
.stat-icon.cyan-glow { background: rgba(0, 212, 255, 0.1); color: var(--color-accent); }
.stat-icon.amber-glow { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

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

/* ==========================================================================
   SECTION 4: SERVICES
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .card-glow-bg {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform 0.4s ease;
}

.service-icon.purple-glow { background: rgba(108, 99, 255, 0.1); color: var(--color-primary); }
.service-icon.cyan-glow { background: rgba(0, 212, 255, 0.1); color: var(--color-accent); }
.service-icon.red-glow { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.service-icon.green-glow { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.service-icon.amber-glow { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.service-hover-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.service-card:hover .service-hover-indicator {
    width: 100%;
}

/* ==========================================================================
   SECTION 5: VISION & MISSION
   ========================================================================== */

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.vision-icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vision-icon-box.cyan-glow { background: rgba(0, 212, 255, 0.1); color: var(--color-accent); border: 1px solid rgba(0, 212, 255, 0.2); }
.vision-icon-box.purple-glow { background: rgba(139, 92, 246, 0.1); color: var(--color-secondary); border: 1px solid rgba(139, 92, 246, 0.2); }

.vision-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.vision-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.vision-details {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 6: PORTFOLIO / WORK
   ========================================================================== */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active-filter {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.portfolio-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-bg-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-art-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-bg-gradient {
    transform: scale(1.1);
}

.portfolio-link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-link-btn {
    transform: scale(1);
}

.portfolio-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.portfolio-tags .tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 7: CLIENT REVIEWS
   ========================================================================== */

.reviews-slider-wrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active-slide {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    padding: 50px 48px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.rating-stars {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.testimonial-comment {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.client-meta {
    text-align: left;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-control-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slider-dot.active-dot {
    width: 24px;
    border-radius: 4px;
    background: var(--color-accent);
}

/* ==========================================================================
   SECTION 9: OUR TEAM
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-image-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.team-placeholder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.team-placeholder-img.purple-glow { text-shadow: 0 0 10px rgba(139, 92, 246, 0.6); }
.team-placeholder-img.green-glow { text-shadow: 0 0 10px rgba(16, 185, 129, 0.6); }
.team-placeholder-img.cyan-glow { text-shadow: 0 0 10px rgba(0, 212, 255, 0.6); }
.team-placeholder-img.amber-glow { text-shadow: 0 0 10px rgba(245, 158, 11, 0.6); }
.team-placeholder-img.red-glow { text-shadow: 0 0 10px rgba(239, 68, 68, 0.6); }
.team-placeholder-img.blue-glow { text-shadow: 0 0 10px rgba(59, 130, 246, 0.6); }

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.team-socials a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   SECTION 8: CONTACT US
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
}

.info-card {
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-lead-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon.purple-glow { background: rgba(139, 92, 246, 0.1); color: var(--color-secondary); }
.info-icon.cyan-glow { background: rgba(0, 212, 255, 0.1); color: var(--color-accent); }
.info-icon.red-glow { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

.info-details span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.info-details a,
.info-details p {
    font-size: 1rem;
    font-weight: 600;
}

.info-details a:hover {
    color: var(--color-accent);
}

.contact-social-links span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: #fff;
}

.form-card {
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.full-width {
    grid-column: span 2;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group textarea {
    resize: none;
}

/* Floating Label Logic */
.input-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-28px);
    font-size: 0.8rem;
    color: var(--color-accent);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

/* Dropdown styling */
.select-group label.select-label {
    transform: translateY(-28px);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.input-group select option {
    background: var(--color-surface);
    color: var(--color-text);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Form validation validation styling */
.input-group.error input,
.input-group.error textarea,
.input-group.error select {
    border-color: #EF4444;
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 4px;
}

.input-group.error .error-msg {
    display: block;
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-message-content {
    text-align: center;
    max-width: 380px;
    padding: 24px;
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scale-up {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-message-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   SECTION 10: FOOTER
   ========================================================================== */

.footer {
    background-color: #080d1a;
    border-top: 2px solid rgba(108, 99, 255, 0.2);
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: transparent;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-link-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-col ul a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-link-col ul a:hover {
    color: var(--color-accent);
}

.footer-contact-item {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

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

/* Scroll To Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-to-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-accent);
}

/* Floating Action CTA Widget */
.floating-cta-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-cta-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Form Button Spinner */
.form-btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

.floating-cta-trigger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    position: relative;
}

.cta-pulse-radar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.6;
    animation: radar-pulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes radar-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.cta-tooltip-label {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text);
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-cta-trigger:hover .cta-tooltip-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   GLOBAL INTERSECTION OBSERVER ANIMATION INITIAL STATES
   ========================================================================== */

/* Fade Up */
.fade-up-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.fade-left-init {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-left-reveal {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.fade-right-init {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-right-reveal {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
.zoom-in-init {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoom-in-reveal {
    opacity: 1;
    transform: scale(1);
}

/* Text Reveal (Hero title highlight transition) */
.text-reveal {
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.text-reveal-active {
    background-position: 0 0;
}

/* Stagger Animations (applied on children elements) */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stagger-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN Breakpoints
   ========================================================================== */

/* Tablet View */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-quick-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile View */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        cursor: auto; /* Re-enable default cursor on touch devices */
    }
    
    .custom-cursor, .custom-cursor-dot {
        display: none !important; /* Hide custom cursor on mobile */
    }

    section {
        padding: 60px 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 1001;
        padding: 100px 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .nav-cta-btn {
        display: none; /* Hide primary CTA in header on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .hero-quick-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .visual-wrapper {
        max-width: 100%;
        height: 320px;
    }
    
    .sub-card-1, .sub-card-2 {
        display: none !important;
    }
    
    .main-dashboard {
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        height: 100% !important;
    }
    
    .stats-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 20px;
    }
    
    .vision-card {
        padding: 32px 20px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-cta-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
    }
}
