/* ══════════════════════════════════════════
   JAISRIE MARKETING — style.css
   Colors from logo: Red · Blue · Orange · Green
   Font: Playfair Display (headings) + Nunito (body)
══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Logo Colors */
  --red:        #D0021B;
  --red-dark:   #A30016;
  --red-light:  #FDECEA;
  --blue:       #1A4FD4;
  --blue-dark:  #0F35A0;
  --blue-light: #E8EFFD;
  --orange:     #E87A00;
  --orange-dark:#B55F00;
  --orange-light:#FEF3E2;
  --green:      #2C9A3A;
  --green-dark: #1E6F28;
  --green-light:#E8F6EA;

  /* Neutrals */
  --white:  #FFFFFF;
  --off:    #FAFAF8;
  --light:  #F4F2EE;
  --border: #E5E2DC;
  --text:   #1A1A1A;
  --muted:  #6B6860;
  --dark:   #0D0D0D;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  /* Layout */
  --radius:    16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --trans:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── UTILITIES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.hidden { display: none !important; }

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}
.title-rule {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  margin-bottom: 20px;
}
.title-rule.center { margin: 0 auto 20px; }
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 540px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .section-desc { margin: 12px auto 0; }

/* ── SECTION CHIPS ── */
.section-chip {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.chip-blue   { background: var(--blue-light);   color: var(--blue-dark); }
.chip-orange { background: var(--orange-light); color: var(--orange-dark); }
.chip-red    { background: var(--red-light);    color: var(--red-dark); }
.chip-green  { background: var(--green-light);  color: var(--green-dark); }
.chip-white  { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all var(--trans);
  white-space: nowrap;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), #FF2D44);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(208,2,27,0.3);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(208,2,27,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
.btn-icon { font-size: 1rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--trans); padding: 4px 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--blue), var(--green)) 1;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
.nav-logo .logo-img {
  height: 58px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  transition: transform var(--trans);
}
.nav-logo:hover .logo-img { transform: scale(1.04); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--muted);
  transition: color var(--trans); position: relative; padding: 4px 0;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  border-radius: 1px; transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta):hover { color: var(--red) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--red), #FF2D44);
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; box-shadow: 0 4px 16px rgba(208,2,27,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(208,2,27,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  transition: all var(--trans);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, #0D0D0D 0%, #1a0505 30%, #0a0f2e 65%, #0a1a0a 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 40%,
    rgba(26,79,212,0.15) 0%,
    rgba(232,122,0,0.10) 40%,
    transparent 70%);
}

/* Floating icons */
.hero-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
@keyframes floatUp { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(5deg)} }
.float-icon {
  position: absolute; font-size: 4rem; opacity: 0.07;
  animation: floatUp 6s ease-in-out infinite;
}
.float-leaf  { top: 15%; left: 6%; animation-delay: 0s; font-size: 3.5rem; }
.float-drop  { top: 20%; right: 8%; animation-delay: 2s; font-size: 3rem; }
.float-sun   { bottom: 30%; right: 15%; animation-delay: 4s; font-size: 5rem; }

.hero-content {
  position: relative; z-index: 1;
  padding-top: 110px; padding-bottom: 70px;
  max-width: 700px;
}
.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo {
  height: 90px; width: auto;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}
.hero-tagline {
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
}
.title-blue   { color: #4D82FF; }
.title-orange { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 560px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px 32px;
  backdrop-filter: blur(10px);
}
.stat { flex: 1; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 800;
  line-height: 1;
}
.stat:nth-child(1) .stat-num { color: var(--red); }
.stat:nth-child(3) .stat-num { color: var(--blue); }
.stat:nth-child(5) .stat-num { color: var(--orange); }
.stat-suf {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 800; line-height: 1;
}
.stat:nth-child(1) .stat-suf { color: var(--red); }
.stat:nth-child(3) .stat-suf { color: var(--blue); }
.stat:nth-child(5) .stat-suf { color: var(--orange); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 600; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Scroll hint */
@keyframes scrollAni { 0%{height:0;opacity:1} 100%{height:44px;opacity:0} }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-bar { width: 1px; background: var(--orange); animation: scrollAni 2s ease infinite; }

/* ── TRUST BAR ── */
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-bar {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--blue), var(--green));
  overflow: hidden; padding: 0;
}
.trust-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  padding: 13px 28px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); flex-shrink: 0;
}

/* ── ABOUT ── */
.about { background: var(--off); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px 20px;
  text-align: center;
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--blue), var(--green)) 1;
}
.about-logo-card img { height: 100px; width: auto; margin: 0 auto 16px; }
.about-logo-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase;
}
.about-badge {
  position: absolute;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 14px 18px; text-align: center;
}
.about-badge-1 { bottom: -24px; right: -24px; }
.about-badge-2 { top: -20px; left: -20px; }
.badge-num {
  display: block;
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  line-height: 1;
}
.about-badge-1 .badge-num { color: var(--orange); }
.about-badge-2 .badge-num { color: var(--blue); }
.badge-txt { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 1.02rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.pill {
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
}
.pill-green  { background: var(--green-light);  color: var(--green-dark); }
.pill-blue   { background: var(--blue-light);   color: var(--blue-dark); }
.pill-orange { background: var(--orange-light); color: var(--orange-dark); }
.pill-red    { background: var(--red-light);    color: var(--red-dark); }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all var(--trans); cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.sc-solar::before   { background: linear-gradient(90deg, var(--orange), #FFAF38); }
.sc-commercial::before { background: linear-gradient(90deg, var(--blue), #4D82FF); }
.sc-industrial::before { background: linear-gradient(90deg, var(--red), #FF4D60); }
.sc-water::before   { background: linear-gradient(90deg, var(--green), #3DC24E); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sc-icon-wrap {
  width: 62px; height: 62px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sc-orange { background: var(--orange-light); }
.sc-blue   { background: var(--blue-light); }
.sc-red    { background: var(--red-light); }
.sc-green  { background: var(--green-light); }
.sc-icon { font-size: 2rem; }
.sc-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head); font-size: 4rem; font-weight: 800;
  color: var(--border); line-height: 1;
  transition: color var(--trans);
}
.service-card:hover .sc-num { color: rgba(0,0,0,0.04); }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 18px; }
.sc-link { font-size: 0.88rem; font-weight: 700; transition: letter-spacing var(--trans); }
.sc-solar .sc-link    { color: var(--orange); }
.sc-commercial .sc-link { color: var(--blue); }
.sc-industrial .sc-link { color: var(--red); }
.sc-water .sc-link    { color: var(--green); }
.service-card:hover .sc-link { letter-spacing: 0.5px; }

/* ── WHY BAND ── */
.why-band {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0a00 40%, #000d2e 100%);
  padding: 80px 0;
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: center;
}
.why-title {
  font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-top: 10px;
}
.why-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.why-feat {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 20px 16px;
}
.wf-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-style: normal;
}
.wf-orange { background: var(--orange-light); }
.wf-blue   { background: var(--blue-light); }
.wf-green  { background: var(--green-light); }
.wf-red    { background: var(--red-light); font-weight: 900; color: var(--red); font-size: 1.2rem; }
.why-feat strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.why-feat p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ── PROJECTS ── */
.projects { background: var(--light); }
.projects-grid {
  display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 20px; align-items: start;
}
.project-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-featured { border: 2px solid var(--blue); }
.project-visual {
  height: 160px; display: flex; align-items: center;
  justify-content: center; position: relative;
}
.pv-home       { background: linear-gradient(135deg, #FEF3E2, #FFD998); }
.pv-commercial { background: linear-gradient(135deg, #E8EFFD, #B0C8FF); }
.pv-industrial { background: linear-gradient(135deg, #FDECEA, #FFA5A5); }
.pv-emoji { font-size: 4rem; }
.pv-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.tag-orange { background: var(--orange); color: var(--white); }
.tag-blue   { background: var(--blue);   color: var(--white); }
.tag-red    { background: var(--red);    color: var(--white); }
.project-body { padding: 24px; }
.project-body h4 {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 700; margin-bottom: 8px;
}
.project-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.project-stat { display: flex; gap: 16px; flex-wrap: wrap; }
.ps-item {
  font-size: 0.8rem; color: var(--muted);
  padding: 4px 10px; background: var(--light); border-radius: var(--radius-xs);
}
.ps-item strong { color: var(--text); font-weight: 700; display: block; font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testi-card {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; transition: all var(--trans);
}
.testi-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.tc-featured {
  background: var(--blue-light); border-color: var(--blue);
  box-shadow: var(--shadow);
}
.testi-quote {
  font-family: var(--font-head); font-size: 5rem;
  line-height: 0.8; color: var(--border);
  margin-bottom: 8px; font-weight: 800;
}
.tc-featured .testi-quote { color: rgba(26,79,212,0.2); }
.testi-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-stars { color: var(--orange); letter-spacing: 3px; font-size: 1rem; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0; color: var(--white);
}
.av-orange { background: linear-gradient(135deg, var(--orange), #FFAF38); }
.av-blue   { background: linear-gradient(135deg, var(--blue), #4D82FF); }
.av-green  { background: linear-gradient(135deg, var(--green), #3DC24E); }
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span   { font-size: 0.8rem; color: var(--muted); }

/* ── CONTACT ── */
.contact { background: var(--off); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start;
}
.contact-info > p { color: var(--muted); margin: 14px 0 28px; line-height: 1.7; font-size: 1.02rem; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cc-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius-sm);
  border-left: 4px solid; transition: all var(--trans);
}
.cc-red   { background: var(--red-light);    border-color: var(--red); }
.cc-blue  { background: var(--blue-light);   border-color: var(--blue); }
.cc-green { background: var(--green-light);  border-color: var(--green); }
.cc-item:hover { transform: translateX(4px); }
.cc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cc-item > div { display: flex; flex-direction: column; gap: 2px; }
.cc-item strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.cc-item span { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.contact-logo-mini img { height: 54px; width: auto; }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--blue)) 1;
}
.form-title {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 700; margin-bottom: 28px; color: var(--text);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--light); border: 2px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 0.95rem; transition: border-color var(--trans); outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-error { font-size: 0.78rem; color: var(--red); display: block; margin-top: 4px; }
.form-success {
  margin-top: 16px; padding: 14px 18px;
  background: var(--green-light); border: 1.5px solid var(--green);
  border-radius: var(--radius-sm); color: var(--green-dark);
  font-size: 0.95rem; font-weight: 600; text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: #0D0D0D;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--blue), var(--green)) 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding: 64px 0 48px;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-quick a { color: var(--orange); font-weight: 700; font-size: 0.95rem; transition: color var(--trans); }
.footer-contact-quick a:hover { color: var(--white); }

.footer-links h5,
.footer-services h5 {
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--orange); margin-bottom: 18px;
}
.footer-links,
.footer-services { display: flex; flex-direction: column; }
.footer-links a,
.footer-services a {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  padding: 5px 0; transition: color var(--trans);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.83rem; }
.footer-bottom strong { color: var(--orange); }

/* ── SCROLL REVEAL ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 60px; }
  .about-visual   { max-width: 380px; margin: 0 auto; }
  .why-inner      { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { grid-column: span 2; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: span 2; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: all var(--trans);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a {
    padding: 14px 24px; width: 100%; color: var(--text) !important;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { margin: 12px 24px; width: calc(100% - 48px); text-align: center; border-radius: 50px !important; }
  .hamburger { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }
  .project-card:last-child { grid-column: auto; }
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand   { grid-column: auto; }
  .why-features   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 24px; }
  .hero-stats     { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider   { width: 100%; height: 1px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .hero-logo { height: 70px; }
  .about-badge-1 { bottom: -16px; right: 0; }
  .about-badge-2 { display: none; }
}
