/* ================================================
   TPG Nord Vest — main.css
   Global Marketing IT © 2026
   ================================================ */

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

:root {
  --dark:    #111827;
  --dark-2:  #1F2937;
  --dark-3:  #374151;
  --dark-4:  #4B5563;
  --amber:   #F59E0B;
  --amber-2: #D97706;
  --amber-pale: rgba(245, 158, 11, 0.12);
  --white:   #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --text:    #E5E7EB;
  --nav-h:   80px;
  --radius:  12px;
  --radius-sm: 6px;
  --shadow:  0 4px 24px rgba(0,0,0,0.4);
  --trans:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--amber); }

/* ---- NAVBAR ---- */
#tpg-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.navbar {
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
  height: var(--nav-h);
}

.navbar.scrolled {
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-tpg {
  color: var(--amber);
  font-size: 24px;
}

.logo-nord {
  color: var(--white);
  font-size: 18px;
  margin-left: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--gray-300);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
}

.nav-link:hover {
  color: var(--white);
  background: var(--amber-pale);
}

.nav-cta {
  background: var(--amber);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--amber-2);
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  position: relative;
  z-index: 1600;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO SLIDER ---- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.5) 60%, rgba(17,24,39,0.3) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 40px;
  max-width: 900px;
  padding-top: 80px;
}

@media (max-width: 1366px) and (max-height: 768px) {
  .slide-content {
    top: var(--nav-h);
    transform: none;
    padding-top: 60px;
    align-items: flex-start;
  }
}

.slide-badge {
  display: inline-block;
  background: var(--amber-pale);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slide-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.slide-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 36px;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}

.dot.active, .dot:hover {
  background: var(--amber);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--trans);
}

.slider-arrow:hover { background: var(--amber); color: var(--dark); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  border: 2px solid var(--amber);
}

.btn-primary:hover {
  background: var(--amber-2);
  border-color: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--trans);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 48px; font-size: 18px; }

/* ---- SECTION COMMON ---- */
.section { padding: 96px 0; }
.section-dark { background: var(--dark-2); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  background: var(--amber-pale);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.service-card:hover {
  border-color: var(--amber-pale);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: var(--gray-400);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-arrow {
  color: var(--amber);
  font-size: 20px;
  font-weight: 700;
  transition: transform var(--trans);
  display: inline-block;
  align-self: flex-end;
}

.service-card:hover .card-arrow { transform: translateX(6px); }

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-side {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--amber);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(245,158,11,0.4);
}

.exp-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content .section-title { text-align: left; }
.about-content .section-badge { }

.about-content p {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 17px;
}

.about-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-300);
  font-size: 16px;
  font-weight: 600;
}

.check-icon {
  color: var(--amber);
  font-size: 18px;
  font-weight: 800;
}

/* ---- GALLERY PREVIEW ---- */
.preview-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.preview-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.preview-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}

.preview-gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-2) 100%);
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(17,24,39,0.8);
  margin-bottom: 36px;
}

.cta-content .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.cta-content .btn-primary:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-short { height: 380px; }

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,24,39,0.6) 0%, rgba(17,24,39,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  padding-top: 80px;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0;
}

.page-hero-content p {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--amber);
  transition: color var(--trans);
}

.breadcrumb a:hover { color: var(--amber-2); }

/* ---- DESPRE PAGE ---- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-content p {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 17px;
}

.story-images {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-img-side {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--dark);
}

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

.value-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(245,158,11,0.1);
  transition: border-color var(--trans), transform var(--trans);
}

.value-card:hover {
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--amber-pale);
  line-height: 1;
  min-width: 60px;
  color: rgba(245,158,11,0.25);
}

.why-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 16px;
  color: var(--gray-400);
}

.why-image img {
  width: 100%;
  border-radius: var(--radius);
  height: 480px;
  object-fit: cover;
}

/* ---- SERVICII PAGE ---- */
.service-detail { }
.service-detail + .service-detail { padding-top: 0; }

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

.service-detail-reverse { direction: rtl; }
.service-detail-reverse > * { direction: ltr; }

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.service-detail-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--gray-300);
}

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

.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---- PARC UTILAJE PAGE ---- */
.utilaje-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.utilaj-feature {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid var(--dark-3);
  transition: border-color var(--trans);
}

.utilaj-feature:hover { border-color: rgba(245,158,11,0.3); }

.utilaj-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.utilaj-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.utilaj-feature p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lightbox-counter {
  margin-top: 12px;
  color: var(--gray-400);
  font-size: 15px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--trans);
  font-family: sans-serif;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.lightbox-arrow:hover { background: var(--amber); color: var(--dark); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ---- CONTACT PAGE ---- */
.contact-section { }

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

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 17px;
  color: var(--gray-300);
  margin-bottom: 2px;
}

.contact-info-text span {
  font-size: 14px;
  color: var(--gray-400);
}

/* Contact form */
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-3);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.req { color: var(--amber); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  transition: border-color var(--trans);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group select option { background: var(--dark-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark-4);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-status {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
}

.btn-submit { width: 100%; justify-content: center; }

.spin {
  animation: spin 1s linear infinite;
}

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

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding-top: 60px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 400px;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--gray-400);
}

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--amber);
  transition: color var(--trans);
}

.footer-bottom a:hover { color: var(--amber-2); }

/* ---- RESPONSIVE ---- */

/* Large tablets */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .about-story-grid { gap: 48px; }
  .why-grid { gap: 48px; }
  .service-detail-grid { gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .utilaje-features { grid-template-columns: repeat(2, 1fr); }
  .footer-container { gap: 40px; }
}

/* Tablets */
@media (max-width: 900px) {
  :root { --nav-h: 70px; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17,24,39,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { font-size: 20px; padding: 12px 24px; }

  .about-grid,
  .about-story-grid,
  .why-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-reverse { direction: ltr; }

  .about-images { padding-bottom: 60px; }
  .about-img-side { right: 0; bottom: 0; }
  .about-exp-badge { left: 0; top: 16px; }
  .story-img-side { right: 0; bottom: 0; }

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

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

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

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

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

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 17px; }

  .section { padding: 64px 0; }

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

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

  .utilaje-features { grid-template-columns: 1fr; }

  .preview-gallery-grid { grid-template-columns: 1fr; }

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

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

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

  .slide-content { padding: 0 20px; padding-top: 80px; }

  .slider-arrow { display: none; }

  .scroll-indicator { display: none; }

  .about-img-side { width: 160px; height: 140px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .stat-num { font-size: 32px; }

  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 15px; }
  .btn-large { padding: 16px 32px; }

  .page-hero { height: 360px; }
  .page-hero-short { height: 300px; }
}
