/*
Theme Name: SN Construction & Supplies
Theme URI: https://snconstruction.com
Author: Mohammed Waseem
Description: A premium, highly optimized responsive theme for construction services, equipment rentals, and building materials supply.
Version: 1.0.0
Text Domain: sn-construction
*/

:root {
  --yellow: #FFC107;
  --yellow-dark: #e5ac00;
  --yellow-glow: rgba(255,193,7,0.35);
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f7f7f5;
  --gray-mid: #e8e8e4;
  --gray: #888;
  --text: #1e1e1e;
  --text-muted: #666;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255,193,7,0.12);
}
#navbar.scrolled {
  height: 66px;
  border-bottom-color: rgba(255,193,7,0.3);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
#navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
#navbar.scrolled::after { opacity: 1; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.3s;
}
.nav-logo:hover { transform: translateX(3px); }
.nav-logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--yellow-glow);
  transition: all 0.3s;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(5deg) scale(1.06); }
.nav-logo-icon i { color: var(--black); font-size: 22px; }
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--yellow);
  letter-spacing: 1.5px;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 10px;
  color: #777;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  padding: 5px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.07);
}
.nav-links li a {
  color: #aaa;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-links li a::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50px;
}
.nav-links li a span { position: relative; z-index: 1; }
.nav-links li a:hover { color: var(--black); }
.nav-links li a:hover::before { opacity: 1; }
.nav-links li.current-menu-item a,
.nav-links li a.active { color: var(--black); background: linear-gradient(135deg, var(--yellow), #f9a825); }

.nav-phone {
  display: flex; align-items: center; gap: 9px;
  color: var(--white); text-decoration: none;
  padding: 9px 18px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 1px;
}
.nav-phone i { color: var(--yellow); font-size: 14px; }
.nav-phone:hover { background: rgba(255,193,7,0.12); border-color: var(--yellow); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.hamburger:hover { background: rgba(255,193,7,0.15); border-color: var(--yellow); }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--yellow); transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: #111;
  padding: 12px 0;
  z-index: 999;
  border-top: 2px solid var(--yellow);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #bbb;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-bottom: 1px solid #222;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); background: rgba(255,193,7,0.05); }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 20px 90px;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: 0 -2px 20px var(--yellow-glow);
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 24px; border-radius: 50px; margin-bottom: 28px;
  box-shadow: 0 4px 20px var(--yellow-glow);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
  animation: hero-appear 0.9s ease-out;
}
@keyframes hero-appear { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-title span { color: var(--yellow); }

.hero-subtitle {
  font-size: clamp(13px, 1.8vw, 16px);
  color: #ccc;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  animation: fade-in 1s ease-out 0.2s both;
}
@keyframes fade-in { from{opacity:0} to{opacity:1} }
.hero-tagline {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
  animation: fade-in 1s ease-out 0.35s both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fade-in 1s ease-out 0.5s both;
  margin-bottom: 72px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  color: var(--black); border: none;
  padding: 16px 38px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px var(--yellow-glow);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,193,7,0.5); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white); border: 2px solid rgba(255,255,255,0.28);
  padding: 14px 38px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--yellow); border-color: var(--yellow);
  color: var(--black); transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--yellow-glow);
}

.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  animation: fade-in 1s ease-out 0.7s both;
}
.stat {
  text-align: center; padding: 16px 28px;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
  border: 1px solid rgba(255,193,7,0.18);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.stat:hover { transform: translateY(-5px); border-color: var(--yellow); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 38px; color: var(--yellow); line-height: 1;
}
.stat-label {
  font-size: 11px; color: #aaa; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 5px; font-weight: 600;
}

/* ─── SECTION COMMON ─── */
section { padding: 96px 40px; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
  padding: 3px 0; border-bottom: 2px solid var(--yellow);
}
.section-title {
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 900;
  text-transform: uppercase; color: var(--black); line-height: 1.0; margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: var(--text-muted); max-width: 520px;
  line-height: 1.75; margin-bottom: 56px;
}
.section-header { text-align: center; }
.section-header .section-desc { margin-left: auto; margin-right: auto; }

/* ─── SERVICES ─── */
#services { background: var(--gray-light); }
.category-block { margin-bottom: 64px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.category-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.category-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.dot-y { background: var(--yellow); }
.dot-b { background: #2196F3; }
.dot-g { background: #4CAF50; }
.category-label h3 {
  font-size: 18px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800;
}
.category-label .cat-line { flex: 1; height: 1px; background: #ddd; }

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

.service-card {
  background: var(--white);
  border-radius: 6px; overflow: hidden;
  border: 1.5px solid #ebebeb;
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 48px rgba(255,193,7,0.2); border-color: var(--yellow); }
.service-card:hover::before { opacity: 1; }

.card-img {
  height: 180px; overflow: hidden; position: relative;
  background: #1a1a1a;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; opacity: 0.9;
}
.service-card:hover .card-img img { transform: scale(1.1); opacity: 1; }
.card-img-icon {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  color: var(--black); width: 36px; height: 36px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 20px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--black); margin-bottom: 8px;
}
.card-body p { font-size: 14px; color: #666; line-height: 1.65; flex: 1; margin-bottom: 18px; }
.btn-card {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--yellow);
  padding: 10px 20px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; align-self: flex-start;
}
.btn-card:hover { background: var(--yellow); color: var(--black); transform: translateX(4px); }
.btn-card::after { content: '→'; font-size: 14px; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 4px solid var(--yellow); border-radius: 6px; z-index: -1;
}
.about-img-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 20px; border-radius: 4px;
  box-shadow: 0 8px 24px var(--yellow-glow);
}
.about-text .section-tag { margin-top: 0; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 36px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--gray-light); border-radius: 6px;
  border-left: 3px solid var(--yellow);
  transition: all 0.3s;
}
.about-feature:hover { background: rgba(255,193,7,0.07); transform: translateX(4px); }
.about-feature i { color: var(--yellow); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.about-feature strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.about-feature span { font-size: 13px; color: #666; }

/* ─── PROJECTS ─── */
#projects {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  position: relative; overflow: hidden;
}
#projects::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,193,7,0.07) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,193,7,0.04) 0%, transparent 50%);
}
#projects .section-tag, #projects .section-title { color: var(--white); }
#projects .section-desc { color: #888; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.project-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #444; transition: all 0.4s;
}
.project-placeholder i { font-size: 48px; color: #333; transition: all 0.4s; }
.project-placeholder span { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.project-card:hover .project-placeholder { background: linear-gradient(135deg, #222, #333); }
.project-card:hover .project-placeholder i { color: var(--yellow); transform: scale(1.2); }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 20px 18px;
  transform: translateY(100%); transition: transform 0.4s;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-info h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 18px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.project-info span { font-size: 12px; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--gray-light); padding: 96px 40px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white); padding: 32px; border-radius: 6px;
  border: 1.5px solid #ebebeb;
  transition: all 0.35s ease; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 8px; left: 20px;
  font-size: 90px; color: var(--yellow); opacity: 0.08;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--yellow); box-shadow: 0 16px 40px rgba(255,193,7,0.15); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--yellow); font-size: 13px; }
.testimonial-text {
  font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid #f0f0f0;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #f9a825);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 800; font-size: 16px;
  font-family: 'Barlow Condensed', sans-serif; flex-shrink: 0;
}
.testimonial-info strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.testimonial-info span { font-size: 12px; color: var(--gray); }

/* ─── COUNTER ─── */
.counter-section {
  background: linear-gradient(135deg, var(--black), var(--black-soft));
  padding: 72px 40px; position: relative; overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,193,7,0.07) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,193,7,0.04) 0%, transparent 50%);
}
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.counter-item { text-align: center; padding: 20px; }
.counter-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(40px, 6vw, 60px); color: var(--yellow); line-height: 1;
  margin-bottom: 8px; text-shadow: 0 0 30px rgba(255,193,7,0.4);
}
.counter-label {
  font-size: 13px; color: #777; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

/* ─── WHY CHOOSE US STRIP ─── */
.why-strip {
  background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
  padding: 70px 20px;
  border-top: 1px solid #e8e8e4;
  border-bottom: 1px solid #e8e8e4;
}
.why-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.why-box {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.why-box i { font-size: 30px; color: #FFC107; margin-bottom: 14px; }
.why-box h4 { color: #111; font-family: 'Barlow Condensed'; letter-spacing: 1px; margin-bottom: 8px; }
.why-box p { font-size: 13px; color: #666; line-height: 1.6; }
.why-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,193,7,0.6);
  box-shadow: 0 20px 40px rgba(255,193,7,0.15);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--black), #1a1a1a);
  padding: 100px 20px; text-align: center; position: relative; overflow: hidden;
  border-top: 3px solid var(--yellow); border-bottom: 3px solid var(--yellow);
  margin-top: 80px; margin-bottom: 60px;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(255,193,7,0.08) 0%, transparent 50%),
              radial-gradient(circle at 75% 80%, rgba(255,193,7,0.05) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding:20px 0; }
.cta-tag {
  display: inline-block; background: linear-gradient(135deg, var(--yellow), #f9a825); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 22px; border-radius: 50px; margin-bottom: 25px; box-shadow: 0 4px 18px var(--yellow-glow);
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(32px, 5vw, 56px); color: var(--white);
  line-height: 1.2; margin-top:10px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px;
}
.cta-title span { color: var(--yellow); }
.cta-desc { font-size: 16px; color: #aaa; line-height: 1.8; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner::after {
  content:""; display:block; width:80px; height:3px; background:var(--yellow); margin:0 auto 30px; border-radius:2px;
}

/* ─── CONTACT ─── */
#contact { background: var(--gray-light); padding: 96px 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; padding: 16px; background: var(--white); border-radius: 6px; border-left: 3px solid var(--yellow); transition: all 0.3s; }
.contact-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(255,193,7,0.12); }
.contact-item-icon { width: 42px; height: 42px; flex-shrink: 0; background: linear-gradient(135deg, var(--yellow), #f9a825); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 16px; }
.contact-item-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 2px; }
.contact-item-text span { font-size: 15px; color: var(--text); font-weight: 500; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; transition: all 0.3s; border: 1.5px solid #ddd; color: var(--text); }
.social-btn:hover { transform: translateY(-4px); border-color: transparent; color: white; }
.social-wa { color: #25D366; border-color: rgba(37,211,102,0.3); }
.social-wa:hover { background: #25D366; }
.social-fb { color: #1877F2; border-color: rgba(24,119,242,0.3); }
.social-fb:hover { background: #1877F2; }
.social-insta { color: #E4405F; border-color: rgba(228,64,95,0.3); }
.social-insta:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-form-wrap { background: var(--white); padding: 40px; border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1.5px solid #ebebeb; }
.contact-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }

/* Contact Form 7 integration formatting modifications */
.contact-form-wrap p { margin-bottom: 18px; }
.contact-form-wrap label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 7px; }
.contact-form-wrap label span.wpcf7-form-control-wrap { display: block; margin-top: 4px; }
.contact-form-wrap input[type="text"], .contact-form-wrap input[type="tel"], .contact-form-wrap select, .contact-form-wrap textarea {
  width: 100%; padding: 12px 16px; background: var(--gray-light); border: 1.5px solid #e8e8e8; border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--text); transition: all 0.3s; outline: none;
}
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px rgba(255,193,7,0.15); }
.contact-form-wrap textarea { height: 120px; resize: vertical; }
.contact-form-wrap .btn-submit { background: linear-gradient(135deg, var(--black), #2a2a2a); color: var(--yellow); border: none; padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; cursor: pointer; width: 100%; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; }
.contact-form-wrap .btn-submit:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 24px var(--yellow-glow); }

/* ─── CLIENTS ─── */
.clients-section { background: var(--gray-light); padding: 72px 40px; }
.clients-title { text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--gray); margin-bottom: 48px; }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; align-items: center; }
.client-logo { height: 90px; background: var(--white); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 13px; letter-spacing: 1px; font-weight: 600; border: 1.5px solid #e8e8e8; transition: all 0.3s; cursor: default; gap: 8px; flex-direction: column; }
.client-logo i { font-size: 24px; }
.client-logo:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255,193,7,0.18); }

/* ─── FOOTER ─── */
footer { background: #070707; position: relative; border-top: 1px solid rgba(255,193,7,0.15); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 60px; padding: 64px 60px 40px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 1; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--yellow), #f9a825); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 18px; }
.footer-logo-text span:first-child { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; color: var(--yellow); letter-spacing: 1.5px; }
.footer-logo-text span:last-child { display: block; font-size: 10px; color: #555; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.footer-about p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 22px; }
.footer-stats { display: flex; gap: 20px; }
.footer-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; color: var(--yellow); line-height: 1; }
.footer-stat-label { font-size: 11px; color: #555; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 3px; color: var(--yellow); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,193,7,0.2); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #666; text-decoration: none; font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 10px; color: var(--yellow); }
.footer-links a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; padding: 10px 12px; background: rgba(255,255,255,0.02); border-radius: 4px; border-left: 2px solid var(--yellow); transition: all 0.3s; }
.footer-contact-item:hover { background: rgba(255,193,7,0.06); transform: translateX(3px); }
.footer-contact-item i { color: var(--yellow); font-size: 14px; margin-top: 1px; }
.footer-contact-text strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #555; margin-bottom: 2px; }
.footer-contact-text span, .footer-contact-text a { font-size: 13px; color: #999; text-decoration: none; transition: color 0.3s; }
.footer-contact-text a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 6px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); color: #666; position: relative; overflow: hidden; }
.footer-social-btn::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.footer-social-btn:hover { transform: translateY(-4px); border-color: transparent; }
.footer-social-btn:hover::before { opacity: 1; }
.footer-social-btn i { position: relative; z-index: 1; }
.fs-wa { color: #25D366; } .fs-wa::before { background: #25D366; } .fs-wa:hover i { color: white; }
.fs-fb { color: #1877F2; } .fs-fb::before { background: #1877F2; } .fs-fb:hover i { color: white; }
.fs-ig { color: #E4405F; } .fs-ig::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } .fs-ig:hover i { color: white; }
.fs-li { color: #0A66C2; } .fs-li::before { background: #0A66C2; } .fs-li:hover i { color: white; }
.footer-bottom { padding: 24px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; position: relative; z-index: 1; }
.footer-copyright { color: #555; }
.footer-copyright span { color: var(--yellow); font-weight: 700; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #555; text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer-legal a:hover { color: var(--yellow); }
.footer-credit { color: #444; font-size: 12px; }

/* ─── FLOATING ELEMENTS ─── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 6px 22px rgba(37,211,102,0.45); transition: transform 0.25s, box-shadow 0.25s; animation: wa-pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.65); animation: none; }
@keyframes wa-pulse { 0%,100%{box-shadow:0 6px 22px rgba(37,211,102,0.45)} 50%{box-shadow:0 6px 36px rgba(37,211,102,0.8)} }
.scroll-to-top { position: fixed; bottom: 96px; right: 28px; z-index: 998; width: 44px; height: 44px; background: linear-gradient(135deg, var(--yellow), #f9a825); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; box-shadow: 0 4px 18px var(--yellow-glow); transition: all 0.3s; opacity: 0; pointer-events: none; }
.scroll-to-top.visible { opacity: 1; pointer-events: auto; }
.scroll-to-top:hover { transform: translateY(-4px); box-shadow: 0 6px 28px rgba(255,193,7,0.55); }

/* ─── RESPONSIVE MEDIA QUERIES ─── */
@media (max-width: 1200px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } .projects-grid { grid-template-columns: repeat(2, 1fr); } .testimonials-grid { grid-template-columns: repeat(2, 1fr); } .nav-phone { display: none; } #navbar { padding: 0 36px; } }
@media (max-width: 768px) { section { padding: 72px 20px; } #navbar { padding: 0 20px; height: 66px; } .nav-links { display: none; } .hamburger { display: flex; } .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-img-accent { display: none; } .contact-grid { grid-template-columns: 1fr; gap: 36px; } .about-features { grid-template-columns: 1fr; } .cards-grid { grid-template-columns: 1fr; } .projects-grid { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 44px 24px 24px; } .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; } .footer-legal { gap: 12px; flex-direction: column; } .hero-stats { gap: 16px; } .counters-grid { grid-template-columns: repeat(2, 1fr); } .cta-buttons { flex-direction: column; align-items: center; } }
@media (max-width: 480px) { .hero-btns { flex-direction: column; align-items: center; } .hero-stats { flex-direction: column; } .clients-grid { grid-template-columns: repeat(2, 1fr); } .counters-grid { grid-template-columns: 1fr; } #navbar { padding: 0 16px; } .footer-top { padding: 36px 16px 20px; } .footer-bottom { padding: 18px 16px; } .contact-form-wrap { padding: 28px 20px; } }