/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue:       #2B5FA8;
  --blue-dark:  #1A3A6B;
  --blue-deep:  #0F2240;
  --blue-light: #4A7EC5;
  --blue-pale:  #EAF0F9;
  --red:        #CC2020;
  --red-light:  #E53535;
  --white:      #FFFFFF;
  --off-white:  #F4F7FA;
  --gray-100:   #F0F4F8;
  --gray-200:   #E1E8F0;
  --gray-400:   #8FA8C4;
  --gray-600:   #4A6080;
  --gray-800:   #1E2F42;
  --text:       #1A2738;
  --text-muted: #4A6080;
  --font-main:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
  --nav-h:      70px;
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-main); }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-cond);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-title { font-family: var(--font-cond); font-size: clamp(28px, 4vw, 42px); font-weight: 600; color: var(--blue-dark); line-height: 1.15; margin-bottom: 1rem; }
.section-body { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 600px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--red); color: #fff;
  font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 2px; transition: background var(--transition);
}
.btn-primary:hover { background: var(--red-light); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: transparent; color: #fff;
  font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6); border-radius: 2px; transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--blue); color: #fff;
  font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 2px; transition: background var(--transition);
}
.btn-blue:hover { background: var(--blue-dark); }
.arrow-icon { font-size: 18px; transition: transform var(--transition); }
.btn-primary:hover .arrow-icon,
.btn-blue:hover .arrow-icon { transform: translateX(4px); }

/* top-bar removed */

/* ===================== HEADER / NAV — Siemens floating style ===================== */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#main-header.scrolled {
  background: rgba(43, 95, 168, 0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 2rem;
  background: transparent;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text {
  font-family: var(--font-cond); font-size: 26px; font-weight: 700; letter-spacing: 1px;
  color: var(--white); line-height: 1;
}
.logo-text .red-o { color: var(--red); }
.logo-sub {
  font-family: var(--font-cond); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 3px;
}
/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  display: block; padding: 0 18px; height: var(--nav-h); line-height: var(--nav-h);
  font-family: var(--font-cond); font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links li::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links li:hover::after, .nav-links li.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px; background: var(--red); color: #fff;
  font-family: var(--font-cond); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 2px; transition: background var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--red-light); }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-deep); z-index: 999; padding: 5rem 2rem 2rem;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-cond); font-size: 20px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.mobile-nav a:hover { color: #fff; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 28px; cursor: pointer;
}

/* ===================== HERO — full viewport, SLB style ===================== */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  background: var(--blue);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?w=1920&q=80');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,34,64,0.95) 0%, rgba(27,58,107,0.6) 50%, rgba(27,58,107,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  padding: 0 2rem 5rem; max-width: 1200px; width: 100%; margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1.25rem;
}
.hero-tag::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.hero-h1 {
  font-family: var(--font-cond); font-size: clamp(36px, 6vw, 72px); font-weight: 700;
  color: #fff; line-height: 1.05; margin-bottom: 1.25rem; max-width: 800px;
}
.hero-h1 em { color: var(--red); font-style: normal; }
.hero-p {
  font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.75);
  line-height: 1.7; max-width: 520px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(0.5)translateY(-10px)} 50%{opacity:1;transform:scaleY(1)translateY(0)} }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--blue-dark); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-cond); font-size: 38px; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-num span { color: var(--red); }
.stat-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ===================== INTRO SECTION ===================== */
.intro-section { padding: 6rem 0; background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-image-wrap { position: relative; }
.intro-image-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: 2px; }
.intro-image-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue-dark); color: #fff; padding: 1.5rem;
  font-family: var(--font-cond);
}
.intro-image-badge .big { font-size: 36px; font-weight: 700; color: var(--red); display: block; line-height: 1; }
.intro-image-badge .small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.intro-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.intro-point { display: flex; gap: 14px; align-items: flex-start; }
.intro-point-icon {
  width: 40px; height: 40px; min-width: 40px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue); border-radius: 2px;
}
.intro-point h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--blue-dark); }
.intro-point p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===================== SERVICES SECTION — SLB white cards ===================== */
.services-section { padding: 6rem 0; background: var(--off-white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); }
.service-card {
  background: #fff; padding: 2.5rem 2rem;
  transition: box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(43,95,168,0.12); z-index: 1; position: relative; }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--blue); border-radius: 2px;
}
.service-num { font-family: var(--font-cond); font-size: 48px; font-weight: 700; color: var(--gray-200); line-height: 1; }
.service-card h3 { font-family: var(--font-cond); font-size: 19px; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.service-link { font-family: var(--font-cond); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 6px; }
.service-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ===================== VENDORS SECTION ===================== */
.vendors-section { padding: 5rem 0; background: var(--blue-dark); }
.vendors-header { text-align: center; margin-bottom: 3rem; }
.vendors-header .section-label { justify-content: center; color: rgba(255,255,255,0.6); }
.vendors-header .section-label::before { background: var(--red); }
.vendors-header .section-title { color: #fff; }
.vendors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.vendor-card {
  background: rgba(255,255,255,0.04); padding: 2rem 1.5rem;
  transition: background var(--transition);
}
.vendor-card:hover { background: rgba(255,255,255,0.1); }
.vendor-card-name {
  font-family: var(--font-cond); font-size: 17px; font-weight: 600;
  color: #fff; margin-bottom: 0.5rem;
}
.vendor-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 0.75rem; }
.vendor-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 1px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* ===================== IMAGE BREAK — SLB full-bleed section ===================== */
.image-break {
  position: relative; height: 420px;
  display: flex; align-items: center;
  overflow: hidden;
}
.image-break-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1599153066269-812ebf04f8ba?w=1920&q=80');
  background-size: cover; background-position: center;
}
.image-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,34,64,0.92) 0%, rgba(15,34,64,0.7) 50%, rgba(15,34,64,0.3) 100%);
}
.image-break-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.image-break h2 { font-family: var(--font-cond); font-size: clamp(26px, 3.5vw, 46px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; max-width: 600px; }
.image-break p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.7; margin-bottom: 1.75rem; }

/* ===================== PROJECTS SECTION ===================== */
.projects-section { padding: 6rem 0; background: #fff; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray-200); margin-top: 3rem; }
.project-card { background: #fff; overflow: hidden; }
.project-card-img { height: 220px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-card-body { padding: 1.75rem; }
.project-badge {
  display: inline-block; font-family: var(--font-cond); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; background: var(--blue-pale); color: var(--blue);
  margin-bottom: 0.75rem; border-radius: 1px;
}
.project-badge.active { background: #E8F5E9; color: #2E7D32; }
.project-card h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.5rem; }
.project-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.project-tag { font-size: 11px; padding: 3px 9px; background: var(--off-white); border: 1px solid var(--gray-200); color: var(--text-muted); border-radius: 1px; }

/* ===================== NEWS SECTION — SLB style ===================== */
.news-section { padding: 6rem 0; background: var(--off-white); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--gray-200); }
.news-card { background: #fff; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: box-shadow var(--transition); }
.news-card:hover { box-shadow: 0 4px 20px rgba(43,95,168,0.13); z-index: 1; position: relative; }
.news-card-img { overflow: hidden; flex-shrink: 0; }
.news-card-img img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-vendor-badge { display: inline-block; font-family: var(--font-cond); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 2px 8px; margin-bottom: 0.6rem; border-radius: 1px; }
.badge-siemens  { background: #E8F0FB; color: #1A56BE; }
.badge-schneider{ background: #E8F5E9; color: #2A6B3C; }
.badge-honeywell{ background: #FFF3E0; color: #B84E00; }
.badge-rockwell { background: #FCE4E4; color: #B01C1C; }
.badge-emerson  { background: #F3E8FB; color: #6A1E9E; }
.badge-yokogawa { background: #E0F4F1; color: #0D7062; }
.news-card h3 { font-family: var(--font-cond); font-size: 16px; font-weight: 600; color: var(--blue-dark); line-height: 1.35; margin-bottom: 0.5rem; flex: 1; }
.news-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.news-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--gray-200); }
.news-meta { font-size: 11px; color: var(--gray-400); letter-spacing: 0.5px; }
.news-read-more { font-family: var(--font-cond); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; }
.news-read-more::after { content: '→'; transition: transform var(--transition); }
.news-card:hover .news-read-more { color: var(--red); }
.news-card:hover .news-read-more::after { transform: translateX(4px); }

/* ===================== ABOUT SECTION ===================== */
.about-section { padding: 6rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.value-card { padding: 1.5rem; background: var(--off-white); border-top: 3px solid var(--blue); }
.value-card h4 { font-family: var(--font-cond); font-size: 15px; font-weight: 600; color: var(--blue-dark); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.about-image-stack { position: relative; padding-bottom: 2rem; padding-right: 2rem; }
.about-img-main { width: 100%; height: 380px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 200px; object-fit: cover;
  border: 4px solid #fff;
}
.about-detail-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-detail-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.about-detail-item::before { content: ''; width: 16px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ===================== IMAGE BREAK 2 ===================== */
.image-break-2 {
  position: relative; height: 340px; display: flex; align-items: center; overflow: hidden;
}
.image-break-2-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80');
  background-size: cover; background-position: center 30%;
}
.image-break-2-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 34, 64, 0.82);
}
.image-break-2-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 1200px; margin: 0 auto; width: 100%; text-align: center; }
.image-break-2 h2 { font-family: var(--font-cond); font-size: clamp(24px, 3vw, 40px); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.image-break-2 p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 1.75rem; line-height: 1.7; }

/* ===================== CONTACT SECTION ===================== */
.contact-section { padding: 6rem 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue); border-radius: 2px;
}
.contact-detail strong { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 3px; font-family: var(--font-cond); }
.contact-detail span { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-form-wrap { background: #fff; padding: 2.5rem; }
.contact-form-wrap h3 { font-family: var(--font-cond); font-size: 22px; font-weight: 600; color: var(--blue-dark); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; font-family: var(--font-cond); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font-main);
  border: 1px solid var(--gray-200); background: var(--off-white); color: var(--text);
  border-radius: 2px; transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===================== FOOTER ===================== */
footer { background: var(--blue-deep); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .logo-text { font-size: 28px; margin-bottom: 0.5rem; }
.footer-brand .logo-sub { margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-cond); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-newsletter p { font-size: 13px; margin-bottom: 1rem; line-height: 1.6; }
.footer-newsletter-form { display: flex; gap: 0; }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-size: 13px; outline: none; border-radius: 0; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form button { padding: 10px 16px; background: var(--red); color: #fff; border: none; font-family: var(--font-cond); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.footer-newsletter-form button:hover { background: var(--red-light); }
.footer-bottom { padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== PAGE SECTIONS (single page app) ===================== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  #main-header { top: 0; }
  .top-bar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-stack { padding-bottom: 0; padding-right: 0; }
  .about-img-secondary { display: none; }
  .intro-image-badge { bottom: 0; right: 0; }
  .hero-scroll { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .image-break { height: auto; padding: 4rem 0; }
  .image-break h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-content { padding: 0 1rem 4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 28px; }
  .vendors-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }

/* Fix: news card is now an <a> tag — force block display so image shows */
a.news-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }

/* News excerpt text */
.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
