/* ========================================
   OLYMPUS V3 — DARK BLUE → CYAN
   Montserrat Alternatives Bold
   ======================================== */

:root {
    --navy: #0a0e27;
    --navy-2: #0d1333;
    --navy-3: #111a42;
    --navy-4: #162050;
    --cyan: #00d4ff;
    --cyan-light: #48e8ff;
    --cyan-dark: #0096c7;
    --blue: #0077b6;
    --blue-light: #00b4d8;
    --accent: #06d6a0;
    --text: #e0f4ff;
    --text-muted: #8bacc8;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #0077b6, #00d4ff);
    --gradient-alt: linear-gradient(135deg, #00d4ff, #06d6a0);
    --gradient-glow: linear-gradient(135deg, #00b4d8, #00d4ff, #06d6a0);
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Montserrat Alternatives', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font); font-weight: 700;
    background: var(--navy); color: var(--text);
    overflow-x: hidden; line-height: 1.7;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* PARTICLES & BUBBLES */
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.bubbles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bubble {
    position: absolute; bottom: -120px; left: var(--x);
    width: var(--size); height: var(--size); border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.08), rgba(0,119,182,0.03));
    border: 1px solid rgba(0,212,255,0.06);
    animation: rise var(--dur) infinite ease-in; animation-delay: var(--delay);
}
@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; } 90% { opacity: 0.5; }
    100% { transform: translateY(-110vh) scale(0.3); opacity: 0; }
}

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
    background: rgba(10,14,39,0.95); backdrop-filter: blur(24px);
    padding: 10px 0; border-bottom: 1px solid rgba(0,212,255,0.15);
    box-shadow: 0 4px 30px rgba(0,212,255,0.08);
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo-img {
    height: 48px; width: auto; transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.3));
}
.logo-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(0,212,255,0.5)); }
.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-link {
    color: var(--text-muted); font-weight: 700; font-size: 0.85rem;
    padding: 8px 14px; border-radius: 8px; transition: all 0.3s ease; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(0,212,255,0.1); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px; background: var(--gradient-main); border-radius: 2px;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ========================================
   HERO — BRUTAL & DETAILED
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    animation: slowZoom 30s infinite alternate ease-in-out;
    filter: brightness(0.6);
}
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(10,14,39,0.4) 0%,
        rgba(10,14,39,0.6) 40%,
        rgba(10,14,39,0.85) 75%,
        rgba(10,14,39,1) 100%);
}
.hero-content { text-align: center; position: relative; z-index: 1; max-width: 950px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 28px; background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3); border-radius: 50px;
    font-size: 0.85rem; font-weight: 800; color: var(--cyan-light);
    margin-bottom: 32px; backdrop-filter: blur(10px);
    letter-spacing: 2px;
}
.badge-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--cyan); animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
}

.hero-title {
    font-size: clamp(3rem, 9vw, 6rem); font-weight: 900;
    line-height: 1.05; margin-bottom: 28px; letter-spacing: -1px;
}
.hero-title .line { display: block; }
.hero-title .line-small {
    font-size: 0.5em; letter-spacing: 8px; color: var(--text-muted);
    margin-top: 8px;
}
.glow-text {
    background: var(--gradient-glow); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    animation: glow-pulse 3s infinite;
}
@keyframes glow-pulse {
    0%,100% { filter: drop-shadow(0 0 12px rgba(0,212,255,0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(0,212,255,0.9)); }
}

.hero-subtitle {
    font-size: 1.15rem; color: var(--text-muted); max-width: 640px;
    margin: 0 auto 40px; font-weight: 400; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 12px; font-family: var(--font);
    font-weight: 800; font-size: 1rem; cursor: pointer; border: none;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient-main); color: var(--white); box-shadow: 0 10px 40px rgba(0,212,255,0.3); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,212,255,0.5); }
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(0,212,255,0.4); }
.btn-outline:hover { background: rgba(0,212,255,0.1); border-color: var(--cyan); transform: translateY(-4px); }
.btn-full { width: 100%; justify-content: center; }

/* HERO STATS */
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-icon-wrap {
    width: 52px; height: 52px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
    border-radius: 14px;
}
.stat-icon-anim { font-size: 1.2rem; color: var(--cyan); animation: float-icon 3s infinite ease-in-out; }
@keyframes float-icon { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.stat-data { margin-bottom: 4px; }
.stat-number { font-size: 2.2rem; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-plus { font-size: 1.8rem; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 50px; background: rgba(0,212,255,0.2); }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; font-weight: 700;
    animation: bounce 2s infinite;
}
.mouse { width: 24px; height: 38px; border: 2px solid var(--text-muted); border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--cyan); border-radius: 2px; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); animation: scroll-wheel 2s infinite; }
@keyframes scroll-wheel { 0% { opacity:1; transform:translateX(-50%) translateY(0); } 100% { opacity:0; transform:translateX(-50%) translateY(14px); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(-10px); } }

/* ========================================
   CLIENTS MARQUEE
   ======================================== */
.clients-marquee {
    padding: 40px 0; background: var(--navy-2);
    border-top: 1px solid rgba(0,212,255,0.06);
    border-bottom: 1px solid rgba(0,212,255,0.06);
    overflow: hidden; position: relative; z-index: 1;
}
.marquee-title {
    text-align: center; font-size: 0.8rem; font-weight: 800;
    color: var(--text-muted); letter-spacing: 3px; margin-bottom: 24px;
}
.marquee-track { overflow: hidden; position: relative; }
.marquee-content {
    display: flex; gap: 48px; align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo {
    height: 40px; width: auto; opacity: 0.4;
    filter: grayscale(1) brightness(2); transition: all 0.3s ease;
}
.client-logo:hover { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1.15); }

/* ========================================
   SECTIONS COMMON
   ======================================== */
section { padding: 120px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.18); border-radius: 50px;
    font-size: 0.82rem; font-weight: 800; color: var(--cyan-light);
    margin-bottom: 20px; letter-spacing: 1px;
}
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; font-weight: 400; }

/* ========================================
   ABOUT
   ======================================== */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.about-card {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 36px; text-align: center;
    transition: all 0.4s ease; position: relative;
}
.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-main); transform: scaleX(0); transition: transform 0.4s ease;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,212,255,0.1); }

.about-card-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-main); border-radius: 16px;
    font-size: 1.5rem; color: var(--white); position: relative;
}
.icon-pulse-ring {
    position: absolute; inset: -8px; border-radius: 20px;
    border: 2px solid rgba(0,212,255,0.3);
    animation: ring-pulse 2.5s infinite;
}
@keyframes ring-pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0; } }
.icon-bounce { animation: icon-bounce 2s infinite ease-in-out; }
@keyframes icon-bounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.about-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px; }
.about-card p { color: var(--text-muted); font-weight: 400; font-size: 0.92rem; }

/* ========================================
   SERVICES — FIXED ICONS
   ======================================== */
.services { background: var(--navy-2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.service-card {
    background: var(--navy); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 36px; transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-main); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-12px); border-color: rgba(0,212,255,0.25); box-shadow: 0 40px 80px rgba(0,212,255,0.12); }
.service-card.featured { background: var(--navy-3); border-color: rgba(0,212,255,0.2); box-shadow: 0 20px 60px rgba(0,212,255,0.12); }
.featured-badge {
    position: absolute; top: 16px; right: 16px; padding: 6px 14px;
    background: var(--gradient-main); border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; color: var(--white);
}

/* SERVICE ICONS — CLEAN ANIMATED */
.service-icon-wrap {
    width: 72px; height: 72px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-main); border-radius: 18px;
    position: relative; transition: all 0.4s ease;
}
.service-icon { font-size: 1.6rem; color: var(--white); position: relative; z-index: 1; transition: transform 0.4s ease; }
.service-card:hover .service-icon { transform: scale(1.2) rotateY(360deg); }

.icon-orbit {
    position: absolute; inset: -12px; border-radius: 24px;
    border: 2px dashed rgba(0,212,255,0.15);
    animation: orbit-spin 12s linear infinite;
}
.icon-orbit span {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--cyan); opacity: 0.4;
}
.icon-orbit span:nth-child(1) { top: -3px; left: 50%; }
.icon-orbit span:nth-child(2) { bottom: -3px; right: 20%; }
.icon-orbit span:nth-child(3) { top: 40%; left: -3px; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.service-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px; }
.service-card > p { color: var(--text-muted); font-weight: 400; font-size: 0.93rem; margin-bottom: 18px; }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 0.88rem; color: var(--text-muted); font-weight: 600; }
.service-features li i { color: var(--cyan); font-size: 0.85rem; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan-light); font-weight: 800; font-size: 0.88rem; transition: all 0.3s ease; letter-spacing: 1px; }
.service-link:hover { gap: 14px; color: var(--white); }

/* ========================================
   PORTFOLIO — REAL SITES
   ======================================== */
.portfolio { background: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 32px; }
.portfolio-card {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.5s ease;
}
.portfolio-card:hover { transform: translateY(-10px); border-color: rgba(0,212,255,0.25); box-shadow: 0 30px 60px rgba(0,212,255,0.15); }
.portfolio-thumb {
    height: 220px; overflow: hidden; position: relative;
    background: var(--navy-3);
}
.portfolio-thumb img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.08); }
.portfolio-badge {
    position: absolute; top: 16px; right: 16px; padding: 6px 14px;
    background: rgba(10,14,39,0.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(0,212,255,0.3); border-radius: 8px;
    font-size: 0.75rem; font-weight: 800; color: var(--cyan-light);
}
.portfolio-info { padding: 28px; }
.portfolio-cat {
    display: inline-block; padding: 4px 12px; background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2); border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; color: var(--cyan);
    margin-bottom: 12px;
}
.portfolio-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.portfolio-info p { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; margin-bottom: 16px; }
.portfolio-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--cyan-light); font-weight: 800; font-size: 0.88rem;
    transition: all 0.3s ease; letter-spacing: 1px;
}
.portfolio-link:hover { gap: 14px; color: var(--white); }

/* ========================================
   PROCESS — BRUTAL GRID
   ======================================== */
.process { background: var(--navy-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
    background: var(--navy); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 36px; text-align: center;
    position: relative; transition: all 0.4s ease;
}
.process-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,212,255,0.12); }
.process-number {
    font-size: 3.5rem; font-weight: 900;
    background: linear-gradient(180deg, rgba(0,212,255,0.15), transparent);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 16px;
}
.process-icon-wrap {
    width: 64px; height: 64px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-main); border-radius: 16px;
    transition: transform 0.4s ease;
}
.process-card:hover .process-icon-wrap { transform: rotateY(180deg); }
.process-icon { font-size: 1.5rem; color: var(--white); }
.process-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; letter-spacing: 1px; }
.process-card p { color: var(--text-muted); font-size: 0.88rem; font-weight: 400; }
.process-connector {
    display: none; /* shown on larger screens */
    position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
    color: rgba(0,212,255,0.3); font-size: 1.2rem; z-index: 2;
}
@media (min-width: 1024px) { .process-connector { display: block; } }

/* ========================================
   TESTIMONIALS — GRID LAYOUT
   ======================================== */
.testimonials { background: var(--navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.testimonial-card {
    background: var(--navy-2); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 36px;
    transition: all 0.4s ease;
}
.testimonial-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,212,255,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #fbbf24; font-size: 1rem; }
.testimonial-card > p { font-size: 0.95rem; font-weight: 400; font-style: italic; color: var(--text); margin-bottom: 28px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--white); flex-shrink: 0;
}
.author-info h4 { font-size: 1rem; font-weight: 800; }
.author-info span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.author-info a { color: var(--cyan-light); transition: color 0.3s; }
.author-info a:hover { color: var(--white); }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--navy-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
    display: flex; gap: 16px; padding: 24px;
    background: var(--navy); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius); margin-bottom: 16px; transition: all 0.3s ease;
}
.contact-info-card:hover { border-color: rgba(0,212,255,0.25); transform: translateX(8px); }
.contact-icon {
    width: 48px; height: 48px; min-width: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-main); border-radius: 12px; font-size: 1.1rem; color: var(--white);
}
.contact-info-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; }
.contact-info-card a { color: var(--cyan-light); transition: color 0.3s; }
.contact-info-card a:hover { color: var(--white); }
.contact-name { color: var(--cyan); font-weight: 700; }

/* 24/7 ANIMATED */
.work-time-247 {
    display: flex; align-items: center; gap: 10px; margin-top: 4px;
}
.time-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #06d6a0;
    animation: time-pulse 1.5s infinite;
}
@keyframes time-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(6,214,160,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(6,214,160,0); }
}
.time-text { font-size: 0.85rem; font-weight: 800; color: var(--accent); letter-spacing: 1px; animation: time-glow 2s infinite; }
@keyframes time-glow {
    0%,100% { text-shadow: 0 0 4px rgba(6,214,160,0.3); }
    50% { text-shadow: 0 0 12px rgba(6,214,160,0.8); }
}
.time-sub { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; margin-top: 4px; }

.contact-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
    border-radius: 12px; color: var(--cyan-light); font-size: 1.2rem; transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--gradient-main); color: var(--white); border-color: transparent;
    transform: translateY(-5px) rotate(5deg); box-shadow: 0 10px 30px rgba(0,212,255,0.3);
}

.contact-form {
    background: var(--navy); border: 1px solid rgba(0,212,255,0.08);
    border-radius: var(--radius-lg); padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 800; margin-bottom: 8px; color: var(--text); letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: var(--navy-2);
    border: 2px solid rgba(0,212,255,0.12); border-radius: 12px;
    color: var(--white); font-family: var(--font); font-weight: 600;
    font-size: 0.95rem; transition: all 0.3s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}

/* ========================================
   FOOTER — MEGA ANIMATED
   ======================================== */
.footer { background: var(--navy-2); position: relative; overflow: hidden; padding: 100px 0 32px; z-index: 1; }
.footer-waves { position: absolute; top: -1px; left: 0; right: 0; z-index: 0; }
.footer-waves svg { display: block; width: 100%; height: 120px; }
.wave { fill: var(--navy-2); }
.wave-1 { animation: wave-move 8s infinite ease-in-out; opacity: 0.3; }
.wave-2 { animation: wave-move 10s infinite ease-in-out reverse; opacity: 0.2; }
.wave-3 { animation: wave-move 12s infinite ease-in-out; opacity: 0.15; }
@keyframes wave-move { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-30px); } }

.footer-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.f-particle {
    position: absolute; left: var(--x); top: var(--y);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cyan); opacity: 0.15;
    animation: float-particle var(--dur) infinite ease-in-out;
}
@keyframes float-particle {
    0%,100% { transform: translate(0,0) scale(1); opacity: 0.15; }
    25% { transform: translate(20px,-30px) scale(1.5); opacity: 0.4; }
    50% { transform: translate(-15px,-50px) scale(1); opacity: 0.2; }
    75% { transform: translate(25px,-20px) scale(1.3); opacity: 0.35; }
}

.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; margin-top: 16px; line-height: 1.8; }
.footer-logo-img {
    height: 56px; width: auto; margin-bottom: 4px;
    filter: drop-shadow(0 0 12px rgba(0,212,255,0.3));
    animation: footer-logo-glow 3s infinite;
}
@keyframes footer-logo-glow {
    0%,100% { filter: drop-shadow(0 0 8px rgba(0,212,255,0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(0,212,255,0.6)); }
}
.footer-social-anim { display: flex; gap: 12px; margin-top: 20px; }
.f-social {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
    border-radius: 10px; color: var(--cyan-light); font-size: 1.1rem; transition: all 0.4s ease;
}
.f-social:hover {
    background: var(--gradient-main); color: var(--white); border-color: transparent;
    transform: translateY(-6px) scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0,212,255,0.4);
}
.footer-col h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 20px; color: var(--white); display: flex; align-items: center; gap: 8px; letter-spacing: 1px; }
.footer-col-icon { color: var(--cyan); font-size: 0.85rem; animation: icon-spin 4s infinite linear; }
@keyframes icon-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; transition: all 0.3s ease; }
.footer-col ul li a:hover { color: var(--cyan-light); padding-left: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.footer-contact li i { color: var(--cyan); width: 16px; }

/* NEWSLETTER — MEGA ANIMATED */
.footer-newsletter {
    background: var(--navy-3); border: 1px solid rgba(0,212,255,0.15);
    border-radius: var(--radius-lg); padding: 48px; text-align: center;
    margin-bottom: 40px; position: relative; overflow: hidden;
}
.footer-newsletter::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.03), rgba(6,214,160,0.03));
    animation: shimmer 4s infinite;
}
@keyframes shimmer { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.footer-newsletter::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0,212,255,0.03), transparent, rgba(0,212,255,0.03), transparent);
    animation: rotate-bg 10s linear infinite;
}
@keyframes rotate-bg { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.newsletter-icon { position: relative; z-index: 1; margin-bottom: 16px; font-size: 2rem; color: var(--cyan); }
.icon-wiggle { animation: wiggle 2s infinite ease-in-out; }
@keyframes wiggle { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.footer-newsletter h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; position: relative; z-index: 1; }
.footer-newsletter > p { color: var(--text-muted); font-size: 0.92rem; font-weight: 400; margin-bottom: 24px; position: relative; z-index: 1; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter-form input {
    flex: 1; padding: 14px 18px; background: var(--navy);
    border: 2px solid rgba(0,212,255,0.15); border-radius: 12px;
    color: var(--white); font-family: var(--font); font-weight: 600; font-size: 0.95rem;
    outline: none; transition: all 0.3s ease;
}
.newsletter-form input:focus { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,212,255,0.15); }

.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(0,212,255,0.1); }

/* Footer City SEO Links */
.footer-cities {
    padding: 32px; background: var(--navy-3); border: 1px solid rgba(0,212,255,0.1);
    border-radius: var(--radius-lg); margin-bottom: 32px;
}
.footer-cities h4 {
    font-size: 0.95rem; font-weight: 800; margin-bottom: 16px; color: var(--white);
    display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
}
.footer-city-links {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-city-links a {
    padding: 6px 14px; background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.1); border-radius: 8px;
    color: var(--text-muted); font-size: 0.8rem; font-weight: 600;
    transition: all 0.3s ease;
}
.footer-city-links a:hover {
    background: var(--gradient-main); color: var(--white); border-color: transparent; transform: translateY(-2px);
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; }

/* ANIMATIONS */
.animate-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(10,14,39,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 4px;
        transform: translateY(-120%); transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(0,212,255,0.15);
    }
    .nav-links.active { transform: translateY(0); }
    .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
::selection { background: var(--cyan-dark); color: var(--white); }
