/* 
  ================================================================
  Time2Lead — Premium Light Design Theme
  Background: #F4F4F6 | Headings: #111111 | Highlight/CTA/Icons: #6F3CFF | Footer: #111111
  Hostinger File Manager Ready: css/style.css
  ================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-body: #F4F4F6;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  
  --text-headings: #111111;
  --text-primary: #111111;
  --text-secondary: #555566;
  --text-muted: #77778c;
  
  --accent: #6F3CFF;
  --accent-hover: #5927e0;
  --accent-rgb: 111, 60, 255;
  --accent-soft: rgba(111, 60, 255, 0.08);
  --accent-gradient: linear-gradient(135deg, #6F3CFF 0%, #8C5EFF 100%);
  --accent-glow: rgba(111, 60, 255, 0.2);
  
  --border-card: rgba(17, 17, 17, 0.08);
  --border-hover: rgba(111, 60, 255, 0.35);
  
  --bg-footer: #111111;
  --text-footer: #FFFFFF;
  --text-footer-muted: #A0A0B0;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --container-max: 1280px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-body);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-headings);
  font-family: var(--font-heading);
}

/* Custom Selection */
::selection {
  background: var(--accent);
  color: #ffffff;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(111, 60, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(input:hover) .cursor-ring,
body:has(select:hover) .cursor-ring,
body:has(textarea:hover) .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--accent);
  background-color: rgba(111, 60, 255, 0.08);
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(244, 244, 246, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: #333344;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(111, 60, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111, 60, 255, 0.45);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  transition: border-color 0.2s ease;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-headings);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(244, 244, 246, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}

.mobile-overlay.active {
  right: 0;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-headings);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ── HERO SECTION ── */
#hero {
  position: relative;
  min-height: 100vh;
  padding: 8.5rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-body);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse 65% 55% at 75% 25%, rgba(111, 60, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 15% 75%, rgba(140, 94, 255, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.4); opacity: 0; }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(111, 60, 255, 0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-headings);
  margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
  color: var(--accent);
  display: inline-block;
}

.hero-description {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-description strong {
  color: var(--text-headings);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 2.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(111, 60, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(111, 60, 255, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-headings);
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

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

/* Interactive Touch Particle Canvas */
#touchParticleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Interactive 3D Globe Visual Container */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.interactive-globe-wrapper {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.globe-canvas-box {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globe3DCanvas {
  width: 420px;
  height: 420px;
  display: block;
}

.globe-glow-overlay {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 60, 255, 0.12) 0%, rgba(111, 60, 255, 0.02) 65%, transparent 75%);
  pointer-events: none;
}

/* Spinning Concentric Tech Orbits */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(111, 60, 255, 0.3);
  pointer-events: none;
}

.orbit-outer {
  width: 480px;
  height: 480px;
  animation: spinOrbit 30s linear infinite;
}

.orbit-mid {
  width: 400px;
  height: 400px;
  border-color: rgba(140, 94, 255, 0.25);
  animation: spinOrbit 22s linear infinite reverse;
}

.orbit-inner {
  width: 320px;
  height: 320px;
  border: 1px stroke rgba(111, 60, 255, 0.2);
  animation: spinOrbit 15s linear infinite;
}

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

/* Floating Tech Badges */
.tech-badge {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(111, 60, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tech-badge:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border-hover);
}

.badge-icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-headings);
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.badge-top-left {
  top: 15px;
  left: -40px;
  animation: floatSlow 7s ease-in-out infinite;
}

.badge-bottom-right {
  bottom: 20px;
  right: -30px;
  animation: floatSlow 8s ease-in-out infinite reverse;
}

.badge-mid-right {
  top: 45%;
  right: -55px;
  animation: floatSlow 6.5s ease-in-out infinite 1s;
}

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

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 1.5rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(111, 60, 255, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-headings);
  line-height: 1.1;
}

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

/* ── MARQUEE TICKER ── */
.marquee-section {
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  background: #ffffff;
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.marquee-star {
  color: var(--accent);
  font-size: 0.75rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION STYLES ── */
section {
  padding: 6.5rem 0;
  position: relative;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-headings);
  margin-bottom: 1.2rem;
}

.section-title span {
  color: var(--accent);
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ── SERVICES SECTION ── */
#services {
  background: #ffffff;
}

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

.service-card {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(111, 60, 255, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border: 1px solid rgba(111, 60, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 0.8rem;
}

.service-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.68;
}

.service-num {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(17, 17, 17, 0.04);
  line-height: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: rgba(111, 60, 255, 0.15);
}

/* ── PORTFOLIO / WORK SECTION ── */
#work {
  background: var(--bg-body);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(111, 60, 255, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(111, 60, 255, 0.1);
}

.portfolio-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.portfolio-thumb-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
  text-align: center;
}

.portfolio-emoji {
  position: absolute;
  right: 1.2rem;
  bottom: 0.5rem;
  font-size: 3.5rem;
  opacity: 0.25;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-emoji {
  transform: scale(1.2) rotate(12deg);
  opacity: 0.4;
}

.portfolio-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  width: fit-content;
}

.cat-photo { background: rgba(111, 60, 255, 0.1); color: #6F3CFF; }
.cat-wedding { background: rgba(230, 80, 160, 0.1); color: #e04090; }
.cat-ecom { background: rgba(39, 174, 96, 0.1); color: #27ae60; }
.cat-business { background: rgba(41, 128, 185, 0.1); color: #2980b9; }
.cat-education { background: rgba(142, 68, 173, 0.1); color: #8e44ad; }
.cat-industrial { background: rgba(211, 84, 0, 0.1); color: #d35400; }
.cat-health { background: rgba(22, 160, 133, 0.1); color: #16a085; }

.portfolio-domain {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.portfolio-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.portfolio-link span {
  transition: transform 0.2s ease;
}

.portfolio-card:hover .portfolio-link span {
  transform: translateX(4px);
}

.portfolio-card.is-hidden {
  display: none !important;
}

/* ── RESULTS SECTION ── */
#results {
  background: #ffffff;
}

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

.result-card {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(111, 60, 255, 0.08);
}

.result-stat {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.result-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 0.4rem;
}

.result-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── SEO RESULTS & GOOGLE SEARCH CONSOLE SECTION ── */
#seo-results {
  background: var(--bg-body);
}

.seo-tabs-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.seo-tab {
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.seo-tab:hover, .seo-tab.active {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(111, 60, 255, 0.3);
}

.gsc-dashboard-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(111, 60, 255, 0.06);
}

.gsc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 1.5rem;
}

.gsc-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gsc-site-url {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-headings);
}

.gsc-meta-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gsc-filter-pill {
  padding: 0.3rem 0.8rem;
  background: #f0f0f4;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444455;
}

.gsc-updated {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gsc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.gsc-stat-block {
  padding: 1.2rem 1.5rem;
  color: #ffffff;
}

.block-clicks { background: #1A73E8; }
.block-impressions { background: #7E3FF2; }
.block-ctr { background: #00897B; }
.block-position { background: #E65100; }

.gsc-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.gsc-stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.gsc-chart-container {
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1rem 1rem;
  margin-bottom: 1.8rem;
}

#gscSvgChart {
  width: 100%;
  height: 180px;
  display: block;
}

.gsc-chart-dates {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  padding: 0 0.5rem;
}

.gsc-highlights-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 1.5rem;
}

.gsc-h-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gsc-h-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gsc-h-item strong {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--text-headings);
}

.gsc-h-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .gsc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsc-highlights-footer {
    grid-template-columns: 1fr;
  }
}

/* ── META ADS PERFORMANCE SECTION ── */
#meta-ads-results {
  background: #ffffff;
}

.meta-tabs-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.meta-tab {
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.meta-tab:hover, .meta-tab.active {
  background: linear-gradient(135deg, #1877F2 0%, #6F3CFF 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.meta-dashboard-card {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(24, 119, 242, 0.06);
}

.meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 1.5rem;
}

.meta-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(24, 119, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1877F2;
}

.meta-campaign-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-headings);
}

.meta-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.meta-stat-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.meta-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.meta-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-headings);
}

.meta-stat-num.blue { color: #1877F2; }
.meta-stat-num.purple { color: #6F3CFF; }
.meta-stat-num.green { color: #27ae60; }
.meta-stat-num.orange { color: #d35400; }

.meta-table-container {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.meta-table th {
  background: #f8f8fb;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.meta-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--text-headings);
  font-weight: 500;
}

.meta-table tr:last-child td {
  border-bottom: none;
}

.meta-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

@media (max-width: 992px) {
  .meta-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .meta-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ABOUT SECTION ── */
#about {
  background: var(--bg-body);
}

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

.about-badge-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-text-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-text-content strong {
  color: var(--text-headings);
}

.skills-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.skill-tag {
  padding: 0.4rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-headings);
  transition: all 0.2s ease;
}

.skill-tag:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.about-card-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.about-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 24px 24px 0 0;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FAQ SECTION ── */
#faq {
  background: #ffffff;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover, .faq-item.active {
  border-color: var(--border-hover);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-headings);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── TESTIMONIALS SECTION ── */
#testimonials {
  background: var(--bg-body);
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(111, 60, 255, 0.08);
}

.stars {
  color: #f39c12;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-headings);
}

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

/* ── CONTACT SECTION ── */
#contact {
  background: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(111, 60, 255, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-meta-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-headings);
  text-decoration: none;
}

.contact-form-box {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.8rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

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

.form-group label {
  font-size: 0.82rem;
  color: var(--text-headings);
  font-weight: 600;
}

.form-input, .form-select, .form-textarea {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  color: var(--text-headings);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(111, 60, 255, 0.15);
}

.form-select option {
  background: #ffffff;
}

.btn-submit {
  width: 100%;
  padding: 1.05rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(111, 60, 255, 0.35);
  transition: all 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(111, 60, 255, 0.5);
}

/* ── FOOTER (#111111 DARK FOOTER) ── */
.footer {
  background: var(--bg-footer);
  color: var(--text-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 2.5rem;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  color: var(--text-footer-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--text-footer-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-domain {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1200px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-menu, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .globe-box {
    width: 320px;
    height: 320px;
  }

  .laptop-mockup {
    width: 300px;
  }

  .laptop-screen {
    height: 180px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-top-left, .card-bottom-right {
    display: none;
  }
}
