/* ============================================
   HOLI s.r.o. – Custom Styles
   Design: Sharp & Corporate
   Colors: Deep Navy + Steel Blue + Amber
   Font: Archivo + DM Sans
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #1A4D7C;
  --secondary: #0D2B4B;
  --accent: #E8941A;
  --dark: #071829;
  --light: #F5F7FA;
  --text: #1E2D3D;
  --text-light: #6B7C93;
  --radius: 10px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: auto; /* handled by Lenis */
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Skip Link ---- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ---- Page Loader ---- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.1em;
}
.loader-logo span {
  color: var(--accent);
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .navbar-logo {
  color: var(--secondary);
}
.navbar-logo .logo-accent {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  align-self: flex-end;
  padding-bottom: 2px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-links a:hover::after,
.navbar-links a:focus-visible::after { transform: scaleX(1); }
.navbar-links a:hover, .navbar-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.navbar.scrolled .navbar-links a {
  color: var(--text-light);
}
.navbar.scrolled .navbar-links a:hover {
  color: var(--primary);
  background: rgba(26, 77, 124, 0.06);
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.btn-nav {
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav:hover, .btn-nav:focus-visible {
  background: #cf7d0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(232, 148, 26, 0.25);
  outline: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover, .hamburger:focus-visible { background: rgba(255,255,255,0.1); outline: none; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--secondary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 999;
  background: var(--secondary);
  padding: 100px 32px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu-links a:hover { color: #fff; padding-left: 8px; }
.mobile-menu-cta {
  margin-top: 32px;
  width: 100%;
}
.mobile-menu-cta a {
  display: block;
  text-align: center;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- Section Utilities ---- */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
}
.accent-text { color: var(--accent); }
.section-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--secondary);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #cf7d0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 148, 26, 0.3);
  outline: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  outline: none;
}
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary-dark:hover, .btn-primary-dark:focus-visible {
  background: #143d62;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 124, 0.3);
  outline: none;
}

/* ---- Overflow containment for GSAP slide animations ---- */
.about-section,
.services-section,
.features-section,
.contact-section,
.process-section,
.gallery-section {
  overflow-x: hidden;
}

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 100vh;
  background: var(--secondary);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 120px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 148, 26, 0.12);
  border: 1px solid rgba(232, 148, 26, 0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-h1 .accent-word {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.hero-stat-item {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item:last-child {
  border-right: none;
  margin-right: 0;
}
.hero-stat-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero right image */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--secondary) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}
.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section:hover .hero-right-img {
  transform: scale(1.0);
}

/* Hero diagonal bottom */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--light);
  -webkit-clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  z-index: 3;
}

/* Decorative circles in hero */
.hero-decor-1 {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(232, 148, 26, 0.08);
  pointer-events: none;
}
.hero-decor-2 {
  position: absolute;
  bottom: 20%;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 110px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(7, 24, 41, 0.18);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(232, 148, 26, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.about-img-badge strong {
  font-size: 2rem;
  display: block;
}
.about-accent-line {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 16px;
}
.about-h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.about-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 77, 124, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.about-pillar:hover .about-pillar-icon {
  background: var(--accent);
  color: #fff;
}
.about-pillar-icon svg {
  width: 20px;
  height: 20px;
}
.about-pillar-text h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.about-pillar-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 100px 0 120px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 77, 124, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-header {
  margin-bottom: 56px;
  max-width: 600px;
}
.services-sub {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.02rem;
  margin-top: 16px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.bento-card.featured {
  grid-column: span 2;
}

/* Card with image (featured) */
.bento-card.has-image {
  min-height: 280px;
}
.bento-card.has-image .card-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-card.has-image .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-card.has-image:hover .card-img-wrap img {
  transform: scale(1.06);
}
.bento-card.has-image .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,0.88) 0%, rgba(7,24,41,0.2) 60%, transparent 100%);
  z-index: 1;
}
.bento-card.has-image .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 28px 24px;
}
.bento-card.has-image .card-content h3 {
  color: #fff;
}
.bento-card.has-image .card-content p {
  color: rgba(255,255,255,0.75);
}
.bento-card.has-image .card-icon {
  background: var(--accent);
  color: #fff;
}

/* Card with top image (non-featured) */
.bento-card.has-top-image .card-img-top {
  height: 150px;
  overflow: hidden;
}
.bento-card.has-top-image .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-card.has-top-image:hover .card-img-top img {
  transform: scale(1.06);
}

/* Regular card (no bg image) */
.bento-card:not(.has-image) .card-content {
  padding: 28px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.bento-card:not(.has-image) .card-content h3 {
  color: var(--secondary);
}
.bento-card:not(.has-image) .card-content p {
  color: var(--text-light);
  flex: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 77, 124, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.bento-card:not(.has-image):hover .card-icon {
  background: var(--accent);
  color: #fff;
}
.card-icon svg { width: 20px; height: 20px; }

.card-content h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
.card-content p {
  font-size: 0.88rem;
  line-height: 1.65;
}
.card-arrow {
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.bento-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.card-arrow svg { width: 14px; height: 14px; }

/* ---- FEATURES / WHY US ---- */
.features-section {
  padding: 100px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 148, 26, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header .section-label { margin-bottom: 16px; }
.features-header .section-label { color: var(--accent); }
.features-header .section-label::before { background: var(--accent); }
.features-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}
.feature-item {
  padding: 44px 36px;
  background: transparent;
  position: relative;
  transition: background var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.04);
}
.feature-number {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition);
}
.feature-item:hover .feature-number {
  color: rgba(232, 148, 26, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(232, 148, 26, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--accent);
  color: #fff;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}
.feature-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.feature-divider {
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.feature-item:last-child .feature-divider { display: none; }

/* ---- GALLERY ---- */
.gallery-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.gallery-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--light);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery-header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.gallery-header-text { max-width: 540px; }
.gallery-sub {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 12px;
}
.gallery-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-cat-badge {
  opacity: 1;
  transform: translateY(0);
}

/* ---- PROCESS ---- */
.process-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(26, 77, 124, 0.15);
  z-index: 0;
}
.process-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(26, 77, 124, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.process-item:hover .process-step-circle {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(26, 77, 124, 0.25);
}
.process-step-circle svg {
  width: 28px;
  height: 28px;
}
.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-item h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.process-item p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 0;
  background: #fff;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 600px;
}
.contact-dark-side {
  background: var(--secondary);
  padding: 100px 64px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-dark-side::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(232, 148, 26, 0.1);
  pointer-events: none;
}
.contact-dark-side::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232, 148, 26, 0.05);
  pointer-events: none;
}
.contact-dark-side .section-label::before { background: var(--accent); }
.contact-dark-side .section-label { color: var(--accent); }
.contact-h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}
.contact-sub {
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 48px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 148, 26, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-info-item:hover .contact-info-icon {
  background: var(--accent);
  color: #fff;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.contact-info-text-val {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
}
.contact-info-text-val a {
  color: #fff;
  transition: color var(--transition);
}
.contact-info-text-val a:hover { color: var(--accent); }

.contact-light-side {
  padding: 100px 80px 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7C93' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 77, 124, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
  margin-top: 2px;
}
.form-error-msg.visible { display: block; }
.form-submit-btn {
  padding: 15px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
}
.form-submit-btn:hover, .form-submit-btn:focus-visible {
  background: #143d62;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 124, 0.3);
  outline: none;
}
.form-submit-btn svg { width: 18px; height: 18px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(52, 168, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34a853;
}
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--secondary);
}
.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.footer-logo .logo-accent {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-contact-mini a:hover { color: var(--accent); }
.footer-contact-mini svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-links-list li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-made-by {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}

/* ---- FLOATING BUTTONS ---- */
#scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
  box-shadow: 0 4px 14px rgba(26, 77, 124, 0.3);
}
#scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top-btn:hover, #scroll-top-btn:focus-visible {
  background: var(--accent);
  outline: none;
}
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 60% 40%; }
  .hero-left { padding: 130px 48px 100px 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col-1 { grid-column: span 2; }
  .contact-dark-side { padding: 80px 48px; }
  .contact-light-side { padding: 80px 48px; }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.25;
  }
  .hero-left {
    position: relative;
    z-index: 2;
    padding: 130px 24px 100px;
    align-items: flex-start;
  }
  .hero-section::after { height: 50px; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .about-img { height: 320px; }
  .about-img-badge { bottom: -16px; right: -8px; }
  .about-image-wrap { margin-bottom: 24px; }

  .services-inner { padding: 0 24px; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card.featured { grid-column: span 2; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-divider { display: none; }
  .features-inner { padding: 0 24px; }

  .gallery-inner { padding: 0 24px; }
  .gallery-grid { columns: 2; }
  .gallery-header { flex-direction: column; align-items: flex-start; }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-grid::before { display: none; }
  .process-inner { padding: 0 24px; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-dark-side { padding: 72px 24px; }
  .contact-light-side { padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 36px;
  }
  .footer-col-1 { grid-column: span 1; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { padding: 24px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-left { padding: 120px 20px 80px; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Stats bar: reduce padding so 3 items fit without overflow */
  .hero-stats-row { gap: 0; flex-wrap: nowrap; padding-top: 28px; }
  .hero-stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    padding: 0 12px 0 0;
    margin-right: 12px;
  }
  .hero-stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
  .hero-stat-value { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.68rem; letter-spacing: 1px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }

  .gallery-grid { columns: 1; }

  .process-grid { grid-template-columns: 1fr; }

  .about-section { padding: 80px 0 60px; }
  .services-section { padding: 80px 0 80px; }
  .features-section { padding: 80px 0; }
  .gallery-section { padding: 80px 0; }
  .process-section { padding: 80px 0; }

  /* Contact on small phones */
  .contact-dark-side { padding: 60px 20px; }
  .contact-light-side { padding: 48px 20px; }
  .contact-info-text-val { word-break: break-all; }
}

/* ---- Very small screens < 350px ---- */
@media (max-width: 349px) {
  /* Containers */
  .navbar-inner { padding: 0 12px; }
  .about-inner,
  .services-inner,
  .features-inner,
  .gallery-inner,
  .process-inner { padding: 0 14px; }
  .footer-inner { padding: 0 14px; }
  .footer-bottom { padding: 20px 14px; }

  /* Navbar */
  .navbar-logo { font-size: 1.3rem; }
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }

  /* Hero */
  .hero-left { padding: 110px 14px 70px; }
  .hero-h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 0.9rem; }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  /* Hero stats: single column */
  .hero-stats-row {
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
  }
  .hero-stat-item {
    border-right: none;
    border-top: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-stat-value { font-size: 1rem; margin-bottom: 0; }
  .hero-stat-label { font-size: 0.72rem; }

  /* About */
  .about-img { height: 240px; }
  .about-img-badge { display: none; }

  /* Services */
  .bento-grid { gap: 12px; }

  /* Gallery */
  .gallery-grid { column-gap: 10px; }

  /* Process */
  .process-item { padding: 0 8px; }

  /* Contact */
  .contact-dark-side { padding: 56px 14px; }
  .contact-light-side { padding: 40px 14px; }
  .contact-h2 { font-size: 1.6rem; }
  .contact-sub { font-size: 0.88rem; margin-bottom: 32px; }
  .contact-info-text-val { word-break: break-all; font-size: 0.88rem; }
  .form-submit-btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-logo { font-size: 1.4rem; }
  .footer-copy, .footer-made-by { font-size: 0.72rem; }

  /* Floating buttons */
  #scroll-top-btn { right: 12px; bottom: 88px; }
  .whatsapp-fab { right: 12px; bottom: 24px; }
}

/* ---- ACCESSIBILITY ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
