/* ============================================
   CV CRAFT STUDIO - ADVANCED PREMIUM STYLING
   ============================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Primary Colors */
  --primary: #f5a524;
  --primary-strong: #f4bf5b;
  --primary-glow: rgba(245, 165, 36, 0.4);

  /* Accent Colors */
  --accent: #4be0d0;
  --accent-glow: rgba(75, 224, 208, 0.3);
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #ec4899;

  /* Neutral Colors */
  --text-primary: #f7f5f2;
  --text-muted: rgba(247, 245, 242, 0.65);
  --text-subtle: rgba(247, 245, 242, 0.4);

  /* Background Colors */
  --bg-dark: #03040a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(245, 165, 36, 0.3);

  /* Effects */
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(245, 165, 36, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-main: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  color: var(--text-primary);
  background-color: var(--bg-dark);
  font-family: var(--font-main);
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

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

  100% {
    transform: translateX(100%);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes border-dance {

  0%,
  100% {
    border-color: var(--primary);
  }

  25% {
    border-color: var(--accent);
  }

  50% {
    border-color: var(--accent-secondary);
  }

  75% {
    border-color: var(--accent-tertiary);
  }
}

@keyframes rotate-gradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text-muted);
  background: linear-gradient(135deg, #03040a 0%, #0a0d1a 25%, #0d0a15 50%, #070a12 75%, #03040a 100%);
  background-size: 400% 400%;
  animation: bg-gradient-shift 15s ease infinite;
  position: relative;
}

@keyframes bg-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Universal Animated Background - Glowing Orbs */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Top-left purple glow */
    radial-gradient(ellipse 80% 60% at 10% -20%, rgba(139, 92, 246, 0.25), transparent 50%),
    /* Top-right orange/gold glow */
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(245, 165, 36, 0.3), transparent 45%),
    /* Center-left teal glow */
    radial-gradient(ellipse 60% 50% at -10% 50%, rgba(75, 224, 208, 0.2), transparent 50%),
    /* Bottom-right pink glow */
    radial-gradient(ellipse 50% 50% at 100% 90%, rgba(236, 72, 153, 0.15), transparent 45%),
    /* Bottom-left blue glow */
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(59, 130, 246, 0.15), transparent 40%),
    /* Center subtle glow */
    radial-gradient(ellipse 80% 40% at 50% 50%, rgba(245, 165, 36, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: orb-pulse 10s ease-in-out infinite alternate;
}

@keyframes orb-pulse {
  0% {
    opacity: 0.7;
    filter: blur(0px);
  }

  50% {
    opacity: 1;
    filter: blur(2px);
  }

  100% {
    opacity: 0.8;
    filter: blur(0px);
  }
}

/* Universal Grid Pattern - The Elegant Grid */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(245, 165, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 165, 36, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 80px);
  }
}

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

a:hover {
  color: var(--primary-strong);
}

/* ===== SITE SHELL ===== */
.site-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ===== HEADER STYLES ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 100;

  /* Glassmorphism effect */
  background: rgba(3, 4, 10, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);

  /* Subtle bottom glow */
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.05),
    0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
  transition: all var(--transition-smooth);
}

.site-brand:hover {
  transform: scale(1.02);
}

.site-brand span {
  /* Gold shining text effect */
  background: linear-gradient(90deg,
      #f5a524 0%,
      #ffd700 20%,
      #fff8dc 40%,
      #ffd700 60%,
      #f5a524 80%,
      #f4bf5b 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(245, 165, 36, 0.3);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

@keyframes gold-shine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.site-logo {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(245, 165, 36, 0.3);
  transition: all var(--transition-smooth);
}

.site-brand:hover .site-logo {
  box-shadow: 0 6px 25px rgba(245, 165, 36, 0.5);
  transform: rotate(5deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid transparent;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: inherit;
}

.nav-link:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link.active {
  color: var(--text-primary);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.15), rgba(245, 165, 36, 0.05));
  box-shadow:
    0 0 20px var(--primary-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 8rem clamp(1.5rem, 5vw, 5rem) 5rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out;
}

.hero__eyebrow {
  display: inline-block;
  color: var(--primary-strong);
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.5rem;

  /* Pill styling with glow */
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.12), rgba(245, 165, 36, 0.04));
  border: 1px solid rgba(245, 165, 36, 0.25);
  border-radius: 50px;

  position: relative;
  overflow: hidden;
}

.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
  max-width: 900px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

/* Hero Badges - Animated feature highlights */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-badge--free {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
  border: 2px solid rgba(37, 211, 102, 0.5);
  color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.hero-badge--lifetime {
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.2), rgba(245, 165, 36, 0.1));
  border: 2px solid rgba(245, 165, 36, 0.5);
  color: #f5a524;
  box-shadow: 0 0 20px rgba(245, 165, 36, 0.3);
}

/* Text Rotator - Animated word cycling */
.text-rotator {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

.text-rotator__word {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  opacity: 0;
  transform: translateY(100%);
  background: linear-gradient(90deg, #f5a524 0%, #ffd700 25%, #fff8dc 50%, #ffd700 75%, #f5a524 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3s ease-in-out infinite;
}

.text-rotator__word.active {
  opacity: 1;
  transform: translateY(0);
  animation: word-enter 0.5s ease-out, gold-shine 3s ease-in-out infinite;
}

.text-rotator__word.exit {
  animation: word-exit 0.5s ease-in forwards;
}

@keyframes word-enter {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

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

@keyframes word-exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* Hero Subtitle */
.hero__subtitle {
  max-width: 680px;
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Feature Highlights */
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-smooth);
}

.feature-highlight:hover {
  border-color: rgba(245, 165, 36, 0.5);
  box-shadow: 0 0 25px rgba(245, 165, 36, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(245, 165, 36, 0.4));
}

.feature-highlight strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-highlight small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Gradient highlight for keywords */
.hero h1 strong,
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero>p {
  max-width: 680px;
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  animation: fade-in-up 1s ease-out 0.5s both;
}

/* ===== BUTTON STYLES ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 60px;
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);

  /* Primary button gradient */
  background: linear-gradient(135deg, var(--primary), #e8940f);
  color: var(--bg-dark);
  box-shadow:
    0 4px 20px var(--primary-glow),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px var(--primary-glow),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Ghost button variant */
.button--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--primary-strong);
  box-shadow: 0 0 20px transparent;

  /* Gradient border effect simulation */
  position: relative;
}

.button--ghost::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  animation: gradient-shift 3s ease infinite;
}

.button--ghost:hover {
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.1), rgba(75, 224, 208, 0.05));
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(245, 165, 36, 0.15);
  color: var(--text-primary);
}

.button--ghost:hover::after {
  opacity: 1;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 4vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
  animation: fade-in-up 0.8s ease-out;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

/* Decorative underline */
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 20px var(--primary-glow);
}

.section-title p {
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-grid {
  display: grid;
  gap: 2rem;
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== CARD STYLES ===== */
.highlight-card,
.service-card,
.package-card,
.case-card,
.timeline-card,
.contact-panel {
  position: relative;
  border-radius: 24px;
  padding: 2rem;
  color: var(--text-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Optimized background - no blur for performance */
  background: linear-gradient(135deg,
      rgba(20, 25, 40, 0.9),
      rgba(10, 15, 25, 0.95));
  border: 1px solid var(--border-subtle);

  /* Subtle shadow */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  overflow: hidden;
}

/* Shining gold border outline on hover */
.highlight-card::before,
.service-card::before,
.package-card::before,
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(90deg,
      #f5a524 0%,
      #ffd700 25%,
      #fff8dc 50%,
      #ffd700 75%,
      #f5a524 100%);
  background-size: 200% 100%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

/* Card hover effects - Darker card + shining gold outline */
.highlight-card:hover,
.service-card:hover,
.package-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.3));
  box-shadow:
    0 0 25px rgba(245, 165, 36, 0.3),
    0 15px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card:hover::before,
.service-card:hover::before,
.package-card:hover::before,
.case-card:hover::before {
  opacity: 1;
  animation: gold-shine-border 2s ease-in-out infinite;
}

@keyframes gold-shine-border {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Card content */
.highlight-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-card h3,
.service-card h3,
.package-card h3,
.case-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Icon placeholder effect for h3 */
.highlight-card h3::before,
.service-card h3::before,
.package-card h3::before {
  content: '◆';
  font-size: 0.7rem;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-card p,
.service-card p,
.package-card p,
.case-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.highlight-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* List styling in cards */
.service-card ul,
.package-card ul,
.case-card ul {
  padding-left: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.service-card li,
.package-card li,
.case-card li {
  color: var(--text-muted);
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.service-card li:last-child,
.package-card li:last-child,
.case-card li:last-child {
  border-bottom: none;
}

.service-card li::before,
.package-card li::before,
.case-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  transition: transform var(--transition-fast);
}

.service-card li:hover::before,
.package-card li:hover::before,
.case-card li:hover::before {
  transform: translateX(4px);
}

.service-card li:hover,
.package-card li:hover,
.case-card li:hover {
  color: var(--text-primary);
}

/* Package pricing */
.package-card strong {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--primary-strong);
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.15), rgba(245, 165, 36, 0.05));
  border-radius: 8px;
  margin-top: 1rem;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

/* Connection line */
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), var(--accent-secondary));
  border-radius: 1px;
  opacity: 0.4;
}

.timeline-card {
  position: relative;
  padding-left: 80px;
}

.timeline-card h4 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.timeline-card span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--primary-strong);
  font-weight: 600;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.15), transparent);
  border: 1px solid rgba(245, 165, 36, 0.2);
  border-radius: 20px;
}

.timeline-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Timeline dot */
.timeline-card::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
  z-index: 1;
}

.timeline-card:hover::before {
  transform: scale(1.3);
  background: var(--primary);
}

/* ===== CONTACT PANEL ===== */
.contact-panel {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
}

.contact-panel h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.contact-panel form {
  display: grid;
  gap: 1.5rem;
}

.contact-panel label {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Form inputs */
input,
textarea,
select {
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 3px rgba(245, 165, 36, 0.1),
    0 0 20px var(--primary-glow);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-subtle);
}

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

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f5a524' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

/* Contact panel info */
.contact-panel p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.contact-panel a {
  color: var(--accent);
  position: relative;
  font-weight: 500;
}

.contact-panel a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.contact-panel a:hover::after {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: auto;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  background: linear-gradient(to bottom, rgba(245, 165, 36, 0.03), rgba(3, 4, 10, 0.95));
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: all var(--transition-smooth);
}

.footer-logo:hover {
  transform: translateX(5px);
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(245, 165, 36, 0.3);
}

.footer-logo span {
  /* Gold shining text effect */
  background: linear-gradient(90deg,
      #f5a524 0%,
      #ffd700 20%,
      #fff8dc 40%,
      #ffd700 60%,
      #f5a524 80%,
      #f4bf5b 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 1.2rem;
  transition: all var(--transition-smooth);
}

.social-icon:hover {
  background: rgba(245, 165, 36, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(245, 165, 36, 0.2);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

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

.footer-links li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--primary-strong);
  padding-left: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: all var(--transition-smooth);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.footer-promises {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .section-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .site-brand {
    font-size: 1rem;
  }

  .nav-links {
    justify-content: center;
    gap: 0.4rem;
  }

  .nav-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.7rem;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero>p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .button {
    padding: 0.9rem 1.8rem;
    font-size: 0.8rem;
  }

  .section-title {
    text-align: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-card {
    padding-left: 55px;
  }

  .timeline-card::before {
    left: 12px;
    width: 14px;
    height: 14px;
  }

  .highlight-card,
  .service-card,
  .package-card,
  .case-card,
  .timeline-card,
  .contact-panel {
    padding: 1.5rem;
  }
}

/* ===== SELECTION STYLES ===== */
::selection {
  background: var(--primary);
  color: var(--bg-dark);
}

::-moz-selection {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-strong);
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}