/* ===== BDF New Print — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Primary palette — Deep Teal */
  --primary-900: #061a18;   /* near-black teal */
  --primary-800: #0a2420;   /* darkest teal */
  --primary-700: #0d3028;   /* dark teal */
  --primary-600: #0f3d38;   /* mid-dark teal */
  --primary-500: #0D3B38;   /* brand teal */
  --primary-400: #1a5c55;   /* medium teal */
  --primary-300: #2a8a7e;   /* light teal */
  --primary-200: #5bbfb5;   /* pale teal */
  --primary-100: #9addd8;   /* very pale teal */
  --primary-50:  #d0f0ed;   /* teal tint */

  /* Accent — Coral (primary CTA & highlights) */
  --accent-cyan: #FF4D4D;
  --accent-cyan-glow: rgba(255, 77, 77, 0.25);

  /* Accent — Teal-Green (secondary accent) */
  --accent-orange: #00C9A7;
  --accent-orange-glow: rgba(0, 201, 167, 0.25);

  /* Accent — Warm Amber (tertiary / stars) */
  --accent-purple: #FFB347;
  --accent-purple-glow: rgba(255, 179, 71, 0.25);

  /* Neutrals */
  --white: #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --error:   #ef4444;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Borders & Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 14px rgba(0,0,0,.1);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.2);
  --shadow-glow: 0 0 30px rgba(255, 77, 77, 0.3);

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(.4,0,.2,1);
  --transition-smooth: 0.4s cubic-bezier(.4,0,.2,1);
  --transition-slow:   0.6s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.20s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.30s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.50s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition-smooth), padding var(--transition-smooth), box-shadow var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(6, 26, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.nav-logo span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-cyan-glow) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6, 26, 24, 0.92) 0%,
    rgba(10, 36, 32, 0.8) 50%,
    rgba(26, 92, 85, 0.6) 100%
  );
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,77,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,77,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-cyan-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 0 30px var(--accent-cyan-glow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--accent-cyan-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-number .cyan { color: var(--accent-cyan); }

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 18px; }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.about-floating-card .icon-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-floating-card .card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-900);
}

.about-floating-card .card-text span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.about-content .section-label {
  text-align: left;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  transition: var(--transition-smooth);
}

.value-item:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}


/* ===== SERVICES ===== */
.services {
  padding: var(--section-padding);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  z-index: 0;
}

.services .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--primary-300));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(255,77,77,.12), rgba(26,138,126,.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-gallery {
  display: flex;
  gap: 10px;
  margin-top: -4px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}

.service-gallery::-webkit-scrollbar {
  height: 4px;
}

.service-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.service-gallery::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

.service-gallery img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}

.service-gallery img:hover {
  transform: scale(1.1);
  border-color: var(--accent-cyan);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-400);
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-cyan);
  gap: 10px;
}

.service-link svg {
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}


/* ===== PORTFOLIO ===== */
.portfolio {
  padding: var(--section-padding);
  background: var(--primary-900);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
}

.portfolio .section-title {
  color: var(--white);
}

.portfolio .section-subtitle {
  color: rgba(255,255,255,.5);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--white);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,26,24,.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  font-size: 0.82rem;
  color: var(--accent-cyan);
}

.portfolio-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px;
  height: 50px;
  background: rgba(255,77,77,.2);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.portfolio-item:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/* ===== STATS / COUNTERS ===== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,77,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,77,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,77,77,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(255,77,77,.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix { color: var(--accent-cyan); }

.stat-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: var(--primary-100);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFB347;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-300), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-900);
  font-size: 0.95rem;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3rem;
  color: var(--primary-100);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}


/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-content .section-label,
.faq-content .section-title {
  text-align: left;
}

.faq-illustration {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--gray-200);
}

.faq-item:hover {
  border-color: var(--primary-200);
}

.faq-item.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--primary-900);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
  background: var(--accent-cyan);
  transform: rotate(180deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-600);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle svg {
  fill: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
}


/* ===== QUOTE / PRICING ===== */
.quote {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.3;
}

.quote .container { position: relative; z-index: 1; }

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 16px;
}

.quote-info p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-feature .check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,77,77,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1rem;
}

.quote-feature span {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.quote-form-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-900);
  margin-bottom: 28px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-cyan-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ===== CONTACT ===== */
.contact {
  padding: var(--section-padding);
  background: var(--primary-900);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
}

.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,.5); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,77,77,.25);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, rgba(255,77,77,.15), rgba(255,179,71,.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  margin-top: 12px;
  box-shadow: 0 0 30px rgba(37,211,102,.25);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37,211,102,.35);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(255,255,255,.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.1) saturate(0.7);
}


/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-fast);
  font-size: 1rem;
}

.footer-social:hover {
  background: var(--accent-cyan);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-400);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-cyan);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--accent-cyan);
}


/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  border: none;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--accent-cyan-glow);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: var(--transition-fast);
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.35), 0 0 0 12px rgba(37,211,102,.1); }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider .testimonial-card:nth-child(3) { display: none; }
  .quote-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 26, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stat .stat-number { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .testimonials-slider .testimonial-card:nth-child(3) { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-floating-card { position: relative; bottom: 0; right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stat-number { font-size: 2.2rem !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ===== LIGHTBOX / MODAL ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,.2);
  transform: rotate(90deg);
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--primary-900);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 2px;
}

.loader-logo span { color: var(--accent-cyan); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: var(--radius-full);
  animation: loadBar 1.6s ease-in-out forwards;
}

@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: var(--radius-full);
}

.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn.active {
  background: var(--accent-cyan);
  color: var(--white);
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    justify-content: center;
  }
}


/* ============================================================
   BDF New Print — UI/UX Enhancement Layer
   ============================================================ */

/* ===== TEAL + CORAL PALETTE FINE-TUNING ===== */

/* Hero gradient overlay — teal depth */
.hero-bg::after {
  background: linear-gradient(135deg,
    rgba(6, 26, 24, 0.93) 0%,
    rgba(13, 59, 56, 0.82) 50%,
    rgba(26, 92, 85, 0.55) 100%
  ) !important;
}

/* Hero h1 gradient text — coral to teal-green */
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #FF4D4D, #00C9A7) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Nav CTA button — coral */
.nav-cta {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(255, 77, 77, 0.45) !important;
}

/* Primary button — coral */
.btn-primary {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
  box-shadow: 0 0 30px rgba(255, 77, 77, 0.3) !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(255, 77, 77, 0.4) !important;
}

/* Secondary button — teal border on dark bg */
.btn-secondary {
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

/* Service card top accent — coral to teal-green */
.service-card::before {
  background: linear-gradient(90deg, #FF4D4D, #00C9A7) !important;
}

/* Service icon background */
.service-icon {
  background: linear-gradient(135deg, rgba(255,77,77,.12), rgba(0,201,167,.12)) !important;
  border: 1px solid rgba(255,77,77,.15) !important;
}

/* About floating card icon */
.about-floating-card .icon-circle {
  background: linear-gradient(135deg, #FF4D4D, #1a5c55) !important;
}

/* Value icons */
.value-icon {
  background: linear-gradient(135deg, #FF4D4D, #2a8a7e) !important;
}

/* Section label — coral */
.section-label {
  color: #FF4D4D !important;
}

/* Section label bar */
.section-label::before {
  background: #FF4D4D !important;
}

/* Portfolio filter active — coral */
.filter-btn:hover,
.filter-btn.active {
  background: #FF4D4D !important;
  border-color: #FF4D4D !important;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3) !important;
}

/* Portfolio overlay span — teal-green */
.portfolio-overlay span {
  color: #00C9A7 !important;
}

/* Portfolio zoom icon */
.portfolio-overlay .zoom-icon {
  background: rgba(255, 77, 77, 0.2) !important;
  border-color: #FF4D4D !important;
}

/* Stats section — teal gradient */
.stats {
  background: linear-gradient(135deg, #0a2420 0%, #1a5c55 100%) !important;
}

/* Stat icon */
.stat-icon {
  background: rgba(255, 77, 77, 0.1) !important;
  border-color: rgba(255, 77, 77, 0.2) !important;
}

/* Stat suffix — coral */
.stat-number .suffix { color: #FF4D4D !important; }
.hero-stat .stat-number .cyan { color: #FF4D4D !important; }

/* Testimonial stars — warm amber */
.testimonial-stars svg { fill: #FFB347 !important; }

/* Testimonial avatar */
.testimonial-avatar {
  background: linear-gradient(135deg, #2a8a7e, #FF4D4D) !important;
}

/* Testimonial card hover border */
.testimonial-card:hover {
  border-left-color: #FF4D4D !important;
}

/* FAQ active item */
.faq-item.active {
  border-color: #FF4D4D !important;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.15) !important;
}
.faq-item.active .faq-toggle {
  background: #FF4D4D !important;
}
.faq-item.active .faq-question h4 {
  color: #FF4D4D !important;
}

/* FAQ hover */
.faq-item:hover {
  border-color: #9addd8 !important;
}

/* Quote form card gradient border */
.quote-form-card::before {
  background: linear-gradient(135deg, #FF4D4D, #00C9A7, #FFB347) !important;
}

/* Form focus ring */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #FF4D4D !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15) !important;
}

/* Form submit — coral */
.form-submit {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.3) !important;
}
.form-submit:hover {
  background: linear-gradient(135deg, #ff7070, #FF4D4D) !important;
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.4) !important;
}

/* Quote check icons */
.quote-feature .check-icon {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
}

/* Contact card hover */
.contact-card:hover {
  border-color: rgba(255, 77, 77, 0.3) !important;
}

/* Contact social links hover */
.contact-social-link:hover {
  background: rgba(255, 77, 77, 0.1) !important;
  border-color: rgba(255, 77, 77, 0.35) !important;
}

/* Footer top line */
.footer::before {
  background: linear-gradient(90deg, transparent, #FF4D4D, #00C9A7, transparent) !important;
}

/* Footer social hover */
.footer-social:hover {
  background: #FF4D4D !important;
  border-color: #FF4D4D !important;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3) !important;
}

/* Footer link hover */
.footer-col a:hover {
  color: #FF4D4D !important;
}

/* Back to top */
.back-to-top {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
  box-shadow: 0 4px 20px rgba(255, 77, 77, 0.3) !important;
}
.back-to-top:hover {
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.45) !important;
}

/* Scroll progress bar */
.scroll-progress {
  background: linear-gradient(90deg, #FF4D4D, #00C9A7) !important;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.4) !important;
}

/* Process section */
.process {
  background: linear-gradient(135deg, #061a18 0%, #0d3028 100%) !important;
}

/* Process step number */
.process-step-number {
  background: #0a2420 !important;
  border-color: #FF4D4D !important;
  color: #FF4D4D !important;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.2) !important;
}
.process-step:hover .process-step-number {
  background: #FF4D4D !important;
  color: #ffffff !important;
}

/* Process connecting line */
.process-steps::before {
  background: linear-gradient(90deg, #FF4D4D, #00C9A7) !important;
}

/* WwD list item border */
.wwd-item {
  border-left-color: #FF4D4D !important;
}
.wwd-item:hover {
  background: #d0f0ed !important;
}

/* About sub-heading bar */
.about-sub-heading::before {
  background: linear-gradient(180deg, #FF4D4D, #00C9A7) !important;
}

/* Service link hover */
.service-link:hover {
  color: #FF4D4D !important;
}

/* Nav active link underline */
.nav-links a::after {
  background: #FF4D4D !important;
}

/* Hero badge */
.hero-badge {
  background: rgba(255, 77, 77, 0.1) !important;
  border-color: rgba(255, 77, 77, 0.3) !important;
  color: #FF4D4D !important;
}
.hero-badge .dot {
  background: #FF4D4D !important;
}

/* Hero stats border */
.hero-stats {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

/* Scroll indicator mouse dot */
.scroll-indicator .mouse::after {
  background: #FF4D4D !important;
}

/* Loader bar */
.loader-bar::after {
  background: linear-gradient(90deg, #FF4D4D, #00C9A7) !important;
}

/* Loader logo span */
.loader-logo span { color: #FF4D4D !important; }

/* Lang switcher active */
.lang-btn.active {
  background: #FF4D4D !important;
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.3) !important;
}

/* Hero grid overlay — teal tint */
.hero-grid {
  background-image:
    linear-gradient(rgba(255,77,77,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,77,.03) 1px, transparent 1px) !important;
}

/* Selection color */
::selection {
  background: #FF4D4D !important;
  color: #ffffff !important;
}

/* Focus ring */
:focus-visible {
  outline-color: #FF4D4D !important;
}

/* Particle color */
.particle {
  background: #FF4D4D !important;
}

/* Portfolio section glow */
.portfolio::before {
  background: radial-gradient(circle, rgba(255,179,71,.15) 0%, transparent 70%) !important;
}

/* Services section glow */
.services::before {
  background: radial-gradient(circle, rgba(255,77,77,.08) 0%, transparent 70%) !important;
}

/* Contact section glow */
.contact::before {
  background: radial-gradient(circle, rgba(255,179,71,.12) 0%, transparent 70%) !important;
}

/* Quote section glow */
.quote::before {
  background: radial-gradient(circle, rgba(255,77,77,.08) 0%, transparent 70%) !important;
}

/* Stats grid lines */
.stats::before {
  background-image:
    linear-gradient(rgba(255,77,77,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,77,.04) 1px, transparent 1px) !important;
}

/* Testimonial quote icon */
.testimonial-quote-icon {
  color: #FF4D4D !important;
}

/* About image floating card icon */
.about-floating-card .icon-circle {
  background: linear-gradient(135deg, #FF4D4D, #2a8a7e) !important;
}

/* Nav logo span */
.nav-logo span { color: #FF4D4D !important; }

/* Service link default color */
.service-link { color: #1a5c55 !important; }

/* Primary-50 tint used in value-item hover */
.value-item:hover { background: #d0f0ed !important; }

/* FAQ button contact team */
a.btn-primary[href="#contact"] {
  background: linear-gradient(135deg, #FF4D4D, #ff7070) !important;
}


/* ===== GLOBAL POLISH ===== */

/* Smoother focus rings for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection color */
::selection {
  background: var(--accent-cyan);
  color: var(--primary-900);
}

/* ===== NAVBAR ENHANCEMENTS ===== */

/* Active nav link indicator */
.nav-links a.nav-active {
  color: var(--white) !important;
}

.nav-links a.nav-active::after {
  width: 100%;
}

/* Slightly reduce nav gap on medium screens */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
}

/* ===== HERO ENHANCEMENTS ===== */

/* Stronger hero text shadow for readability */
.hero h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* Animated gradient on hero title */
.hero h1 .gradient-text {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero stat dividers */
.hero-stats {
  position: relative;
}

.hero-stat:not(:last-child) {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,.12);
}

/* ===== ABOUT SECTION ENHANCEMENTS ===== */

/* Sticky image on scroll */
.about-image-wrapper {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* "What We Do" list — styled cards replacing inline styles */
.wwd-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wwd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-cyan);
  transition: var(--transition-fast);
}

.wwd-item:hover {
  background: var(--primary-50);
  transform: translateX(4px);
}

.wwd-item strong {
  color: var(--primary-700);
  font-size: 0.95rem;
  min-width: max-content;
  font-weight: 700;
}

.wwd-item span {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* About section headings — use CSS class instead of inline */
.about-sub-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin: 32px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-sub-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--primary-300));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== PROCESS STRIP (new section) ===== */
.process {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,77,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,77,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.process .container { position: relative; z-index: 1; }

.process .section-title { color: var(--white); text-align: center; }
.process .section-label { display: block; text-align: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-800);
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transition: var(--transition-smooth);
}

.process-step:hover .process-step-number {
  background: var(--accent-cyan);
  color: var(--primary-900);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== SERVICE CARDS ENHANCEMENTS ===== */

/* Uniform card height */
.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

/* Service icon — more polished */
.service-icon {
  background: linear-gradient(135deg, rgba(255,77,77,.15), rgba(42,82,152,.15));
  border: 1px solid rgba(255,77,77,.15);
}

/* Service card top accent — thicker and more visible */
.service-card::before {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
}

/* ===== PORTFOLIO ENHANCEMENTS ===== */

/* Masonry-like varied heights */
.portfolio-item:nth-child(1),
.portfolio-item:nth-child(4) {
  aspect-ratio: 3/2;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5) {
  aspect-ratio: 4/3;
}

.portfolio-item:nth-child(3),
.portfolio-item:nth-child(6) {
  aspect-ratio: 1/1;
}

/* ===== STATS ENHANCEMENTS ===== */

/* Dividers between stat items */
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
}

/* Stat icon — glowing ring on hover */
.stat-item:hover .stat-icon {
  background: rgba(255,77,77,.2);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transform: scale(1.05);
  transition: var(--transition-smooth);
}

/* ===== TESTIMONIALS ENHANCEMENTS ===== */

/* Stronger quote mark */
.testimonial-quote-icon {
  font-size: 5rem;
  color: var(--accent-cyan);
  opacity: 0.12;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 0.8;
}

/* Card left accent border */
.testimonial-card {
  border-left: 3px solid transparent;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
  border-left-color: var(--accent-cyan);
}

/* Avatar ring */
.testimonial-avatar {
  box-shadow: 0 0 0 3px rgba(0,212,255,.3);
}

/* ===== FAQ ENHANCEMENTS ===== */

/* FAQ question hover state */
.faq-question:hover h4 {
  color: var(--primary-400);
}

/* Active FAQ item question text */
.faq-item.active .faq-question h4 {
  color: var(--accent-cyan);
}

/* ===== QUOTE FORM ENHANCEMENTS ===== */

/* Form card — subtle gradient border */
.quote-form-card {
  background: var(--white);
  position: relative;
}

.quote-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300), var(--accent-purple));
  z-index: -1;
  opacity: 0.3;
}

/* Submit button — use brand cyan */
.form-submit {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  border-radius: var(--radius-full);
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--primary-300), var(--accent-cyan));
  box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

/* Quote features — icon upgrade */
.quote-feature .check-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
}

/* ===== CONTACT ENHANCEMENTS ===== */

/* Map container */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* Social links in contact — proper styling */
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact-social-link {
  flex: 1;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-social-link:hover {
  background: rgba(255,77,77,.1);
  border-color: rgba(0,212,255,.3);
  color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}

/* ===== FOOTER ENHANCEMENTS ===== */

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-orange), transparent);
}

/* Footer social icons — SVG-ready */
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition-smooth);
}

.footer-social:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

/* Footer column links */
.footer-col a {
  color: var(--gray-400);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

/* Footer bottom border */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 40px;
  justify-content: space-between;
  align-items: center;
}

/* ===== BACK TO TOP ENHANCEMENT ===== */
.back-to-top {
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-300));
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
  transition: var(--transition-fast);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* ===== SECTION TRANSITIONS ===== */

/* Alternating section backgrounds — subtle visual rhythm */
.about    { background: var(--white); }
.services { background: var(--gray-50); }
.portfolio { background: var(--primary-900); }
.stats    { background: linear-gradient(135deg, var(--primary-800), var(--primary-600)); }
.testimonials { background: var(--white); }
.faq      { background: var(--gray-50); }
.quote    { background: var(--white); }
.contact  { background: var(--primary-900); }

/* ===== IMPROVED SECTION LABELS ===== */
.section-label {
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

/* Center-aligned section labels don't need the left bar */
.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

/* ===== CARD HOVER GLOW EFFECT ===== */
.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(255,77,77,.1);
}

/* ===== IMPROVED MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-links {
    padding: 80px 40px 40px;
    gap: 8px;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.06);
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .lang-switcher {
    margin-top: 16px;
  }

  /* Process section mobile */
  .process-step {
    padding: 0 10px;
  }

  /* About sticky — disable on mobile */
  .about-image-wrapper {
    position: relative;
    top: 0;
  }

  /* Stat item dividers — remove on mobile */
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 32px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar, .loader, .whatsapp-float, .back-to-top, .scroll-progress { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
}
