/* ==========================================
   95008 Newfoundland & Labrador Inc.
   Premium Marketing Website - Light Theme
   Colors: #004aad (Blue) & #1d1f21 (Charcoal)
   ========================================== */

/* ==========================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================== */
:root {
    /* Primary Brand Colors */
    --color-primary: #004aad;
    --color-primary-dark: #003d91;
    --color-primary-darker: #002f70;
    --color-primary-light: #1a5fbd;
    --color-primary-lighter: #e8f0fc;

    /* Secondary / Text Colors */
    --color-dark: #1d1f21;
    --color-dark-light: #2d3033;
    --color-dark-lighter: #3d4145;

    /* Neutral Colors */
    --color-gray-900: #1d1f21;
    --color-gray-800: #2d3033;
    --color-gray-700: #4a4f54;
    --color-gray-600: #6b7280;
    --color-gray-500: #9ca3af;
    --color-gray-400: #c4c9d0;
    --color-gray-300: #e5e7eb;
    --color-gray-200: #f1f3f5;
    --color-gray-100: #f8f9fa;
    --color-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #f8faff 0%, #e8f0fc 50%, #f0f7ff 100%);
    --gradient-card: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-100) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-primary) 0%, #0066cc 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-primary);

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.35vw, 2.75rem);
    --text-4xl: clamp(2.25rem, 1.85rem + 2vw, 3.5rem);
    --text-5xl: clamp(2.75rem, 2.1rem + 3.25vw, 4.5rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(29, 31, 33, 0.04);
    --shadow-sm: 0 2px 4px rgba(29, 31, 33, 0.06);
    --shadow-md: 0 4px 12px rgba(29, 31, 33, 0.08);
    --shadow-lg: 0 8px 24px rgba(29, 31, 33, 0.1);
    --shadow-xl: 0 16px 48px rgba(29, 31, 33, 0.12);
    --shadow-2xl: 0 24px 64px rgba(29, 31, 33, 0.14);
    --shadow-primary: 0 8px 32px rgba(0, 74, 173, 0.25);
    --shadow-primary-lg: 0 16px 48px rgba(0, 74, 173, 0.3);

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

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

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Form elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

/* Section Subtitle */
.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 600px;
    line-height: 1.7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.visible {
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

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

@media (min-width: 1400px) {
    .nav-container {
        max-width: 1360px;
    }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 44px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-image {
    transform: scale(1.02);
}

/* Nav Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-xs);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-lighter);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    margin-left: var(--space-sm);
    box-shadow: var(--shadow-primary);
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
    background-color: var(--color-gray-100);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    position: relative;
    width: 22px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 0 auto;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    padding: 100px var(--space-xl) var(--space-xl);
    gap: var(--space-sm);
    animation: fadeIn var(--transition-base) ease;
    overflow-y: auto;
}

.nav-menu.active .nav-link {
    font-size: var(--text-xl);
    padding: var(--space-md) var(--space-lg);
}

.nav-menu.active .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
    text-align: center;
    justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-5xl) + 60px) 0 var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 50%, #f8faff 100%);
}

/* Hero Background Container */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Animated Gradient Mesh Background */
.hero-gradient-mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 74, 173, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 74, 173, 0.07) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* Grid Pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 74, 173, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 74, 173, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    z-index: 1;
}

/* Floating Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    top: -15%;
    right: -5%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(0, 74, 173, 0.08) 100%);
    bottom: -10%;
    left: -10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    top: 40%;
    left: 5%;
    animation: orbFloat3 12s ease-in-out infinite;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.12) 0%, rgba(59, 130, 246, 0.1) 100%);
    top: 10%;
    left: 50%;
    animation: orbFloat1 20s ease-in-out infinite reverse;
}

.orb-5 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0, 74, 173, 0.12) 100%);
    bottom: 10%;
    right: 5%;
    animation: orbFloat2 16s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 25px) scale(1.03); }
    66% { transform: translate(35px, -15px) scale(0.97); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -25px) scale(1.08); }
}

/* Geometric Lines SVG */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.line-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    fill: none;
    stroke-width: 1;
    stroke-dasharray: 8 4;
    opacity: 0.3;
}

.line-1 {
    stroke: rgba(0, 74, 173, 0.12);
    animation: lineMove 8s ease-in-out infinite;
}

.line-2 {
    stroke: rgba(59, 130, 246, 0.08);
    animation: lineMove 10s ease-in-out infinite reverse;
}

.line-3 {
    stroke: rgba(99, 102, 241, 0.06);
    animation: lineMove 12s ease-in-out infinite;
}

@keyframes lineMove {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 24; }
}

/* Central Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 74, 173, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

/* Decorative Circles */
.deco-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 74, 173, 0.08);
}

.deco-circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    border-width: 2px;
    border-color: rgba(0, 74, 173, 0.1);
    animation: circleRotate 30s linear infinite;
}

.deco-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -100px;
    border-style: dashed;
    border-color: rgba(59, 130, 246, 0.08);
    animation: circleRotate 25s linear infinite reverse;
}

.deco-circle-3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dotted;
    border-color: rgba(99, 102, 241, 0.06);
    animation: circleRotateCenter 40s linear infinite;
}

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

@keyframes circleRotateCenter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 74, 173, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 74, 173, 0.25);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
    animation: particleFloat 8s ease-in-out infinite 1s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    animation: particleFloat 7s ease-in-out infinite 0.5s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 10%;
    background: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    animation: particleFloat 9s ease-in-out infinite 2s;
}

.particle:nth-child(5) {
    top: 15%;
    left: 40%;
    width: 5px;
    height: 5px;
    background: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    animation: particleFloat 10s ease-in-out infinite 1.5s;
}

.particle:nth-child(6) {
    bottom: 25%;
    left: 35%;
    width: 4px;
    height: 4px;
    background: rgba(0, 74, 173, 0.4);
    box-shadow: 0 0 10px rgba(0, 74, 173, 0.2);
    animation: particleFloat 8s ease-in-out infinite 0.8s;
}

.particle:nth-child(7) {
    top: 45%;
    right: 30%;
    width: 7px;
    height: 7px;
    background: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
    animation: particleFloat 11s ease-in-out infinite 2.5s;
}

.particle:nth-child(8) {
    bottom: 15%;
    right: 25%;
    width: 5px;
    height: 5px;
    background: rgba(99, 102, 241, 0.45);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    animation: particleFloat 7s ease-in-out infinite 1.2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.7;
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 var(--space-xl);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-white);
    border: 1px solid rgba(0, 74, 173, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 74, 173, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 74, 173, 0.1); }
    50% { box-shadow: 0 4px 30px rgba(0, 74, 173, 0.2); }
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 74, 173, 0.3);
}

.badge-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero-title .text-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563eb 50%, var(--color-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: var(--color-white);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* Primary button for light sections */
.about .btn-primary,
.services .btn-primary,
.why-us .btn-primary,
.contact .btn-primary,
.footer .btn-primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.about .btn-primary:hover,
.services .btn-primary:hover,
.why-us .btn-primary:hover,
.contact .btn-primary:hover,
.footer .btn-primary:hover {
    box-shadow: var(--shadow-primary-lg);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--color-gray-50);
    border-color: var(--color-gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background-color: var(--color-gray-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.scroll-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-500);
}

.scroll-line {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 74, 173, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* ==========================================
   TRUST BANNER
   ========================================== */
.trust-banner {
    padding: var(--space-xl) 0;
    background-color: var(--color-primary);
    text-align: center;
}

.trust-text {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--space-5xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

/* About Visual */
.about-visual {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .about-visual {
        order: 0;
    }
}

.visual-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 55%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--color-white);
}

@media (max-width: 1023px) {
    .visual-card-secondary {
        display: none;
    }
}

.visual-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}


/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background-color: var(--color-primary-lighter);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--space-5xl) 0;
    background-color: var(--color-gray-100);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card */
.service-card {
    position: relative;
    padding: var(--space-2xl);
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-lighter);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .card-icon {
    background: var(--gradient-primary);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    transition: stroke var(--transition-base);
}

.service-card:hover .card-icon svg {
    stroke: var(--color-white);
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.card-description {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-gray-700);
}

.card-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-footer {
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    transition: gap var(--transition-fast);
}

.card-link:hover {
    gap: var(--space-md);
}

.card-link svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-us {
    padding: var(--space-5xl) 0;
    background-color: var(--color-white);
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Value Card */
.value-card {
    position: relative;
    padding: var(--space-2xl);
    background-color: var(--color-gray-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.value-card:hover {
    background-color: var(--color-primary-lighter);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-primary);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.value-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.value-description {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Why Us CTA */
.why-us-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-3xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    text-align: center;
}

@media (min-width: 768px) {
    .why-us-cta {
        flex-direction: row;
        text-align: left;
    }
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--space-5xl) 0;
    background-color: var(--color-gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }
}

.contact-text {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.info-content {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.info-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-500);
    margin-bottom: 2px;
}

.info-value {
    font-size: var(--text-base);
    color: var(--color-dark);
    font-weight: 600;
}

a.info-value:hover {
    color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: var(--space-2xl);
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--color-dark);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--color-gray-400);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px var(--color-primary-lighter);
}

.form-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

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

.form-error {
    display: block;
    font-size: var(--text-xs);
    color: #ef4444;
    margin-top: var(--space-xs);
    min-height: 18px;
}

/* Submit Button States */
#submit-btn {
    position: relative;
    margin-top: var(--space-md);
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text,
.btn.loading .btn-icon {
    visibility: hidden;
}

.btn.loading .btn-loading {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-3xl);
}

.form-success.visible {
    display: block;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    margin: 0 auto var(--space-xl);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
}

.success-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.success-text {
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background-color: var(--color-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: var(--text-base);
    color: var(--color-gray-400);
    max-width: 280px;
    line-height: 1.7;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.footer-nav-group a,
.footer-nav-group span {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-nav-group a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* Stagger animations for grid items */
.services-grid .service-card,
.value-grid .value-card,
.about-features .feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services-grid .service-card.visible,
.value-grid .value-card.visible,
.about-features .feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }

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

    .badge-icon svg {
        width: 12px;
        height: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    .logo-image {
        height: 36px;
    }

    .service-card,
    .value-card {
        padding: var(--space-lg);
    }

    .card-icon {
        width: 52px;
        height: 52px;
    }

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

    .contact-form {
        padding: var(--space-lg);
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

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

    .info-value {
        font-size: var(--text-sm);
        word-break: break-word;
    }

    .why-us-cta {
        padding: var(--space-xl);
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    .hero {
        padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
        min-height: auto;
    }

    .hero-content {
        padding: 0 var(--space-md);
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .about,
    .services,
    .why-us,
    .contact {
        padding: var(--space-4xl) 0;
    }

    .about-grid {
        gap: var(--space-2xl);
    }

    .visual-card-secondary {
        display: none;
    }

    .trust-text {
        font-size: var(--text-sm);
        padding: 0 var(--space-md);
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: auto;
        padding: calc(var(--space-5xl) + 60px) 0 var(--space-4xl);
    }

    .services-grid {
        gap: var(--space-lg);
    }

    .service-card {
        padding: var(--space-xl);
    }

    .value-grid {
        gap: var(--space-lg);
    }

    .value-card {
        padding: var(--space-xl);
    }
}

/* Fix long email on small screens */
@media (max-width: 640px) {
    .info-value {
        word-break: break-all;
    }

    .footer-nav-group a {
        word-break: break-all;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .orb,
    .particle,
    .deco-circle,
    .hero-gradient-mesh,
    .hero-glow {
        animation: none !important;
    }
}
