/* ================================================================
   SENEX CONSTRUCT — Premium Construction Website
   Version: 1.0.0 | senexconstruct.ro
   ================================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --c-amber:        #D97706;
  --c-amber-hover:  #B45309;
  --c-amber-light:  #FEF3C7;
  --c-amber-glow:   rgba(217, 119, 6, 0.18);
  --c-dark:         #0F172A;
  --c-dark-mid:     #1E293B;
  --c-text:         #111827;
  --c-text-muted:   #6B7280;
  --c-text-light:   #9CA3AF;
  --c-bg:           #FFFFFF;
  --c-bg-alt:       #F9F7F4;
  --c-border:       #E5E7EB;

  --section-py:     clamp(72px, 9vw, 128px);
  --max-width:      1200px;
  --container-px:   clamp(20px, 5vw, 80px);

  --font:           'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 56px rgba(0,0,0,0.14);

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --transition:     0.28s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-dark); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.025em; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-amber);
  background: var(--c-amber-light);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-amber);
}
.badge--dark {
  background: var(--c-amber-glow);
  color: #F59E0B;
  border: 1px solid rgba(217,119,6,0.25);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--c-text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p  { color: rgba(255,255,255,0.52); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217,119,6,0.38);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.28);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.55);
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 20px rgba(0,0,0,0.07);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--c-dark); }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--c-amber);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.09); }
.nav.scrolled .nav-link { color: var(--c-text-muted); }
.nav.scrolled .nav-link:hover { color: var(--c-amber); background: var(--c-amber-light); }
.nav-cta {
  background: var(--c-amber);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--c-amber-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217,119,6,0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--c-dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 26px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  padding: 12px 32px;
  border-radius: 14px;
  transition: all var(--transition);
  letter-spacing: -0.03em;
}
.mobile-nav-link:hover { color: var(--c-amber); }
.mobile-nav-cta {
  margin-top: 20px;
  background: var(--c-amber);
  color: #fff;
  padding: 16px 44px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 800;
  transition: all var(--transition);
}
.mobile-nav-cta:hover { background: var(--c-amber-hover); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--c-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(217,119,6,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(217,119,6,0.07) 0%, transparent 50%),
    linear-gradient(150deg, #0F172A 0%, #1a2540 60%, #0F172A 100%);
}
/* Optional: hero background image — uncomment & set path when photo is ready */
/*
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
*/
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-accent {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 100px;
  max-width: 820px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  background: var(--c-amber-glow);
  border: 1px solid rgba(217,119,6,0.28);
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-amber);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-amber);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: all var(--transition);
}
.hero-phone:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.hero-phone svg { width: 18px; height: 18px; color: var(--c-amber); }
.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.09);
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-value em {
  font-style: normal;
  color: var(--c-amber);
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* =================================================================
   SERVICE CARDS
   ================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 0 0 2px 2px;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-5px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px;
  background: var(--c-amber-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-amber);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
}

/* Dark variant (interior services) */
.service-card--dark {
  background: var(--c-dark-mid);
  border-color: rgba(255,255,255,0.06);
}
.service-card--dark h3 { color: #fff; }
.service-card--dark p  { color: rgba(255,255,255,0.52); }
.service-card--dark .service-icon {
  background: var(--c-amber-glow);
}
.service-card--dark .service-tag {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.42);
}
.service-card--dark:hover { border-color: rgba(217,119,6,0.28); }

/* Interior badge note */
.interior-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: -48px;
  margin-bottom: 52px;
}

/* =================================================================
   ABOUT
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--c-text);
  margin-bottom: 20px;
}
.about-content p {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-check {
  width: 20px; height: 20px;
  background: var(--c-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-check svg { width: 11px; height: 11px; color: #fff; }
.about-feature span {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
}
.about-cta { margin-top: 36px; }

/* Stats cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.stat-card:first-child {
  background: var(--c-dark);
  border-color: transparent;
}
.stat-card:first-child .stat-number { color: #fff; }
.stat-card:first-child .stat-label  { color: rgba(255,255,255,0.45); }
.stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number em {
  font-style: normal;
  color: var(--c-amber);
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* =================================================================
   PROCESS
   ================================================================= */
.process-track {
  position: relative;
}
.process-line {
  position: absolute;
  top: 36px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: var(--c-border);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--c-amber), rgba(217,119,6,0.3));
}
.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-step { text-align: center; padding: 0 8px; }
.process-num {
  width: 72px; height: 72px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  border-color: var(--c-amber);
  color: var(--c-amber);
  box-shadow: 0 0 0 6px var(--c-amber-light);
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* =================================================================
   PORTFOLIO
   ================================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg-alt);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.portfolio-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-item--tall { grid-row: span 2; aspect-ratio: auto; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* Placeholder (before real photos) */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #E8EBF0 0%, #F3F4F6 100%);
}
.portfolio-placeholder svg { width: 28px; height: 28px; color: #C4C9D4; }
.portfolio-placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: #A0A6B1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

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

/* =================================================================
   FAQ
   ================================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--c-amber); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--c-text-muted);
}
.faq-item.open .faq-icon {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--c-text);
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--c-amber-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-amber);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--c-text-muted);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}
.contact-item-value a {
  color: var(--c-text);
  transition: color var(--transition);
}
.contact-item-value a:hover { color: var(--c-amber); }

/* Form */
.contact-form-wrap {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px rgba(217,119,6,0.10);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--c-amber);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 100px;
  margin-top: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--c-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217,119,6,0.32);
}
.form-submit svg { width: 18px; height: 18px; }

/* Social links */
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.contact-social a {
  width: 40px; height: 40px;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.contact-social a:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  background: var(--c-amber-light);
}
.contact-social svg { width: 18px; height: 18px; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--c-dark);
  color: #fff;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { font-size: 18px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: #fff;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 13px 22px 13px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: all var(--transition);
  white-space: nowrap;
}
.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,0.60);
}
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-label { display: block; }
@keyframes wa-ping {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 22px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}
.whatsapp-float a { animation: wa-ping 3s ease-in-out infinite; }

/* =================================================================
   ANIMATIONS
   ================================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 75ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 150ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 225ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 300ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 375ms; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 56px; }
  .process-grid   { grid-template-columns: repeat(3, 1fr); }
  .process-line   { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-grid       { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
}

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

  .hero h1   { font-size: 36px; }
  .hero-stats { gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .hero-phone { justify-content: center; }

  .services-grid   { grid-template-columns: 1fr; }
  .portfolio-grid  { grid-template-columns: 1fr 1fr; }
  .portfolio-item--wide { grid-column: span 2; }
  .portfolio-item--tall { grid-row: span 1; }
  .about-stats     { grid-template-columns: 1fr 1fr; }
  .process-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; align-items: center; text-align: center; }
  .whatsapp-label  { display: none; }
  .whatsapp-float a { padding: 15px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--wide { grid-column: span 1; }
  .process-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .stat-number    { font-size: 36px; }
}

/* =================================================================
   HERO VIDEO BACKGROUND
   ================================================================= */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
/* Poster shown while video loads */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}

/* =================================================================
   LOGO IMAGE IN NAV
   ================================================================= */
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

/* =================================================================
   SERVICE CARD HEADER IMAGE
   ================================================================= */
.service-card-img {
  width: calc(100% + 64px);
  margin: -30px -32px 22px -32px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap {
  overflow: hidden;
  width: calc(100% + 64px);
  margin: -30px -32px 22px -32px;
  height: 170px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.05); }

/* =================================================================
   PORTFOLIO — expanded grid (up to 8 items)
   ================================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
/* All items default to 4/3 aspect ratio */
.portfolio-item { aspect-ratio: 4/3; }
.portfolio-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

/* =================================================================
   BEFORE & AFTER SECTION
   ================================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 240px;
}
.ba-half {
  position: relative;
  overflow: hidden;
}
.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ba-item:hover .ba-half img { transform: scale(1.04); }
.ba-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 100px;
  z-index: 1;
}
.ba-pill--before {
  background: rgba(17, 24, 39, 0.80);
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.ba-pill--after {
  background: var(--c-amber);
  color: #fff;
}
.ba-caption {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
}

/* Combined BA grid (single-image comparisons) */
.ba-combined-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-combined-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.ba-combined-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ba-combined-item:hover img { transform: scale(1.04); }
.ba-combined-item .ba-caption {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
}

/* If BA grid has odd number of pairs, last item spans full width */
.ba-grid > .ba-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.ba-grid > .ba-item:last-child:nth-child(odd) .ba-images {
  height: 300px;
}

/* Responsive BA */
@media (max-width: 768px) {
  .ba-grid         { grid-template-columns: 1fr; }
  .ba-combined-grid { grid-template-columns: 1fr 1fr; }
  .ba-images       { height: 200px; }
  .ba-grid > .ba-item:last-child:nth-child(odd) { grid-column: 1; }
  .ba-grid > .ba-item:last-child:nth-child(odd) .ba-images { height: 200px; }
}
@media (max-width: 480px) {
  .ba-combined-grid { grid-template-columns: 1fr; }
}
