/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #10b981;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    left: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    transform: rotate(45deg);
    top: 70%;
    right: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    top: 40%;
    right: 10%;
    animation-delay: -7s;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    opacity: 0.3;
    animation: floatText 15s ease-in-out infinite;
}

.float-1 { top: 15%; left: 15%; animation-delay: 0s; }
.float-2 { top: 25%; right: 25%; animation-delay: -3s; }
.float-3 { bottom: 30%; left: 25%; animation-delay: -6s; }
.float-4 { top: 50%; right: 15%; animation-delay: -9s; }
.float-5 { bottom: 15%; right: 35%; animation-delay: -12s; }

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.abstract-composition {
    position: relative;
    width: 100%;
    height: 400px;
    margin-left: 2rem;
}

.composition-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pixel-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridPulse 4s ease-in-out infinite;
}

.circuit-pattern {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    opacity: 0.6;
}

.data-visualization {
    position: absolute;
    bottom: 20%;
    right: 20%;
    display: flex;
    align-items: end;
    gap: 4px;
    height: 60px;
}

.data-bar {
    width: 8px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out infinite;
    animation-delay: var(--delay);
    height: var(--height);
}

.neural-network {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 200px;
    height: 150px;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 0; left: 0; }
.node-2 { top: 0; right: 0; animation-delay: 0.5s; }
.node-3 { bottom: 0; left: 30%; animation-delay: 1s; }
.node-4 { bottom: 0; right: 30%; animation-delay: 1.5s; }

.connection {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.4;
    animation: connectionFlow 3s ease-in-out infinite;
}

.conn-1 {
    top: 6px;
    left: 12px;
    width: 176px;
    height: 2px;
    transform-origin: left;
}

.conn-2 {
    top: 12px;
    left: 6px;
    width: 2px;
    height: 126px;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.conn-3 {
    top: 12px;
    right: 6px;
    width: 2px;
    height: 126px;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes floatText {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.6; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

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

@keyframes barGrow {
    0% { height: 20%; }
    50% { height: var(--height); }
    100% { height: var(--height); }
}

@keyframes connectionFlow {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 0.4; }
    100% { transform: scaleX(0); opacity: 0; }
}

/* Section Styles */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.highlight-white {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

/* Services Abstract Elements */
.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 4px; height: 4px; top: 60%; left: 80%; animation-delay: -2s; }
.particle-3 { width: 8px; height: 8px; top: 80%; left: 20%; animation-delay: -4s; }
.particle-4 { width: 5px; height: 5px; top: 30%; right: 15%; animation-delay: -6s; }
.particle-5 { width: 7px; height: 7px; bottom: 40%; right: 70%; animation-delay: -1s; }

.code-fragments {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fragment {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.15;
    font-size: 2rem;
    animation: fragmentFloat 12s ease-in-out infinite;
}

.fragment-1 { top: 15%; left: 5%; animation-delay: 0s; }
.fragment-2 { top: 70%; right: 10%; animation-delay: -3s; }
.fragment-3 { bottom: 20%; left: 15%; animation-delay: -6s; }
.fragment-4 { top: 40%; right: 25%; animation-delay: -9s; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.tech-stack li {
    background: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

/* Expertise Abstract Elements */
.expertise-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    opacity: 0.1;
    animation: hexRotate 15s linear infinite;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 15px solid var(--secondary-color);
}

.hexagon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 15px solid var(--secondary-color);
}

.hex-1 { top: 20%; left: 15%; animation-delay: 0s; }
.hex-2 { top: 60%; right: 20%; animation-delay: -5s; }
.hex-3 { bottom: 30%; left: 25%; animation-delay: -10s; }
.hex-4 { top: 40%; right: 40%; animation-delay: -7s; }

.flow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flow-svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.flow-path {
    stroke-dasharray: 5, 5;
    animation: flowAnimation 8s ease-in-out infinite;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.expertise-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -1rem;
    right: 1rem;
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.expertise-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

/* Process Abstract Elements */
.process-flows {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flow-arrow {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
    animation: arrowFlow 6s ease-in-out infinite;
}

.flow-1 { top: 25%; left: 20%; animation-delay: 0s; }
.flow-2 { top: 50%; right: 25%; animation-delay: -2s; }
.flow-3 { top: 75%; left: 30%; animation-delay: -4s; }

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0.3;
}

.timeline-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.timeline-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 10%; animation-delay: 0s; }
.dot-2 { top: 40%; right: 15%; animation-delay: -1s; }
.dot-3 { top: 60%; left: 25%; animation-delay: -2s; }
.dot-4 { top: 80%; right: 30%; animation-delay: -3s; }

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-marker {
    position: relative;
    margin-right: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* CTA Abstract Elements */
.cta-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulseRing 4s ease-out infinite;
}

.ring-1 { 
    width: 100px; 
    height: 100px; 
    top: 20%; 
    left: 20%; 
    animation-delay: 0s; 
}

.ring-2 { 
    width: 150px; 
    height: 150px; 
    top: 60%; 
    right: 25%; 
    animation-delay: -1.5s; 
}

.ring-3 { 
    width: 80px; 
    height: 80px; 
    bottom: 30%; 
    left: 70%; 
    animation-delay: -3s; 
}

.energy-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.energy-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: energyFlow 6s ease-in-out infinite;
}

.line-1 { 
    width: 200px; 
    height: 2px; 
    top: 30%; 
    left: -50px; 
    transform: rotate(30deg); 
    animation-delay: 0s; 
}

.line-2 { 
    width: 150px; 
    height: 2px; 
    top: 70%; 
    right: -40px; 
    transform: rotate(-20deg); 
    animation-delay: -2s; 
}

.line-3 { 
    width: 180px; 
    height: 2px; 
    bottom: 40%; 
    left: -60px; 
    transform: rotate(60deg); 
    animation-delay: -4s; 
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

/* Contact Abstract Elements */
.contact-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.signal-wave {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: waveExpand 5s ease-out infinite;
}

.wave-1 { 
    width: 60px; 
    height: 60px; 
    top: 25%; 
    left: 15%; 
    animation-delay: 0s; 
}

.wave-2 { 
    width: 80px; 
    height: 80px; 
    top: 65%; 
    right: 20%; 
    animation-delay: -1.5s; 
}

.wave-3 { 
    width: 100px; 
    height: 100px; 
    bottom: 20%; 
    left: 70%; 
    animation-delay: -3s; 
}

.message-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.msg-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    animation: iconFloat 8s ease-in-out infinite;
}

.icon-1 { top: 20%; right: 30%; animation-delay: 0s; }
.icon-2 { bottom: 30%; left: 20%; animation-delay: -3s; }
.icon-3 { top: 50%; right: 10%; animation-delay: -6s; }

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-attraction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Attraction Visual Styles */
.attraction-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.connection-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.node-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-rings .pulse-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-rings .pulse-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.pulse-rings .pulse-ring:nth-child(2) {
    width: 140px;
    height: 140px;
    top: -70px;
    left: -70px;
    animation-delay: 0.5s;
}

.pulse-rings .pulse-ring:nth-child(3) {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
    animation-delay: 1s;
}

.satellite-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.satellite-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: satelliteFloat 4s ease-in-out infinite;
}

.satellite-node span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.satellite-node.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.satellite-node.node-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.satellite-node.node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.satellite-node.node-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 2px;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connection-line.line-1 {
    top: 30px;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.connection-line.line-2 {
    top: 50%;
    right: 30px;
    width: 120px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0.75s;
}

.connection-line.line-3 {
    bottom: 30px;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.connection-line.line-4 {
    top: 50%;
    left: 30px;
    width: 120px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 2.25s;
}

/* Attraction Content Styles */
.attraction-content {
    text-align: left;
}

.attraction-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.attraction-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    transform: scale(1);
}

.contact-method.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.contact-method:not(.primary):hover {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.05);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.contact-method:not(.primary) .method-icon {
    background: var(--primary-color);
    color: white;
}

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

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

.method-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.method-value {
    font-weight: 600;
    font-size: 1rem;
}

.response-promise {
    display: flex;
    justify-content: center;
}

.promise-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.promise-badge svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: inherit;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

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

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

.footer-content .logo-text {
    color: var(--text-dark);
    font-size: 1.25rem;
}

.footer-slogan {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 300;
    margin-top: 0.25rem;
    opacity: 0.7;
}

.footer-copyright {
    color: var(--text-light);
}

/* Additional Animation Keyframes */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

@keyframes fragmentFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.3; }
}

@keyframes hexRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flowAnimation {
    0% { stroke-dashoffset: 10; }
    100% { stroke-dashoffset: 0; }
}

@keyframes arrowFlow {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateX(20px); opacity: 0; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes energyFlow {
    0% { transform: translateX(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

@keyframes waveExpand {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-10px); opacity: 0.6; }
}

@keyframes satelliteFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .abstract-composition {
        height: 300px;
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .shape-1, .shape-2, .shape-4 {
        display: none;
    }
    
    .floating-elements {
        opacity: 0.5;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-marker {
        margin-right: 1rem;
    }
    
    .contact-attraction {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .attraction-visual {
        height: 300px;
    }
    
    .connection-hub {
        width: 250px;
        height: 250px;
    }
    
    .attraction-content h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .abstract-composition {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}