/* ══════════════════════════════════════════
   FlowControl Systems — Main Stylesheet
   ══════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --navy: #0f2040;
  --navy-mid: #1a3060;
  --blue: #1e4db7;
  --accent: #e8860a;
  --accent-dark: #c4700a;
  --accent-light: #ffa94d;
  --light-bg: #f5f7fc;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --text-muted: #6b7a8d;
  --border: #e2e8f0;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
svg { fill: currentColor; }
svg path { fill: inherit; }

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

.section { padding: 90px 0; }

.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }

/* ─── SVG Icon size ─── */
.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════ TOP BAR ═══════════════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item .icon { width: 14px; height: 14px; fill: var(--accent); }

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}

.topbar-phone:hover { color: var(--white); }
.topbar-phone .icon { width: 14px; height: 14px; }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.topbar-social a:hover { background: var(--accent); }
.topbar-social svg { width: 13px; height: 13px; fill: var(--white); }

/* ═══════════════════ HEADER ═══════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}

.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 0;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon { width: 48px; height: 48px; }
.logo-icon svg { width: 100%; height: 100%; }

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

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}

.logo-tagline {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.header-cta { margin-left: 8px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: .8rem; border-radius: 6px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,134,10,.35);
}

.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn-ghost {
  color: var(--navy);
  border-color: transparent;
  background: transparent;
}
.btn-ghost:hover { color: var(--accent); background: rgba(232,134,10,.08); }

/* ═══════════════════ SECTION HEADER ═══════════════════ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(232,134,10,.12);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-tag-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-header-light .section-title { color: var(--white); }
.section-header-light .section-desc { color: rgba(255,255,255,.7); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,45,.92) 0%,
    rgba(15,32,64,.85) 40%,
    rgba(30,77,183,.55) 100%
  );
}

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

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(232,134,10,.3);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(232,134,10,.4);
  color: var(--accent-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .5; }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
  transition: var(--transition);
}

.hero-scroll:hover { border-color: var(--accent); }
.hero-scroll svg { width: 20px; height: 20px; fill: none; stroke: rgba(255,255,255,.7); stroke-width: 2; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Animations ─── */
.animate-fade-in  { animation: fadeIn .8s ease both; }
.animate-slide-up { animation: slideUp .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .5s; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════ BRANDS STRIP ═══════════════════ */
.brands-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.brands-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  gap: 0;
}

.marquee-track span {
  display: inline-block;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: .85rem;
  padding: 0 20px;
  letter-spacing: .5px;
}

.marquee-track .sep {
  color: var(--accent);
  padding: 0 4px;
}

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

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

/* ═══════════════════ SERVICES ═══════════════════ */
.services-section { background: var(--light-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,45,.7) 0%, transparent 60%);
}

.service-icon-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232,134,10,.4);
}

.service-icon-badge svg { width: 22px; height: 22px; fill: var(--white); }

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}

.service-list li {
  font-size: .82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about-section { background: var(--white); }

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

.about-visual { position: relative; }

.about-img-stack { position: relative; }

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge-box {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(232,134,10,.45);
  text-align: center;
}

.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-badge-num sup { font-size: 1.4rem; }

.about-badge-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
  display: block;
}

.about-content { padding-left: 20px; }

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 20px 0 16px;
  line-height: 1.7;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232,134,10,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg { width: 20px; height: 20px; fill: var(--accent); }

.about-feature strong {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: .85rem;
  margin-bottom: 0;
}

.about-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════ WHY CHOOSE US ═══════════════════ */
.why-section {
  position: relative;
  padding: 100px 0;
}

.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,.96) 0%, rgba(15,32,64,.92) 100%);
}

.why-section .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(232,134,10,.35);
}

.why-icon svg { width: 26px; height: 26px; fill: var(--white); }

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ═══════════════════ PRODUCTS ═══════════════════ */
.products-section { background: var(--light-bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-img-wrap { height: 190px; overflow: hidden; }

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-info { padding: 20px; }

.product-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-info p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.product-tags span {
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(30,77,183,.1);
  color: var(--blue);
  letter-spacing: .3px;
}

/* ═══════════════════ PROCESS ═══════════════════ */
.process-section { background: var(--white); }

.process-track {
  display: flex;
  gap: 0;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
}

.process-line {
  position: absolute;
  top: 38px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--blue));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  border-color: var(--accent);
  background: var(--accent);
}

.step-icon svg { width: 28px; height: 28px; fill: var(--navy); transition: var(--transition); }
.process-step:hover .step-icon svg { fill: var(--white); }

.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════ GALLERY ═══════════════════ */
.gallery-section { background: var(--navy); }

.gallery-section .section-tag { background: rgba(232,134,10,.2); }
.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 200px;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,20,45,.85) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 500;
  padding: 24px 14px 12px;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials-section { background: var(--light-bg); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }

.rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.rating-text { color: var(--text-muted); font-size: .88rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.testimonial-card--featured {
  background: var(--navy);
  border-color: var(--accent);
}

.testimonial-card--featured p,
.testimonial-card--featured .author-name { color: rgba(255,255,255,.9); }

.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,.55); }

.testimonial-stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; }

.testimonial-card > p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card--featured > p { color: rgba(255,255,255,.8); }

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

.author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--color, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial-card--featured .testimonial-author strong { color: var(--white); }

.testimonial-author span { font-size: .75rem; color: var(--text-muted); }

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,134,10,.92) 0%, rgba(196,112,10,.95) 100%);
}

.cta-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band-text p { color: rgba(255,255,255,.85); font-size: 1rem; }

.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-band .btn-accent {
  background: var(--white);
  color: var(--accent);
}

.cta-band .btn-accent:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { display: block; margin-bottom: 14px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(232,134,10,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--accent); }

.contact-detail strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-detail a { color: var(--blue); transition: color .2s; }
.contact-detail a:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,134,10,.12);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg { width: 36px; height: 36px; fill: var(--white); }

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p { color: var(--text-muted); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.45); }

.footer-brand > p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.footer-social a:hover svg { fill: var(--white); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li a {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col li a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

.footer-col li a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,134,10,.45);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 100;
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 2.5; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-content { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { flex-direction: column; gap: 32px; }
  .process-line { display: none; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .step-icon { min-width: 60px; margin-bottom: 0; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }

  .nav {
    position: fixed;
    top: 0; right: -280px;
    bottom: 0;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    transition: right .35s ease;
    z-index: 160;
    gap: 8px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav.open { right: 0; }

  .nav-link { font-size: 1rem; padding: 10px 16px; width: 100%; }

  .hamburger { display: flex; z-index: 170; }

  .header-cta { display: none; }

  .header-inner { gap: 16px; }

  .hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }

  .stat { padding: 16px 20px; flex: 1; min-width: 120px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .cta-band-content { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

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

  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .back-to-top { bottom: 16px; right: 16px; }
}
