/* Flying Pixels Theme — main.css */
/* Colors are output as CSS variables from header.php based on Customizer */

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

body {
  background: var(--fp-bg, #03050f);
  color: var(--fp-white, #e8eeff);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CANVAS ── */
#fp-starfield {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ── NAV ── */
.fp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(16px);
  background: rgba(3,5,15,0.78);
  border-bottom: 1px solid var(--fp-border);
}
.fp-nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900; font-size: 1.3rem; letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.fp-nav-links { display: flex; gap: 2rem; list-style: none; }
.fp-nav-links a {
  color: var(--fp-muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color 0.2s;
}
.fp-nav-links a:hover { color: var(--fp-cyan); }
.fp-nav-cta {
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  color: #000 !important; border: none; padding: 10px 22px;
  font-family: 'Orbitron', monospace; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  box-shadow: 0 0 30px rgba(0,245,255,0.4); transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.fp-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,245,255,0.6); }

/* ── HERO ── */
#fp-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 6vw; overflow: hidden;
}
#fp-drone-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
}
.fp-hero-content { position: relative; z-index: 2; max-width: 900px; }

.fp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--fp-border); padding: 6px 16px;
  border-radius: 100px; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fp-cyan); margin-bottom: 2rem;
  animation: fpFadeUp 1s ease both;
}
.fp-hero-badge .fp-dot {
  width: 6px; height: 6px; background: var(--fp-cyan);
  border-radius: 50%; animation: fpPulse 2s infinite;
}
@keyframes fpPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(1.6)} }

.fp-hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  animation: fpFadeUp 1s 0.2s ease both;
}
.fp-hero-title .fp-line1 { display: block; color: var(--fp-white); }
.fp-hero-title .fp-line2 {
  display: block;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta), var(--fp-gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: fpFadeUp 1s 0.2s ease both, fpShimmer 4s linear infinite;
}
@keyframes fpShimmer { 0%{background-position:0%} 100%{background-position:200%} }

.fp-hero-sub {
  margin: 1.5rem auto 2.5rem; max-width: 560px;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(232,238,255,0.65);
  animation: fpFadeUp 1s 0.4s ease both;
}
.fp-hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fpFadeUp 1s 0.6s ease both;
}
.fp-btn-primary {
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  color: #000 !important; border: none; padding: 14px 32px;
  font-family: 'Orbitron', monospace; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  box-shadow: 0 0 30px rgba(0,245,255,0.4); transition: all 0.3s; text-decoration: none;
  display: inline-block;
}
.fp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(0,245,255,0.7); }
.fp-btn-outline {
  background: transparent; color: var(--fp-white) !important;
  border: 1px solid var(--fp-border); padding: 14px 32px;
  font-family: 'Orbitron', monospace; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-block;
}
.fp-btn-outline:hover { border-color: var(--fp-cyan); color: var(--fp-cyan) !important; box-shadow: 0 0 30px rgba(0,245,255,0.4); }

.fp-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--fp-muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: fpFadeUp 1s 1s ease both;
}
.fp-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--fp-cyan), transparent);
  animation: fpScrollPulse 2s infinite;
}
@keyframes fpScrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes fpFadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

/* ── SECTION BASE ── */
.fp-section { position: relative; z-index: 2; padding: 100px 6vw; }
.fp-section--alt { background: var(--fp-bg2); }
.fp-section--alt2 { background: var(--fp-bg3); }

.fp-section-label {
  font-family: 'Orbitron', monospace; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--fp-cyan); margin-bottom: 0.8rem;
}
.fp-section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
}
.fp-section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── STATS ── */
#fp-stats {
  background: var(--fp-bg2);
  border-top: 1px solid var(--fp-border);
  border-bottom: 1px solid var(--fp-border);
  padding: 70px 6vw; position: relative; z-index: 2;
}
.fp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}
.fp-stat-card {
  text-align: center; padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03); position: relative; overflow: hidden;
  transition: all 0.3s;
}
.fp-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.fp-stat-card:hover::before { transform: scaleX(1); }
.fp-stat-card:hover { background: rgba(0,245,255,0.04); }
.fp-stat-number {
  font-family: 'Orbitron', monospace; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fp-stat-label {
  font-size: 0.8rem; font-weight: 400; color: var(--fp-muted);
  margin-top: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── ABOUT ── */
.fp-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.fp-about-visual { position: relative; height: 420px; }
#fp-about-canvas { width: 100%; height: 100%; border-radius: 4px; }
.fp-about-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,245,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.fp-about-body p {
  color: rgba(232,238,255,0.65); font-weight: 300;
  font-size: 1rem; line-height: 1.8; margin-bottom: 1rem;
}
.fp-about-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8rem; }
.fp-chip {
  border: 1px solid var(--fp-border); border-radius: 100px;
  padding: 6px 14px; font-size: 0.75rem; letter-spacing: 0.05em;
  color: var(--fp-cyan); background: rgba(0,245,255,0.05); white-space: nowrap;
}

/* ── WHY ── */
.fp-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; margin-top: 3.5rem;
  border: 1.5px solid var(--fp-border); border-radius: 8px; overflow: hidden;
}
.fp-why-card {
  padding: 2.5rem 2rem; background: rgba(255,255,255,0.03);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.fp-why-card:hover { background: rgba(0,245,255,0.05); }
.fp-why-icon { font-size: 2rem; margin-bottom: 1rem; }
.fp-why-title {
  font-family: 'Orbitron', monospace; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.06em; margin-bottom: 0.7rem;
  text-transform: uppercase; color: var(--fp-white);
}
.fp-why-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: rgba(232,238,255,0.6); }
.fp-why-card .fp-accent-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.fp-why-card:hover .fp-accent-line { transform: scaleX(1); }

/* ── PORTFOLIO ── */
.fp-portfolio-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 2.5rem; }
.fp-tab-btn {
  border: 1px solid var(--fp-border); background: transparent;
  color: var(--fp-muted); padding: 8px 18px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px; cursor: pointer; transition: all 0.3s;
  font-family: 'Orbitron', monospace; font-weight: 600;
}
.fp-tab-btn.active, .fp-tab-btn:hover {
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  color: #000 !important; border-color: transparent;
  box-shadow: 0 0 30px rgba(0,245,255,0.4);
}
.fp-portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.fp-portfolio-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--fp-bg2); cursor: pointer; border-radius: 2px; transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.06); padding: 0; text-align: left; appearance: none;
}
.fp-portfolio-card:hover { transform: scale(1.02); z-index: 5; }
.fp-portfolio-thumb {
  width: 100%; height: 100%; display: block; object-fit: cover;
  filter: saturate(0.92) brightness(0.7); transition: transform 0.4s ease, filter 0.4s ease;
}
.fp-portfolio-card:hover .fp-portfolio-thumb {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.92);
}
.fp-portfolio-play {
  position: absolute; top: 18px; right: 18px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,5,15,0.72); color: var(--fp-white);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 24px rgba(0,245,255,0.18); font-size: 1rem;
}
.fp-portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,5,15,0.96) 0%, rgba(3,5,15,0.2) 58%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  opacity: 1; transition: opacity 0.3s;
}
.fp-po-category {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fp-cyan); margin-bottom: 0.3rem;
  font-family: 'Orbitron', monospace; font-weight: 600;
}
.fp-po-title { font-family: 'Orbitron', monospace; font-size: 0.9rem; font-weight: 700; }
.fp-portfolio-empty {
  grid-column: 1 / -1; padding: 2rem; text-align: center;
  border: 1px dashed var(--fp-border); color: var(--fp-muted);
  background: rgba(255,255,255,0.02);
}
.fp-video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.fp-video-modal[hidden] { display: none; }
.fp-video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(3,5,15,0.82); backdrop-filter: blur(10px);
}
.fp-video-modal__dialog {
  position: relative; z-index: 1; width: min(100%, 960px);
  background: #060a18; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 80px rgba(0,0,0,0.45);
}
.fp-video-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(3,5,15,0.8); color: var(--fp-white);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.fp-video-modal__frame { position: relative; padding-top: 56.25%; }
.fp-video-modal__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ── TECHNOLOGY ── */
.fp-tech-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; margin-top: 3rem;
}
.fp-tech-specs { display: flex; flex-direction: column; gap: 1.5rem; }
.fp-spec-row {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.5rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--fp-border); border-radius: 4px; transition: all 0.3s;
}
.fp-spec-row:hover { border-color: rgba(0,245,255,0.3); background: rgba(0,245,255,0.04); }
.fp-spec-icon {
  width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(255,0,200,0.2));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.fp-spec-name {
  font-family: 'Orbitron', monospace; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fp-cyan); margin-bottom: 0.3rem;
}
.fp-spec-desc { font-size: 0.85rem; font-weight: 300; color: rgba(232,238,255,0.6); line-height: 1.6; }
.fp-tech-visual { position: relative; text-align: center; }
#fp-tech-canvas { width: 100%; max-width: 420px; aspect-ratio: 1; }

/* ── TESTIMONIALS ── */
.fp-testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.fp-testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--fp-border); border-radius: 6px;
  padding: 2rem; position: relative; overflow: hidden; transition: all 0.3s;
}
.fp-testi-card::before {
  content: '"'; position: absolute; top: -10px; left: 20px;
  font-size: 8rem; line-height: 1; font-family: 'Orbitron', monospace;
  color: rgba(0,245,255,0.05); pointer-events: none;
}
.fp-testi-card:hover { border-color: rgba(0,245,255,0.3); transform: translateY(-4px); }
.fp-testi-text {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(232,238,255,0.75); margin-bottom: 1.5rem; font-style: italic;
}
.fp-testi-author { display: flex; align-items: center; gap: 0.8rem; }
.fp-testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: 0.9rem; color: #000;
}
.fp-testi-name { font-weight: 600; font-size: 0.9rem; }
.fp-testi-role { font-size: 0.75rem; color: var(--fp-muted); }
.fp-client-logos {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin-top: 4rem; align-items: center;
}
.fp-client-logo {
  border: 1px solid var(--fp-border); border-radius: 4px; padding: 14px 28px;
  font-family: 'Orbitron', monospace; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fp-muted); background: rgba(255,255,255,0.03); transition: all 0.3s;
}
.fp-client-logo:hover { color: var(--fp-cyan); border-color: rgba(0,245,255,0.3); }

/* ── CONTACT ── */
.fp-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem;
}
.fp-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.fp-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.fp-info-icon {
  width: 44px; height: 44px; border-radius: 4px; flex-shrink: 0;
  background: rgba(0,245,255,0.08); border: 1px solid var(--fp-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.fp-info-label {
  font-family: 'Orbitron', monospace; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fp-cyan); margin-bottom: 0.3rem;
}
.fp-info-value { font-size: 0.95rem; color: var(--fp-white); }
.fp-info-sub { font-size: 0.8rem; color: var(--fp-muted); margin-top: 0.2rem; }

.fp-contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.fp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fp-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.fp-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.fp-form-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fp-muted); font-weight: 500;
}
.fp-form-input, .fp-form-select, .fp-form-textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--fp-border);
  border-radius: 4px; padding: 12px 16px;
  color: var(--fp-white); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; outline: none; transition: all 0.3s; width: 100%;
}
.fp-form-input:focus, .fp-form-select:focus, .fp-form-textarea:focus {
  border-color: var(--fp-cyan); box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
}
.fp-form-input::placeholder, .fp-form-textarea::placeholder { color: var(--fp-muted); }
.fp-form-select { appearance: none; cursor: pointer; }
.fp-form-select option { background: #0a0f22; }
.fp-form-textarea { resize: vertical; min-height: 120px; }
.fp-form-submit {
  background: linear-gradient(135deg, var(--fp-cyan), var(--fp-magenta));
  color: #000; border: none; padding: 16px 32px; border-radius: 4px;
  font-family: 'Orbitron', monospace; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; width: 100%;
  box-shadow: 0 0 30px rgba(0,245,255,0.3);
}
.fp-form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,245,255,0.6); }
.fp-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff !important; border: none;
  padding: 13px 24px; border-radius: 4px; font-family: 'Orbitron', monospace;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  box-shadow: 0 0 20px rgba(37,211,102,0.3); align-self: flex-start;
}
.fp-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(37,211,102,0.5); }
.fp-success-msg {
  background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3);
  color: #00ff88; padding: 14px 20px; border-radius: 4px;
  font-size: 0.9rem; margin-bottom: 1rem;
}

/* ── FOOTER ── */
.fp-footer {
  background: #03050f; border-top: 1px solid var(--fp-border);
  padding: 4rem 6vw 2rem; position: relative; z-index: 2;
}
.fp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.fp-footer-logo {
  font-family: 'Orbitron', monospace; font-weight: 900; font-size: 1.2rem;
  background: linear-gradient(90deg, var(--fp-cyan), var(--fp-magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem; display: block; text-decoration: none;
}
.fp-footer-desc {
  font-size: 0.85rem; font-weight: 300; color: var(--fp-muted);
  line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem;
}
.fp-social-links { display: flex; gap: 0.7rem; }
.fp-social-link {
  width: 38px; height: 38px; border-radius: 4px;
  border: 1px solid var(--fp-border); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; transition: all 0.3s;
  color: var(--fp-muted); font-family: sans-serif;
}
.fp-social-link:hover { border-color: var(--fp-cyan); color: var(--fp-cyan); box-shadow: 0 0 30px rgba(0,245,255,0.4); }
.fp-footer-col h4 {
  font-family: 'Orbitron', monospace; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fp-white); margin-bottom: 1.2rem;
}
.fp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.fp-footer-col a {
  color: var(--fp-muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 300; transition: color 0.2s;
}
.fp-footer-col a:hover { color: var(--fp-cyan); }
.fp-footer-bottom {
  border-top: 1px solid var(--fp-border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.fp-footer-copy { font-size: 0.75rem; color: var(--fp-muted); }
.fp-india-tag { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--fp-muted); }

/* ── SCROLL REVEAL ── */
.fp-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fp-reveal.fp-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fp-about-grid, .fp-tech-grid, .fp-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fp-footer-grid { grid-template-columns: 1fr 1fr; }
  .fp-nav-links { display: none; }
  .fp-about-visual { height: 300px; }
  .fp-video-modal { padding: 12px; }
}
@media (max-width: 600px) {
  .fp-footer-grid { grid-template-columns: 1fr; }
  .fp-form-row { grid-template-columns: 1fr; }
  .fp-stat-card { padding: 1.8rem 1.2rem; }
  .fp-section { padding: 70px 5vw; }
  .fp-portfolio-grid { grid-template-columns: 1fr; }
}
