/* ═══════════════════════════════════════════════════════
   DORINSKÝ — Ploty a oplotenia
   style.css
═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --primary:    #C45327;
  --secondary:  #8C3A19;
  --accent:     #E8A020;
  --dark:       #1A1A1A;
  --light:      #F5F1EC;
  --text:       #1E1E1E;
  --text-light: #7A7A7A;
  --white:      #FFFFFF;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* must be on html, not just body */
}
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  min-width: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-fence {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.loader-fence span {
  display: block;
  width: 6px;
  background: var(--accent);
  border-radius: 3px;
  animation: fenceLoad 0.9s ease-in-out infinite alternate;
}
.loader-fence span:nth-child(1) { height: 28px; animation-delay: 0s; }
.loader-fence span:nth-child(2) { height: 40px; animation-delay: 0.12s; }
.loader-fence span:nth-child(3) { height: 52px; animation-delay: 0.24s; }
.loader-fence span:nth-child(4) { height: 40px; animation-delay: 0.36s; }
.loader-fence span:nth-child(5) { height: 28px; animation-delay: 0.48s; }
.loader-inner p {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.6;
}
@keyframes fenceLoad {
  from { transform: scaleY(0.4); opacity: 0.4; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,83,39,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.35);
  color: white;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 44px; font-size: 1.05rem; }

/* ── SECTION COMMONS ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.section-header.light h2,
.section-header.light p { color: white; }
.section-label {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(232,160,32,0.12);
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
nav.nav-scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-right: auto;
}
.logo-icon {
  width: 26px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}
/* WhatsApp icon inside buttons */
.wa-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
#nav-links { display: flex; gap: 4px; }
#nav-links li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: var(--transition);
}
#nav-links li a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); color: var(--dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.visible { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  z-index: 1100;
  background: #111111;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.4);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,0.6);
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.mobile-menu-close:hover { color: white; background: rgba(255,255,255,0.08); }
#mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
#mobile-nav-links li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
#mobile-nav-links li a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
  border-left-color: var(--accent);
  padding-left: 20px;
}
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition);
  margin-top: 12px;
}
.mobile-nav-cta:hover { background: var(--accent); color: var(--dark); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* clips canvas + floating shapes */
  padding: 140px 24px 80px;
  min-width: 0;
}
/* Hero background photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Dark overlay + subtle noise texture on top of photo */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.58);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 2;
}

/* Floating geometric shapes — fence panel silhouettes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.geo-shape {
  position: absolute;
  border: 1.5px solid rgba(232,160,32,0.1);
  border-radius: 3px;
}
.geo-shape-1 { width: 90px; height: 90px; top: 12%; left: 6%; animation: floatA 9s ease-in-out infinite; }
.geo-shape-2 { width: 50px; height: 140px; top: 52%; left: 4%; animation: floatB 13s ease-in-out infinite; }
.geo-shape-3 { width: 120px; height: 55px; top: 20%; right: 7%; animation: floatA 11s ease-in-out infinite 2s; }
.geo-shape-4 { width: 60px; height: 60px; top: 68%; right: 12%; animation: floatB 8s ease-in-out infinite 1s; }
.geo-shape-5 { width: 40px; height: 110px; top: 35%; right: 4%; animation: floatA 10s ease-in-out infinite 3s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50%       { transform: translateY(-20px) rotate(6deg); opacity: 0.6; }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50%       { transform: translateY(18px) rotate(-5deg); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 4px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,160,32,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(232,160,32,0); }
}
.hero-section h1 { color: white; margin-bottom: 22px; }
.hero-section h1 .word { display: inline-block; }
.hero-section > .hero-content > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item i { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollWheel 2.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(11px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow-x: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Image column */
.about-image-col { display: flex; flex-direction: column; gap: 0; }

.about-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1e1e1e;
}
/* Placeholder shown when no real image */
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #232323;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 18px,
    rgba(255,255,255,0.025) 18px, rgba(255,255,255,0.025) 19px
  );
}
.about-image-placeholder i {
  width: 52px; height: 52px;
  color: rgba(255,255,255,0.1);
  position: relative;
}
.about-image-placeholder span {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
}
/* Orange bottom accent stripe on image */
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  z-index: 2;
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none; /* shown by JS when src is set */
}

/* Trust cards — pinned directly below image, no gap */
.about-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  background: white;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: default;
}
.about-trust-card:last-child { border-right: none; }
.about-trust-card:hover { background: var(--light); }
.about-trust-icon {
  width: 42px; height: 42px;
  background: rgba(196,83,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}
.about-trust-card:hover .about-trust-icon { background: var(--primary); }
.about-trust-icon i { width: 18px; height: 18px; color: var(--primary); }
.about-trust-card:hover .about-trust-icon i { color: white; }
.about-trust-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Text column */
.about-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.about-text-col h2 { margin-bottom: 18px; }
.about-desc {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-cta { align-self: flex-start; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-image-col { margin-bottom: 48px; }
  .about-trust-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .about-trust-row { grid-template-columns: 1fr; }
  .about-trust-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); flex-direction: row; text-align: left; gap: 14px; }
  .about-trust-card:last-child { border-bottom: none; }
  .about-trust-icon { margin-bottom: 0; flex-shrink: 0; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow-x: hidden;
}
/* Subtle dot grid */
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,83,39,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}
/* Bottom accent bar on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Solid dark headers — no heavy gradients */
.service-card:nth-child(1) .service-card-header { background: #232323; }
.service-card:nth-child(2) .service-card-header { background: #1E252E; }
.service-card:nth-child(3) .service-card-header { background: #241810; }
.service-card:nth-child(4) .service-card-header { background: #1A1A1A; }

/* Photo image covering card header */
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }

/* Dark gradient overlay — works for both solid-bg and photo cards */
.service-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(-45deg, transparent 0px, transparent 14px, rgba(255,255,255,0.02) 14px, rgba(255,255,255,0.02) 15px),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
}
/* Orange left border accent */
.service-card-header::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
  z-index: 2;
}
.service-card-icon {
  position: relative;
  z-index: 2;
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}
.service-card-icon i { width: 28px; height: 28px; color: white; }

.service-card-body { padding: 22px 22px 26px; flex: 1; }
.service-card-body h3 { font-size: 1rem; margin-bottom: 9px; color: var(--text); }
.service-card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: #242424;
  position: relative;
  overflow: hidden; /* clips sweep lines */
  overflow-x: hidden;
}
/* Animated scan lines */
.features-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.features-lines span {
  position: absolute;
  height: 1px;
  background: rgba(232,160,32,0.08);
  animation: sweepLine 7s linear infinite;
}
.features-lines span:nth-child(1) { width: 55%; top: 18%; animation-duration: 8s; }
.features-lines span:nth-child(2) { width: 40%; top: 42%; animation-duration: 10s; animation-delay: 2s; }
.features-lines span:nth-child(3) { width: 65%; top: 63%; animation-duration: 7s; animation-delay: 4s; }
.features-lines span:nth-child(4) { width: 45%; top: 80%; animation-duration: 9s; animation-delay: 1s; }
@keyframes sweepLine {
  from { left: -70%; }
  to   { left: 120%; }
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.features-text h2 { color: white; margin-bottom: 16px; }
.features-text p  { color: rgba(255,255,255,0.6); font-size: 1.02rem; margin-bottom: 32px; }

.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.feature-card:hover {
  border-color: rgba(232,160,32,0.45);
  border-left-color: var(--accent);
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(196,83,39,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--primary); }
.feature-icon i { width: 20px; height: 20px; color: var(--primary); }
.feature-card:hover .feature-icon i { color: white; }
.feature-card h3 { color: white; font-size: 0.95rem; margin-bottom: 8px; }
.feature-card p  { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
/* Animated connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: flowLine 3s linear infinite;
  border-radius: 2px;
  z-index: 0;
}
@keyframes flowLine {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 68px; height: 68px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(196,83,39,0.1);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 0 0 10px rgba(232,160,32,0.15);
}
.step-content h3 { margin-bottom: 10px; font-size: 1.02rem; }
.step-content p  { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* Grid mesh background */
.gallery-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: meshShift 25s linear infinite;
}
@keyframes meshShift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 48px 48px, 48px 48px; }
}
.gallery-section .section-header h2 { color: white; }
.gallery-section .section-header p  { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
/* Solid dark placeholder backgrounds — no gradients */
.gallery-card:nth-child(1) .gallery-placeholder-bg { background: #232323; }
.gallery-card:nth-child(2) .gallery-placeholder-bg { background: #1A2030; }
.gallery-card:nth-child(3) .gallery-placeholder-bg { background: #231510; }
.gallery-card:nth-child(4) .gallery-placeholder-bg { background: #181818; }

.gallery-placeholder-bg {
  position: absolute;
  inset: 0;
}
/* Fence grid pattern on placeholders */
.gallery-placeholder-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.gallery-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder-icon i { width: 48px; height: 48px; color: rgba(255,255,255,0.1); }

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-img { transform: scale(1.05); }

/* Orange accent line on bottom of each gallery card */
.gallery-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
.gallery-card:hover::before { transform: scaleX(1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: white; font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay p  { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 52px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
/* Simple repeating diagonal stripe instead of gradient orbs */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 24px,
    rgba(0,0,0,0.06) 24px, rgba(0,0,0,0.06) 25px
  );
  pointer-events: none;
}
/* Remove gradient orbs — keep only a simple animated element */
.cta-orb { display: none; }
.cta-fence-icon {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}
.cta-fence-icon i { width: 200px; height: 200px; color: white; }

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-text-wrap { flex: 1; min-width: 0; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  margin-bottom: 14px;
}
.cta-badge i { width: 22px; height: 22px; color: white; }
.cta-content h2 { color: white; margin-bottom: 8px; }
.cta-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 560px;
  margin: 0;
}
.cta-btn { background: white; color: var(--primary); flex-shrink: 0; padding: 11px 22px; font-size: 0.85rem; }
.cta-btn:hover { background: var(--accent); color: var(--dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-btn::after { display: none; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--light);
  overflow-x: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-info-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(196,83,39,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: var(--primary); }
.contact-info-icon i { width: 18px; height: 18px; color: var(--primary); }
.contact-info-item:hover .contact-info-icon i { color: white; }
.contact-info-text { display: flex; flex-direction: column; gap: 2px; }
.contact-info-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { font-size: 0.93rem; color: var(--text); font-weight: 600; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Contact Form */
.contact-form-col {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--light);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.28); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(196,83,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-consent { margin-top: 2px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 1px;
}
.consent-label a { color: var(--primary); text-decoration: underline; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,83,39,0.3); }
.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
}
.form-success { background: rgba(40,167,69,0.1); color: #1e7e34; }
.form-error   { background: rgba(200,50,50,0.1); color: #a72020; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow-x: hidden;
}
.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,83,39,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
/* Large decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.07;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  pointer-events: none;
}
/* Top accent bar */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testimonial-card:hover::after { transform: scaleX(1); }

.testimonial-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.82;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
}
.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .testimonials-grid { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer-section {
  background: #111111;
  padding: 64px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.footer-logo-icon {
  width: 28px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.footer-col h4 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-list li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.25s; }
.footer-nav-list li a:hover { color: var(--accent); }
.footer-contact-info { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
}
.footer-contact-item i { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy    { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
.footer-privacy { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: color 0.25s; }
.footer-privacy:hover { color: var(--accent); }
.footer-credit-bar {
  background: rgba(0,0,0,0.35);
  text-align: center;
  padding: 10px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.25s;
}
.footer-credit strong { color: var(--accent); font-weight: 600; }
.footer-credit:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: slideUpCookie 0.4s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text h3 { color: white; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.cookie-text p  { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 9px 20px; border-radius: 6px;
  background: var(--primary); color: white;
  font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent); color: var(--dark); }
.cookie-btn-decline {
  padding: 9px 20px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
  transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.scroll-top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(196,83,39,0.35);
  transition: var(--transition);
}
.scroll-top-btn:hover { background: var(--accent); color: var(--dark); transform: translateY(-3px); }
.scroll-top-btn i { width: 18px; height: 18px; }

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

/* ── 1024px — tablet landscape ── */
@media (max-width: 1024px) {
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-text { max-width: 600px; margin: 0 auto; text-align: center; }
  .features-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 900px — about grid collapses ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-image-col { margin-bottom: 40px; }
  .about-text-col { padding-top: 0; }
  .about-cta { align-self: stretch; text-align: center; justify-content: center; }
}

/* ── 768px — mobile ── */
@media (max-width: 768px) {
  #nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 64px 0 !important; }
  .section-header { margin-bottom: 36px; }
  .section-container { padding: 0 20px; }

  /* Hero */
  .hero-section { padding: 120px 20px 60px; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Features */
  .features-layout { gap: 36px; }
  .features-cards { grid-template-columns: 1fr; gap: 12px; }
  .features-text { text-align: center; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-number { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 1.1rem; }
  .step-content { flex: 1; min-width: 0; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; gap: 28px; }
  .cta-text-wrap { text-align: center; }
  .cta-fence-icon { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-col { padding: 24px 18px; }
  .contact-info-item { word-break: break-word; }
  .contact-info-value { word-break: break-all; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .features-cards { grid-template-columns: 1fr; }

  /* About trust row — already 3-col, stays; collapses at 560 */
}

/* ── 600px — about trust row collapses early ── */
@media (max-width: 600px) {
  .about-trust-row { grid-template-columns: 1fr; }
  .about-trust-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    flex-direction: row;
    text-align: left;
    padding: 16px 14px;
    gap: 14px;
  }
  .about-trust-card:last-child { border-bottom: none; }
  .about-trust-icon { margin-bottom: 0; flex-shrink: 0; }
}

/* ── 480px — small phones ── */
@media (max-width: 480px) {
  .section-container { padding: 0 16px; }

  /* Hero */
  .hero-section { padding: 110px 16px 56px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-section { padding: 64px 0; }
  .about-desc { font-size: 0.95rem; }
  .about-sub  { font-size: 0.9rem; }

  /* Service card */
  .service-card-header { height: 120px; }
  .service-card-icon { width: 56px; height: 56px; }
  .service-card-icon i { width: 24px; height: 24px; }

  /* Contact form */
  .contact-form-col { padding: 20px 14px; }
  .btn-submit { font-size: 0.92rem; }

  /* CTA */
  .cta-content h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }

  /* Cookie banner */
  .cookie-content { flex-direction: column; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-contact-item { word-break: break-all; }

  /* Floating buttons */
  .whatsapp-float { bottom: 72px; right: 16px; width: 50px; height: 50px; }
  .scroll-top-btn { bottom: 18px; right: 16px; width: 42px; height: 42px; }
}

/* ── 360px — very small phones ── */
@media (max-width: 360px) {
  html { font-size: 15px; }
  .section-container { padding: 0 12px; }

  /* Nav */
  nav { padding: 14px 0; }
  .nav-container { padding: 0 12px; }
  .logo { font-size: 1.25rem; }

  /* Hero */
  .hero-section { padding: 100px 12px 48px; }
  h1 { font-size: clamp(1.8rem, 9vw, 2.4rem) !important; }
  .hero-section > .hero-content > p { font-size: 0.95rem; }

  /* Section headers */
  h2 { font-size: clamp(1.5rem, 8vw, 2rem) !important; }

  /* About */
  .about-trust-card { padding: 12px 10px; }

  /* Features cards */
  .feature-card { padding: 16px 14px; }

  /* Process */
  .step-number { width: 48px; height: 48px; font-size: 1rem; }

  /* Contact */
  .contact-form-col { padding: 16px 12px; }
  .form-group input,
  .form-group textarea { padding: 10px 12px; font-size: 0.88rem; }

  /* Footer */
  .footer-section { padding: 44px 0 0; }
  .footer-top { gap: 22px; padding-bottom: 32px; }
  .footer-logo { font-size: 1.2rem; }

  /* Floating buttons */
  .whatsapp-float { right: 12px; width: 46px; height: 46px; }
  .scroll-top-btn { right: 12px; width: 38px; height: 38px; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .geo-shape, .features-lines span,
  .gallery-mesh, .loader-fence span,
  .scroll-wheel, .badge-pulse { animation: none !important; }
}
