/* ============================================
   GALLIK TRANSPORT — style.css
   Design: Dark & Premium | Archivo + DM Sans
   Palette: Charcoal + Deep Orange + Amber
   ============================================ */

/* ---------- CSS VARIABLES (set by JS) ---------- */
:root {
  --primary:    #E07B39;
  --secondary:  #141424;
  --accent:     #F5A623;
  --dark:       #0A0A0A;
  --light:      #F5F5F0;
  --text:       #ECECEC;
  --text-light: #8A8A8A;
  --card-bg:    #1C1C2E;
  --border:     #2A2A3A;
  --radius:     12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* ---------- LAYOUT CONTAINERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION LABELS ---------- */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--primary);
}

/* ---------- SECTION HEADINGS ---------- */
.section-heading {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #c96e2e;
  border-color: #c96e2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,57,0.3);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-large {
  font-size: 17px;
  padding: 18px 44px;
  border-radius: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.site-nav.transparent {
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(20, 20, 36, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.nav-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.nav-logo span {
  color: var(--primary);
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-links li a:hover {
  color: #fff;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #c96e2e;
  transform: translateY(-1px);
}

.nav-cta span {
  /* filled by JS */
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #141424;
  z-index: 1100;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-close:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-close:focus-visible {
  outline: 2px solid var(--accent);
}

.mobile-nav-links li a {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

#mobile-nav-links li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.mobile-cta:hover {
  background: #c96e2e;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.75) 0%,
    rgba(20,20,36,0.65) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--dark);
  -webkit-clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 800px;
}

.hero-top {
  margin-bottom: 20px;
}

.hero-label {
  color: var(--accent);
  background: rgba(245,166,35,0.1);
  padding: 6px 14px 6px 14px;
  border-radius: 50px;
  letter-spacing: 2.5px;
  font-size: 10px;
  padding-left: 14px;
}

.hero-label::before {
  display: none;
}

.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.btn-hero {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-hero-ghost {
  font-size: 16px;
  padding: 16px 36px;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 110px;
}

.hero-stat-value {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--dark);
  padding: 120px 0 100px;
  overflow-x: hidden;
}

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

/* About stats column */
.about-stats-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}

.about-stat-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.about-stat-item:first-child {
  padding-top: 0;
}

.about-stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.about-stat-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  display: none;
}

.about-stat-item:first-child .about-stat-line {
  display: block;
}

/* About text column */
.about-text-col {
  padding-top: 0;
}

.about-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 36px;
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(20,20,36,0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--secondary);
  padding: 100px 0;
  position: relative;
  overflow-x: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Bento Grid: 3-col asymmetric */
.services-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(224,123,57,0.4);
}

.service-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

.service-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.service-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

/* Service card image */
.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

/* Dark gradient overlay on cards */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.service-card.featured .service-card-content {
  padding: 36px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 20px;
  height: 20px;
}

.service-card.featured .service-card-icon {
  width: 52px;
  height: 52px;
}

.service-card.featured .service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.service-card.featured .service-card-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card.featured .service-card-desc {
  font-size: 15px;
  -webkit-line-clamp: 3;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--dark);
  padding: 100px 0 0;
  overflow-x: hidden;
}

.gallery-swiper-wrap {
  padding: 0 0 80px;
  position: relative;
}

/* Swiper customization */
.gallery-swiper {
  padding: 0 24px 56px;
  overflow: visible;
}

.swiper-slide {
  width: 360px;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-slide-inner {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  padding: 20px 16px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background 0.2s ease, width 0.2s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* GLightbox overrides */
.glightbox-clean .gclose {
  background: var(--primary);
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
  background: var(--secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

/* Subtle dot pattern background */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% - 16px);
  right: calc(33.33% - 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(224,123,57,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.process-step-num {
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(224,123,57,0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -3px;
  pointer-events: none;
}

.process-step-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,123,57,0.12);
  border: 1px solid rgba(224,123,57,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: background 0.3s ease;
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  color: #fff;
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
}

.process-step-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,123,57,0.85) 0%, rgba(10,10,10,0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--dark);
  position: relative;
  overflow-x: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Info side */
.contact-info-side {
  background: var(--secondary);
  border-right: 1px solid var(--border);
  padding: 80px 60px;
  display: flex;
  align-items: flex-start;
}

.contact-info-inner {
  max-width: 420px;
}

.contact-label {
  margin-bottom: 16px;
}

.contact-heading {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  background: rgba(224,123,57,0.06);
  transform: translateX(4px);
}

.contact-card a {
  display: contents;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(224,123,57,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--primary);
  color: #fff;
}

.contact-card-icon svg {
  width: 18px;
  height: 18px;
}

.contact-card-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Form side */
.contact-form-side {
  background: var(--light);
  padding: 80px 60px;
  display: flex;
  align-items: flex-start;
}

.contact-form {
  width: 100%;
  max-width: 460px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.3px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #222;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,123,57,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #c96e2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,57,0.25);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.form-response {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-response.success {
  background: rgba(72,187,120,0.1);
  border: 1px solid rgba(72,187,120,0.3);
  color: #2d6a4f;
  display: block;
}

.form-response.error {
  background: rgba(229,62,62,0.08);
  border: 1px solid rgba(229,62,62,0.2);
  color: #c53030;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,123,57,0.1);
  border: 1px solid rgba(224,123,57,0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

#footer-links li {
  margin-bottom: 8px;
}

#footer-links li a {
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

#footer-links li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

#footer-contact-items li {
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  background: #c96e2e;
}

.scroll-top-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* GSAP handles all initial opacity/transform states via gsap.from() */

/* ============================================
   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;
  }

  .hero-bg,
  .about-img,
  .service-card-img,
  .gallery-slide-inner img {
    transform: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }

  .service-card.featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .service-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .service-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .service-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-stats-col {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .about-stat-item {
    flex: 1;
    min-width: 140px;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .process-steps::before {
    display: none;
  }

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

  .contact-info-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 60px 40px;
  }

  .contact-form-side {
    padding: 60px 40px;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(30px, 8vw, 44px);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stat {
    min-width: calc(50% - 4px);
    flex: 1;
  }

  .services-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .service-card.featured,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    height: 260px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-side {
    padding: 48px 24px;
  }

  .contact-form-side {
    padding: 48px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .section-heading {
    font-size: clamp(24px, 6vw, 32px);
  }

  .about-section,
  .services-section,
  .gallery-section,
  .process-section,
  .cta-section {
    padding: 72px 0;
  }

  .about-stat-item {
    min-width: 100%;
    border-right: none;
  }

  .whatsapp-float {
    bottom: 88px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 20px;
  }

  .swiper-slide {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-stat {
    min-width: calc(50% - 4px);
    padding: 10px 14px;
  }

  .hero-stat-value {
    font-size: 17px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================
   VERY SMALL SCREENS (< 350px)
   ============================================ */
@media (max-width: 349px) {
  /* Containers */
  .container {
    padding: 0 12px;
  }

  /* Nav */
  .nav-inner {
    height: 60px;
    padding: 0 12px;
  }

  .nav-logo {
    font-size: 15px;
  }

  /* Hero headline */
  .hero-headline {
    font-size: 2rem;
  }

  /* Hero CTA buttons — stacked, full width */
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .btn-hero,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  /* Hero stats — single column, inline value + label */
  .hero-stats {
    flex-direction: column;
    gap: 6px;
  }

  .hero-stat {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
  }

  .hero-stat-value {
    font-size: 18px;
    flex-shrink: 0;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  /* About stats — 1 column */
  .about-stats-col {
    flex-direction: column;
  }

  .about-stat-item {
    min-width: 100%;
    border-right: none;
    padding: 20px 0;
  }

  .about-stat-number {
    font-size: 48px;
  }

  /* Images — cap height on tiny screens */
  .about-img {
    max-height: 240px;
    object-fit: cover;
  }

  /* Contact — tighten padding, break long text */
  .contact-info-side {
    padding: 40px 16px;
  }

  .contact-form-side {
    padding: 40px 16px;
  }

  .contact-card-text {
    font-size: 13px;
    word-break: break-all;
  }

  /* CTA headline */
  .cta-headline {
    font-size: 1.6rem;
  }

  /* Floating buttons — hug the edge */
  .whatsapp-float {
    right: 10px;
    bottom: 80px;
    width: 46px;
    height: 46px;
  }

  .scroll-top-btn {
    right: 10px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}
