@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #e8682a;
  --secondary: #772217;
  --background: #faf8f4;
  --foreground: #333333;
  --muted: #ece9e5;
  --muted-foreground: #666666;
  --card: #ffffff;
  --border: #ddd9d2;
  --shadow-card: 0 4px 20px -4px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 40px -10px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: all .35s ease;
  padding: 16px 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  padding: 8px 0;
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo img { height: 52px; transition: height .3s ease; }
.header.scrolled .logo img { height: 42px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.nav-links a { color: rgba(255,255,255,.9); position: relative; }
.header.scrolled .nav-links a { color: var(--foreground); }
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--primary);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.header.scrolled .menu-btn { color: var(--foreground); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  height: 100svh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .7s ease, transform 1.3s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.66), rgba(0,0,0,.52) 48%, rgba(0,0,0,.7));
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  height: 100%;
}
.kicker {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: .24em;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1, .page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 7vw, 86px);
  line-height: .94;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero h1 .accent, .page-hero h1 .accent { color: var(--primary); }
.hero p, .page-hero p { max-width: 820px; color: rgba(255,255,255,.8); font-size: 18px; margin: 0 auto; }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.btn {
  border: 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding: 14px 32px;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero .btn {
  font-size: 15px;
  min-width: 188px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--secondary); }
.btn-outline { border: 2px solid rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-dark { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-dark:hover { background: var(--primary); color: #fff; }

.hero-controls {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 26px;
  height: 4px;
  background: rgba(255,255,255,.45);
  border: 0;
  cursor: pointer;
}
.hero-dot.active { width: 42px; background: var(--primary); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  cursor: pointer;
  font-size: 18px;
}
.hero-arrow:hover {
  background: rgba(232,104,42,.88);
  border-color: rgba(232,104,42,.88);
}
.hero-arrow-left { left: 22px; }
.hero-arrow-right { right: 22px; }

section { padding: 80px 0; }
.section-muted { background: var(--muted); }
.section-dark { background: var(--foreground); color: #fff; }
.section-header { text-align: center; margin-bottom: 42px; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 58px);
  margin: 0 0 14px;
  line-height: 1;
}
.section-subtitle { color: var(--muted-foreground); max-width: 760px; margin: 0 auto; }
.section-dark .section-subtitle { color: rgba(255,255,255,.72); }

.home-services { background: #efedeb; }
.home-services .section-header { margin-bottom: 30px; }
.home-services .card {
  min-height: 548px;
  display: flex;
  flex-direction: column;
}
.service-card-image {
  aspect-ratio: 1 / 1;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}
.home-services .card-title {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.home-services .card-text {
  font-size: 15px;
  margin-bottom: 14px;
}
.home-services .card-link {
  font-size: 15px;
  display: inline-block;
  font-weight: 800;
}

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-heavy); }
.card-body { padding: 18px; }
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 10px;
}
.card-text { color: var(--muted-foreground); font-size: 14px; margin: 0 0 16px; }
.card-link { color: var(--primary); font-weight: 700; font-family: 'Montserrat', sans-serif; }

.image-tile { position: relative; overflow: hidden; cursor: pointer; }
.image-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.image-tile:hover img { transform: scale(1.08); }
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.84), rgba(0,0,0,.2));
  color: #fff;
  display: flex;
  align-items: end;
  padding: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-why {
  padding-top: 46px;
  padding-bottom: 64px;
}
.home-why-layout {
  align-items: start;
}
.home-why-content .kicker {
  margin-bottom: 8px;
}
.home-why-title {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 14px;
}
.home-why-subtitle {
  margin: 0 0 14px;
  max-width: none;
  font-size: 18px;
  line-height: 1.35;
}
.why-icon-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 16px;
}
.why-icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2f3238;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.why-icon {
  width: 40px;
  height: 40px;
  background: #f1e7e2;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}
.home-why-image-wrap {
  align-self: start;
}
.home-why-image {
  width: 100%;
  max-width: 620px;
  height: 520px;
  object-fit: cover;
  margin-left: auto;
}

.list-check { display: grid; gap: 12px; padding: 0; list-style: none; }
.list-check li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.list-check li::before { content: '✓'; color: var(--primary); font-weight: 800; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  text-align: center;
  gap: 18px;
}
.stats .num {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
}
.stats .label {
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
}

.clients-grid { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 16px; }
.client-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  place-items: center;
}
.client-box img { max-height: 64px; width: 100%; object-fit: contain; }

.youtube-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.short-card { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.05); }
.short-card iframe { width: 100%; aspect-ratio: 9 / 16; border: 0; display: block; border-radius: 12px; }

.cta {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .11;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.25) 22px 44px);
}
.cta .container { position: relative; z-index: 1; text-align: center; }

.footer { background: var(--foreground); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 30px; padding: 72px 0 36px; }
.footer h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}
.footer p, .footer li, .footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

.page-hero {
  background: var(--foreground);
  color: #fff;
  padding: 150px 0 70px;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 64px); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted-foreground);
  font-weight: 600;
}
.back-link:hover { color: var(--foreground); }

.form-block {
  background: var(--foreground);
  color: #fff;
  padding: 26px;
  position: sticky;
  top: 110px;
}
.input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 14px;
}
.input::placeholder, textarea::placeholder { color: rgba(255,255,255,.6); }

.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 26px; }
.filter-btn {
  border: 0;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 11px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.active { background: var(--primary); color: #fff; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  place-items: center;
  z-index: 1400;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 78vh; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.machine-nav {
  position: sticky;
  top: 72px;
  z-index: 60;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.machine-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.machine-nav button {
  white-space: nowrap;
  border: 0;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.machine-nav button:hover { background: var(--primary); color: #fff; }

.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  place-items: center;
  z-index: 1500;
}
.quote-modal.open { display: grid; }
.quote-box {
  width: min(520px, 92%);
  background: #fff;
  padding: 24px;
}
.quote-box h3 { margin-top: 0; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.quote-box .input, .quote-box textarea {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
}

.hide-desktop { display: none; }

/* ────── Scroll Animations ────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clients-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .youtube-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .header-phone, .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  section { padding: 62px 0; }
  .hero { min-height: 560px; }
  .hero-arrow { display: none; }
  .split, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .page-hero { padding: 130px 0 58px; }
  .machine-nav { top: 62px; }
  .timeline-year { font-size: 18px; width: 52px; }
  .timeline-dot { width: 10px; height: 10px; margin-top: 6px; }
  .timeline-content { padding: 12px 14px; font-size: 14px; }
}

@media (max-width: 640px) {
  .grid-4, .clients-grid, .youtube-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 52px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: center; }
  .hide-desktop { display: block; }
}

/* Client Stats Section */
.clients-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 8px 0;
}

.stat-item p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* YouTube Subscribe Button */
.youtube-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FF0000 !important;
  color: white !important;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.youtube-subscribe-btn:hover {
  background: #CC0000 !important;
  transform: translateY(-2px);
}

.youtube-subscribe-btn i {
  font-size: 1.2em;
}

/* Short Card Titles */
.short-title {
  display: block;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  transition: color 0.3s ease;
}
a.short-title:hover {
  color: var(--primary);
}

/* Brochure Floating Button */
.brochure-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 104, 42, 0.3);
}

.brochure-float:hover {
  background: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(232, 104, 42, 0.5);
}

.brochure-float::after {
  content: 'Download Brochure';
  position: absolute;
  right: 70px;
  background: var(--foreground);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brochure-float:hover::after {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 640px) {
  .clients-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  
  .youtube-subscribe-btn {
    font-size: 0.875rem;
    padding: 10px 20px;
  }
  
  .brochure-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 82px;
    right: 16px;
  }
  
  .brochure-float::after {
    display: none;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }
  .hide-mobile { display: none; }
  .home-services .card-title { font-size: 26px; }
  .home-services .card-text,
  .home-services .card-link { font-size: 14px; }
  .home-why-subtitle { font-size: 17px; }
  .why-icon-list li { font-size: 15px; }
  .home-services .card { min-height: auto; }
  .home-why-image { height: 360px; max-width: none; }
  
  .work-gallery {
    grid-template-columns: 1fr !important;
  }
  
  .work-images-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Work Gallery Styles */
.work-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* Work Image Wraps on service pages */
.work-img-wrap {
  overflow: hidden;
  border-radius: 4px;
}
.work-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.work-img-wrap:hover img {
  transform: scale(1.1);
}

/* Service Cards (dark image bg) */
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-4px);
}
.service-card-img {
  position: relative;
  aspect-ratio: 1/1;
  background: #111;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-img::after {
  transform: scaleX(1);
}
.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card .card-title {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card .card-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}
.service-card .card-link:hover {
  gap: 12px;
}

/* Value Cards */
.value-card .card-body {
  padding: 24px 20px 28px;
}
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 104, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.timeline-year {
  width: 68px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.timeline-content {
  flex: 1;
  background: var(--muted);
  padding: 14px 18px;
  font-weight: 500;
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.5;
}

.work-image-large {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.work-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.work-image-large img,
.work-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-image-large:hover img,
.work-image-item:hover img {
  transform: scale(1.05);
}

.work-image-large .image-overlay,
.work-image-item .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-image-large:hover .image-overlay,
.work-image-item:hover .image-overlay {
  opacity: 1;
}

.work-image-item .image-overlay {
  padding: 16px;
}

/* Brochure Popup */
.brochure-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.brochure-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.brochure-popup-content {
  background: var(--card);
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--border);
}

.brochure-popup-overlay.show .brochure-popup-content {
  transform: translateY(0) scale(1);
}

.brochure-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s ease;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.brochure-popup-close:hover {
  color: var(--foreground);
  background: var(--muted);
}

.brochure-popup-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--foreground);
}

.brochure-popup-content p {
  color: var(--muted-foreground);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .brochure-popup-content {
    padding: 30px 20px;
  }
  .brochure-popup-content h2 {
    font-size: 20px;
  }
}
