/* ============================================
   THE CONTENT EYE — Shared Stylesheet
   Brand: White/Light | Accent: #E85D2F Orange
   ============================================ */

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

/* ── Root Variables ── */
:root {
  --orange:       #E85D2F;
  --orange-light: #FFF0EB;
  --orange-dark:  #C94A1E;
  --dark:         #1A1A1A;
  --dark-2:       #2A2A2A;
  --gray:         #6B6B6B;
  --gray-light:   #F2F2F2;
  --white:        #FFFFFF;
  --border:       #E8E8E8;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Utility ── */
.text-orange { color: var(--orange); }
.bg-orange { background-color: var(--orange); }
.bg-dark-brand { background-color: var(--dark-2); }
.bg-light-brand { background-color: var(--gray-light); }
.bg-orange-soft { background-color: var(--orange-light); }

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }

/* ── Buttons ── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-brand:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 47, 0.35);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ── Navbar ── */
.navbar {
  padding: 18px 0;
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text-block { display: flex; flex-direction: column; line-height: 1; }

.logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.logo-main span { color: var(--orange); }

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark) !important;
  padding: 6px 16px !important;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
  background: var(--orange-light);
}

.navbar-nav .nav-item.cta-item .nav-link {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 22px !important;
  font-weight: 600;
}

.navbar-nav .nav-item.cta-item .nav-link:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,93,47,0.3);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Sections ── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* Offset scroll targets so sticky nav doesn't hide them */
[id] { scroll-margin-top: 80px; }

/* ── Hero ── */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
  /* subtle dot-grid texture */
  background-image: radial-gradient(circle, rgba(232,93,47,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-bg-element {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-light) 0%, rgba(255,240,235,0) 68%);
  pointer-events: none;
}

.hero-eyeball {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-num span { color: var(--orange); }

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-graphic {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

/* ── Services ── */
.services-section { background: var(--gray-light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.1), 0 0 0 2px var(--orange-light);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
}

.service-icon svg,
.service-icon i {
  color: var(--orange);
  font-size: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
  color: var(--white);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark-2);
  padding: 60px 0;
  border-top: 3px solid var(--orange);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-number span { color: var(--orange); }

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
}

/* ── Why Us / Features ── */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--orange-light);
}

.feature-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Process Steps ── */
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50px;
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0.4;
}

.process-step:last-child::after { display: none; }

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--orange);
}

.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--gray-light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--orange-light);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.82rem;
  color: var(--gray);
}

.stars { color: #FFC107; font-size: 0.85rem; margin-bottom: 12px; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--dark-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 350px;
  height: 350px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 250px;
  height: 250px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.05;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ── Portfolio Cards ── */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
  cursor: pointer;
  height: 280px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.05);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-light) 0%, #e8e8e8 100%);
  gap: 12px;
}

.portfolio-placeholder i {
  font-size: 2.5rem;
  color: var(--border);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1 !important;
}

.portfolio-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.portfolio-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* ── About Page ── */
.about-hero {
  padding: 100px 0 60px;
  background: var(--white);
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--orange-light);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-placeholder {
  text-align: center;
  color: var(--orange);
  padding: 40px;
}

.about-img-placeholder i {
  font-size: 5rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}

.value-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,93,47,0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--orange);
}

/* Founder card */
.founder-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  border: 4px solid rgba(255,255,255,0.1);
}

.founder-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.88rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.founder-bio {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── Contact ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,47,0.12);
  outline: none;
}

.contact-info-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,93,47,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-brand .logo-main { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.35); }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--orange);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }

.footer-bottom a { color: var(--orange); }

/* ── Page Header ── */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(to bottom, var(--orange-light) 0%, var(--gray-light) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(232,93,47,0.06);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 0.88rem; color: var(--gray); }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray); }

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: float-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  color: var(--white) !important;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse-wa 2.5s ease-out infinite;
}

@keyframes pulse-wa {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes float-in {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0);   opacity: 1; }
}

/* Tooltip on hover */
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 50px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 102px;
  right: 32px;
  z-index: 1049;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 93, 47, 0.3);
}

/* ── Marquee ── */
.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
}

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

/* ── Eye SVG animation ── */
.eye-rays {
  transform-origin: 230px 230px;
  animation: rotate-rays 28s linear infinite;
}

@keyframes rotate-rays {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.eye-iris-anim {
  transform-origin: 230px 230px;
  animation: iris-breathe 4s ease-in-out infinite;
}

@keyframes iris-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-collapse { padding: 16px 0 8px; }
  .navbar-nav .nav-link { padding: 10px 16px !important; border-radius: 8px; }
  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-visual { display: none; }
  .process-step::after { display: none; }
  .stat-divider { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-brand, .btn-outline-brand { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .founder-card { padding: 28px; }
  .footer-bottom { text-align: center; justify-content: center; }
}

/* ── Client Logos Marquee ── */
.client-logos-section { background: var(--white); }

.logos-marquee-wrapper { background: var(--white) !important; }

.logos-track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-logos 30s linear infinite;
}

.logos-track:hover { animation-play-state: paused; }

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

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  cursor: default;
  white-space: nowrap;
}

.logo-pill:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.logo-pill svg { flex-shrink: 0; border-radius: 6px; }

/* ── Find Us / Map Section ── */
.find-us-section { background: var(--gray-light); }

.find-us-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow);
}

.find-us-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.find-us-sub {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-info-value:hover { color: var(--orange); }

.find-us-social-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 28px 0 14px;
}

.find-us-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.find-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.find-social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
.find-social-btn.instagram:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.35); color: white; }

.find-social-btn.facebook {
  background: #1877f2;
  color: white;
}
.find-social-btn.facebook:hover { background: #0e5fcf; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.35); color: white; }

.find-social-btn.youtube {
  background: #ff0000;
  color: white;
}
.find-social-btn.youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,0,0.35); color: white; }

.find-social-btn.whatsapp {
  background: #25d366;
  color: white;
}
.find-social-btn.whatsapp:hover { background: #1aae52; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); color: white; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.map-wrapper iframe {
  display: block;
  height: 100%;
}

@media (max-width: 991px) {
  .map-wrapper { height: 320px; }
  .find-us-info { padding: 28px 20px; }
}

/* ── Navbar Logo Image ── */
.navbar-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

@media (max-width: 767px) {
  .navbar-logo-img { height: 40px; }
}

/* ══════════════════════════════════════════
   NEW PROCESS SECTION
══════════════════════════════════════════ */
.process-section-new {
  background: #111114;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow behind the section */
.process-section-new::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,93,47,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Inverted section label */
.section-label-inv {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,93,47,0.12);
  border: 1px solid rgba(232,93,47,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Steps wrapper (horizontal strip) ── */
.process-steps-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
}

/* ── Connecting line ── */
.process-line {
  position: absolute;
  top: 56px;           /* aligns with center of dot */
  left: calc(12.5% + 0px);
  right: calc(12.5% + 0px);
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 0;
  border-radius: 2px;
}
.process-line-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(232,93,47,0.3) 100%);
  border-radius: 2px;
  animation: line-grow 1.4s 0.6s cubic-bezier(0.22,1,0.36,1) both;
  transform-origin: left;
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Individual card ── */
.process-card-new {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px 48px;
  cursor: default;
}

/* big watermark number */
.pcn-num-bg {
  position: absolute;
  top: 60px; right: 16px;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* dot on the line */
.pcn-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(232,93,47,0.35);
  background: #111114;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.pcn-dot span {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  display: block;
  transition: transform 0.3s ease;
}
.pcn-dot-last { border-color: var(--orange); box-shadow: 0 0 0 6px rgba(232,93,47,0.12); }
.pcn-dot-last span { transform: scale(1.2); }
.process-card-new:hover .pcn-dot { border-color: var(--orange); box-shadow: 0 0 0 6px rgba(232,93,47,0.12); }
.process-card-new:hover .pcn-dot span { transform: scale(1.2); }

/* icon box */
.pcn-icon {
  width: 58px; height: 58px;
  background: rgba(232,93,47,0.1);
  border: 1px solid rgba(232,93,47,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.pcn-icon-last,
.process-card-new:hover .pcn-icon {
  background: rgba(232,93,47,0.18);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* step tag */
.pcn-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* title */
.pcn-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* desc */
.pcn-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}

/* arrow between cards */
.pcn-arrow {
  position: absolute;
  top: 14px;         /* vertically center with dot */
  right: -10px;
  font-size: 1.1rem;
  color: rgba(232,93,47,0.5);
  z-index: 3;
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .process-steps-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
  }
  .process-line { display: none; }
  .pcn-arrow { display: none; }
  .process-card-new { padding: 0 24px 40px; }
  .pcn-num-bg { font-size: 5rem; }
}

@media (max-width: 575px) {
  .process-steps-wrap { grid-template-columns: 1fr; }
  .process-section-new { padding: 70px 0 80px; }
}

/* ══════════════════════════════════════════
   CLIENT LOGOS — REAL BRAND IMAGES
══════════════════════════════════════════ */
.client-logos-section {
  background: #f8f8f8;
  padding: 80px 0 0;
  overflow: hidden;
}

/* Fade edges */
.brand-marquee-outer {
  position: relative;
  overflow: hidden;
  padding: 32px 0 40px;
  background: #fff;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.brand-marquee-outer::before,
.brand-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.brand-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.brand-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* Scrolling track */
.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: brand-scroll 22s linear infinite;
}
.brand-marquee-track:hover { animation-play-state: paused; }

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

/* Individual logo */
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 14px;
  background: #fff;
  transition: all 0.3s ease;
}
.brand-logo-item:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,93,47,0.12);
}
.brand-logo-item img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
  display: block;
}
.brand-logo-item:hover img {
  filter: grayscale(0%);
  mix-blend-mode: normal;
}

/* ══════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS
══════════════════════════════════════════ */

/* ── Large screens (≥1400px) ── */
@media (min-width: 1400px) {
  .section-pad { padding: 110px 0; }
  .hero-title { font-size: 5.2rem; }
  .section-title { font-size: 3.1rem; }
  .hero-stat-num { font-size: 2.6rem; }
  .stat-number { font-size: 3.5rem; }
  .service-card { padding: 40px 36px; }
  .process-section-new { padding: 110px 0 120px; }
  .brand-logo-item img { height: 80px; max-width: 170px; }
}

/* ── Small desktop / large tablet (992–1199px) ── */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-title { font-size: 3.8rem; }
  .service-card { padding: 30px 24px; }
  .process-card-new { padding: 0 20px 40px; }
  .pcn-title { font-size: 1.1rem; }
  .contact-form-wrap { padding: 40px 36px; }
}

/* ── Tablet additions (≤991px, extends existing block) ── */
@media (max-width: 991px) {
  .hero-title { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .hero-stat-num { font-size: 1.95rem; }
  .stats-bar { padding: 48px 0; }
  .stat-number { font-size: 2.5rem; }
  .service-card { padding: 30px 24px; }
  .testimonial-card { padding: 28px; }
  .about-img-wrap { min-height: 320px; }
  .founder-card { padding: 36px; }
  .about-hero { padding: 72px 0 44px; }
  .contact-form-wrap { padding: 36px 28px; }
  .contact-info-card { padding: 32px 28px; }
  .cta-banner { padding: 64px 0; }
  .footer { padding: 60px 0 0; }
  .page-header { padding: 64px 0 44px; }
  .brand-logo-item img { height: 56px; max-width: 130px; }
  .brand-marquee-outer { padding: 22px 0 28px; }
  .brand-marquee-outer::before,
  .brand-marquee-outer::after { width: 80px; }
  .navbar-nav .nav-item.cta-item .nav-link {
    display: inline-block;
    border-radius: 50px !important;
  }
}

/* ── Mobile (≤767px, extends existing block) ── */
@media (max-width: 767px) {
  /* Typography */
  .section-title { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* Hero */
  .hero-section { padding: 44px 0 36px; }
  .hero-label { font-size: 0.72rem; padding: 7px 14px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .hero-desc { font-size: 0.96rem; margin-bottom: 26px; }
  /* Stack hero buttons and stretch them full-width */
  .hero-actions { align-items: stretch; gap: 10px; }
  /* Hero stats: 2×2 grid on mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .hero-stat-num { font-size: 1.75rem; }
  .hero-stat-label { font-size: 0.77rem; }

  /* Stats bar */
  .stats-bar { padding: 36px 0; }
  .stat-number { font-size: 2rem; }

  /* Services */
  .service-card { padding: 26px 22px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 16px; }

  /* Process: single column on mobile */
  .process-steps-wrap { grid-template-columns: 1fr; }
  .process-section-new { padding: 56px 0 64px; }
  .process-card-new { padding: 0 20px 32px; }
  .pcn-num-bg { display: none; }

  /* Testimonials */
  .testimonial-card { padding: 26px 22px; }
  .testimonial-quote { font-size: 2.5rem; }

  /* CTA */
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* About */
  .about-hero { padding: 52px 0 36px; }
  .about-img-wrap { min-height: 260px; }
  .value-card { padding: 24px 20px; }
  .founder-name { font-size: 1.5rem; }
  .founder-avatar { width: 80px; height: 80px; font-size: 2rem; }

  /* Find Us */
  .map-wrapper { height: 260px; }
  .find-us-heading { font-size: 1.3rem; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-bottom { flex-direction: column; gap: 6px; margin-top: 40px; }

  /* Brand logos */
  .brand-logo-item img { height: 44px; max-width: 110px; }
  .brand-marquee-track { gap: 32px; }
  .brand-marquee-outer { padding: 16px 0 22px; }
  .brand-marquee-outer::before,
  .brand-marquee-outer::after { width: 50px; }

  /* Page header */
  .page-header { padding: 52px 0 36px; }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Floating buttons */
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.45rem; }
  .back-to-top { bottom: 86px; right: 24px; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .section-pad { padding: 44px 0; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2rem); }
  .hero-section { padding: 32px 0 28px; }
  .hero-label { display: none; }
  .hero-title { font-size: clamp(1.85rem, 8.5vw, 2.2rem); }
  .hero-stats { gap: 14px 10px; }
  .hero-stat-num { font-size: 1.55rem; }
  .service-card { padding: 22px 18px; }
  .process-section-new { padding: 44px 0 52px; }
  .testimonial-card { padding: 22px 18px; }
  .cta-banner { padding: 44px 0; }
  .founder-card { padding: 24px 18px; }
  .founder-avatar { width: 70px; height: 70px; font-size: 1.8rem; }
  .contact-form-wrap { padding: 22px 16px; }
  .map-wrapper { height: 220px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }
  .back-to-top { bottom: 78px; right: 20px; }
}

/* ── Touch devices ── */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover    { transform: none; box-shadow: none; }
  .testimonial-card:hover { transform: none; box-shadow: none; }
  .brand-logo-item:hover  { transform: none; box-shadow: none; }
  .feature-item:hover     { background: transparent; }
  .process-card-new:hover .pcn-dot  { border-color: rgba(232,93,47,0.35); box-shadow: none; }
  .process-card-new:hover .pcn-dot span { transform: scale(1); }
  .process-card-new:hover .pcn-icon { transform: none; background: rgba(232,93,47,0.1); border-color: rgba(232,93,47,0.2); }
  /* Adequate tap targets */
  .navbar-nav .nav-link { min-height: 44px; }
  .filter-btn { min-height: 40px; }
}
