/* =============================================
   KAL ENERGY SOLUTIONS — MAIN STYLESHEET
   Cybergate MSP Technology
============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #E8312A; text-decoration: none; transition: color 0.2s; }
a:hover { color: #c4261f; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.15;
  color: #1a1a1a;
}

.sec-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8312A;
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}

.sec-body {
  color: #666;
  font-weight: 300;
  line-height: 1.85;
  max-width: 580px;
}

.divider {
  width: 48px;
  height: 3px;
  background: #E8312A;
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: #E8312A;
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid #E8312A;
}

.btn-red:hover { background: #c4261f; border-color: #c4261f; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid #1a1a1a;
  color: #1a1a1a !important;
  padding: 11px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover { background: #1a1a1a; color: #fff !important; }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 72px;
  transition: box-shadow 0.3s;
}

#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 5%;
}

.site-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo span { color: #E8312A; }

.site-logo img { height: 44px; width: auto; }

/* Main Nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

#primary-nav ul li { position: relative; }

#primary-nav ul li a {
  color: #444;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.2s;
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item > a { color: #E8312A; }

/* Dropdown */
#primary-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #E8312A;
  flex-direction: column;
  gap: 0;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
}

#primary-nav ul li:hover > ul { display: flex; }

#primary-nav ul li ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.02em;
  text-transform: none;
}

#primary-nav ul li ul li a:hover { color: #E8312A; background: #fafafa; }

.nav-cta-btn {
  background: #E8312A;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 3px;
  margin-left: 16px;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}

.nav-cta-btn:hover { background: #c4261f !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero-section {
  margin-top: 72px;
  height: calc(100vh - 72px);
  min-height: 520px;
  max-height: 780px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 680px;
}

.hero-label {
  display: inline-block;
  background: #E8312A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-section .hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CREDENTIALS BAR ── */
.creds-bar {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 6%;
}

.creds-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.creds-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-right: 32px;
  white-space: nowrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-left: 1px solid #e0e0e0;
}

.cred-icon {
  width: 36px;
  height: 36px;
  background: #E8312A;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex-shrink: 0;
}

.cred-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.cred-text small {
  font-size: 11px;
  color: #888;
}

/* ── SECTIONS ── */
.section-pad { padding: 96px 6%; }
.section-pad-sm { padding: 64px 6%; }
.bg-white { background: #fff; }
.bg-light { background: #f9f9f9; }
.bg-dark { background: #111; }

/* ── INTRO SPLIT ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-img {
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
}

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

.intro-points { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }

.intro-pt { display: flex; gap: 16px; align-items: flex-start; }

.intro-pt-num {
  width: 32px;
  height: 32px;
  background: #E8312A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.intro-pt-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.intro-pt-body span { font-size: 13px; color: #777; line-height: 1.65; }

/* ── SERVICES GRID ── */
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .divider { margin: 14px auto; }
.services-header .sec-body { margin: 0 auto; text-align: center; }

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

.svc-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-5px); }

.svc-img { height: 190px; overflow: hidden; }

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

.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-body { padding: 24px; }

.svc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8312A;
  margin-bottom: 8px;
}

.svc-name {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.svc-desc { font-size: 13px; color: #777; line-height: 1.75; }

.svc-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #E8312A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.svc-link:after { content: ' →'; }

/* ── SERVICE SINGLE PAGE ── */
.service-hero {
  margin-top: 72px;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
}

.service-hero .hero-bg { background-size: cover; background-position: center; }
.service-hero .hero-overlay { background: rgba(0,0,0,0.55); }

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
}

.service-hero-content .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.service-hero-content .breadcrumb a { color: rgba(255,255,255,0.65); }
.service-hero-content .breadcrumb span { color: #fff; }

.service-hero-content h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
}

.service-content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.service-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #1a1a1a;
}

.service-content p { color: #555; line-height: 1.85; margin-bottom: 16px; }

.service-content ul {
  margin: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-content ul li {
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8312A;
  font-weight: 700;
}

.service-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 32px 28px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sidebar-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.sidebar-cta p { font-size: 13px; color: #aaa; margin-bottom: 24px; line-height: 1.7; }

.sidebar-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
}

.sidebar-contact-item a { color: #E8312A; }

.sidebar-services {
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 24px;
}

.sidebar-services h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sidebar-services ul { display: flex; flex-direction: column; gap: 4px; }

.sidebar-services ul li a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: #555;
  border-radius: 3px;
  transition: all 0.2s;
}

.sidebar-services ul li a:hover,
.sidebar-services ul li.active a {
  background: #E8312A;
  color: #fff !important;
}

/* ── PROCESS / HOW IT WORKS ── */
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .divider { margin: 14px auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.step-item { text-align: center; padding: 0 16px; }

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #E8312A;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #E8312A;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step-desc { font-size: 13px; color: #777; line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band {
  background: #1a1a1a;
  padding: 60px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: #E8312A; }
.stat-lbl { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

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

.why-img { height: 500px; border-radius: 4px; overflow: hidden; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }

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

.why-item {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.why-item:last-child { border-bottom: none; }

.why-icon {
  width: 42px;
  height: 42px;
  background: #fff3f3;
  border: 1px solid #f5bdb8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-item-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-text { font-size: 13px; color: #777; line-height: 1.7; }

/* ── PORTFOLIO ── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proj-card { border-radius: 4px; overflow: hidden; }

.proj-img { height: 250px; overflow: hidden; }

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.proj-info { padding: 18px 0 8px; }
.proj-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #E8312A; margin-bottom: 4px; }
.proj-title { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
.proj-loc { font-size: 12px; color: #999; }

/* ── CTA STRIP ── */
.cta-section {
  background: #E8312A;
  padding: 80px 6%;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p { color: rgba(255,255,255,0.85); max-width: 440px; margin: 0 auto 32px; font-size: 15px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: #fff;
  color: #E8312A !important;
  padding: 13px 30px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-white:hover { background: #f0f0f0; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.faq-question .faq-icon {
  font-size: 20px;
  color: #E8312A;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: #666; line-height: 1.8; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

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

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: #fff3f3;
  border: 1px solid #f5bdb8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-item span { font-size: 13px; color: #666; }
.contact-info-item a { color: #E8312A; font-size: 13px; }

.contact-form-wrap {
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 36px;
}

.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #E8312A; }

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

/* ── ABOUT PAGE ── */
.about-hero-text { max-width: 700px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}

.team-img { height: 220px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }

.team-body { padding: 20px; }
.team-name { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: #E8312A; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PORTFOLIO PAGE ── */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active { background: #E8312A; border-color: #E8312A; color: #fff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 72px;
  background: #1a1a1a;
  padding: 56px 6%;
}

.page-hero .breadcrumb {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.page-hero .breadcrumb a { color: #888; }
.page-hero .breadcrumb a:hover { color: #E8312A; }
.page-hero .breadcrumb .sep { margin: 0 8px; color: #555; }
.page-hero .breadcrumb .current { color: #fff; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p { font-size: 15px; color: #888; max-width: 560px; }

/* ── FOOTER ── */
#site-footer {
  background: #111;
  color: #aaa;
}

.footer-main {
  padding: 60px 6% 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo-text span { color: #E8312A; }
.footer-logo-text img { height: 40px; width: auto; margin-bottom: 14px; }

.footer-about { font-size: 13px; color: #666; line-height: 1.85; margin-bottom: 20px; }

.footer-contact-line {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 9px;
}

.footer-contact-line a { color: #aaa; }
.footer-contact-line a:hover { color: #E8312A; }

.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #666; }
.footer-col ul li a:hover { color: #E8312A; }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #444;
}

.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #E8312A; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .intro-grid { gap: 48px; }
  .why-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .service-content-wrap { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-img { order: -1; height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  #primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .creds-inner { gap: 12px; }
  .creds-label { display: none; }
  .section-pad { padding: 64px 5%; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-section { max-height: 620px; }
  .hero-section h1 { font-size: 34px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cred-item { padding: 6px 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 5% 28px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu ul li a {
  display: block;
  padding: 11px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.03em;
}

.mobile-menu ul li a:hover { color: #E8312A; }

.mobile-menu ul li ul {
  padding-left: 16px;
}

.mobile-menu ul li ul li a {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: block;
  background: #E8312A;
  color: #fff !important;
  text-align: center;
  padding: 13px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── WP ADMIN BAR FIX ── */
.admin-bar #site-header { top: 32px; }
.admin-bar .mobile-menu { top: 104px; }
@media (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
  .admin-bar .mobile-menu { top: 118px; }
}
