/* =============================================
   MARTEL SRL — Main CSS v1.0
   Global Marketing IT
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap&subset=latin,latin-ext');

:root {
  --dark:    #0D1520;
  --dark2:   #111d2e;
  --card:    #16243a;
  --card2:   #1a2b42;
  --orange:  #E8601C;
  --orange2: #c94f14;
  --white:   #ffffff;
  --muted:   #8fa3bb;
  --border:  rgba(255,255,255,0.07);
  --radius:  10px;
  --shadow:  0 8px 40px rgba(0,0,0,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ─── SECTION LABELS ──────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ─── HEADINGS ────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── SECTION PADDING ─────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ─── NAVBAR ──────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(13,21,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#navbar.scrolled {
  background: rgba(13,21,32,0.98);
}
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 80px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: auto; padding-left: 24px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1600;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh;
  background: var(--dark);
  z-index: 1500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.mobile-menu a:hover { color: var(--orange); }

/* ─── HERO ────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(232,96,28,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 20%, rgba(232,96,28,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0D1520 0%, #0a1218 100%);
}
.hero-grid-overlay {
  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: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,28,0.12);
  border: 1px solid rgba(232,96,28,0.3);
  color: var(--orange);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title span { color: var(--orange); }
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
/* Decorative right element */
.hero-deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  opacity: 0.15;
}
.hero-deco svg { width: 100%; height: 100%; }

/* ─── FEATURES STRIP ──────────────────────── */
#features {
  background: var(--dark2);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .25s, border-color .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,96,28,0.4);
}
.feat-icon {
  width: 52px; height: 52px;
  background: rgba(232,96,28,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.feat-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.feat-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.feat-link:hover { gap: 10px; }

/* ─── ABOUT SECTION ───────────────────────── */
#about {
  padding: 90px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(232,96,28,0.4);
}
.about-badge .big { font-size: 2.4rem; line-height: 1; }
.about-badge .small { font-size: 13px; opacity: .9; margin-top: 4px; }
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 36px;
}
.about-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ab-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.ab-text { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES SECTION ────────────────────── */
#services {
  background: var(--dark2);
  padding: 90px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,96,28,0.3);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  background: rgba(232,96,28,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.svc-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.svc-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ─── WHY US ──────────────────────────────── */
#why-us {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  width: 44px; height: 44px;
  background: rgba(232,96,28,0.12);
  border: 1px solid rgba(232,96,28,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.why-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.why-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  overflow: hidden;
}
.why-stat-box {
  background: var(--card2);
  padding: 32px 24px;
  text-align: center;
}
.why-stat-box:nth-child(1) { border-radius: 14px 2px 2px 2px; }
.why-stat-box:nth-child(2) { border-radius: 2px 14px 2px 2px; }
.why-stat-box:nth-child(3) { border-radius: 2px 2px 2px 14px; }
.why-stat-box:nth-child(4) { border-radius: 2px 2px 14px 2px; }
.why-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.why-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── PROJECTS SECTION ────────────────────── */
#projects {
  background: var(--dark2);
  padding: 90px 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s;
}
.proj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,96,28,0.3);
}
.proj-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  background: rgba(232,96,28,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.proj-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.proj-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.proj-tag {
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ─── CTA BAND ────────────────────────────── */
#cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #c94f14 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner .section-title { margin-bottom: 8px; }
.cta-inner .section-sub { color: rgba(255,255,255,0.8); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; }

/* ─── SERVICE PAGE ────────────────────────── */
.page-hero {
  background: var(--dark2);
  padding: 140px 0 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(232,96,28,0.1) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-hero-tag a { color: var(--muted); }
.page-hero-tag a:hover { color: var(--orange); }
.page-hero-tag span { color: var(--border); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 700px;
}
.page-hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}
.svc-detail {
  padding: 90px 0;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--white);
}
.svc-body h2:first-child { margin-top: 0; }
.svc-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.svc-body ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--muted);
}
.svc-body ul li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-sidebar {
  position: sticky;
  top: 90px;
}
.svc-sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}
.svc-sidebar-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.svc-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--muted);
  transition: all .2s;
}
.svc-nav-list a:hover,
.svc-nav-list a.active {
  background: rgba(232,96,28,0.1);
  color: var(--orange);
}
.equip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.equip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.equip-item:last-child { border-bottom: none; }
.equip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ──────────────────────────── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding: 90px 0;
}
.about-page-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--orange);
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PROJECTS PAGE ───────────────────────── */
.proj-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 70px 0;
}
.proj-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  transition: border-color .25s;
}
.proj-full-card:hover { border-color: rgba(232,96,28,0.35); }
.proj-meta { }
.proj-client {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.proj-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.proj-full-desc p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.proj-full-desc h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.proj-full-desc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.proj-full-desc ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.proj-full-desc ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─── CONTACT PAGE ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px 0 90px;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.c-icon {
  width: 44px; height: 44px;
  background: rgba(232,96,28,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.c-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.c-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
.c-value a { color: var(--white); }
.c-value a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  display: none;
}
.form-msg.success { color: #4ade80; display: block; }
.form-msg.error   { color: #f87171; display: block; }

/* ─── FOOTER ──────────────────────────────── */
#footer {
  background: #080f18;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 15px;
  color: var(--muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 14px;
  color: var(--muted);
}
.footer-copy a { color: var(--orange); }

/* ─── WP ADMIN BAR HIDE ───────────────────── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 16px; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .proj-full-card { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid, .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-page-grid, .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .proj-page-grid { padding: 40px 0; }
  .proj-full-card { padding: 24px; }
  .section { padding: 60px 0; }
}

/* ─── Nav Phone ─────────────────────────── */
.nav-phone {
  margin-left: auto;
  padding-left: 24px;
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s;
  letter-spacing: 0.5px;
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { fill: var(--orange); transition: fill .2s; }
.nav-phone:hover svg { fill: #fff; }

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px !important;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  width: 100%;
  text-align: center;
}
.mobile-phone-btn:hover { background: var(--orange-hover, #e87800); }

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