/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --black: #2D2D2D;
  --white: #F6F4F0;
  --red: #A71F1F;
  --pink: #C521C4;
  --purple: #5F1FA7;
  --cyan: #07A5A1;
  --orange: #D37722;
  --green: #26A71F;

  --font-logo: 'Merriweather Sans', sans-serif;
  --font-heading: 'Abhaya Libre', serif;
  --font-body: 'Poppins', sans-serif;

  --nav-h: 68px;
  --r: 3px;
}

/* ===========================
   RESET
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
   NAV
=========================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(246, 244, 240, .07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}

.nav-brand img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.nav-menu li {
  position: relative;
  z-index: 2;
}

.nav-menu a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(246, 244, 240, .6);
  transition: color .3s;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu .nav-cta a {
  background: var(--red);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .76rem;
}

.nav-menu .nav-cta a:hover {
  background: #8a1818;
}

/* Sliding pill background */
.nav-menu .nav-pill {
  position: absolute;
  background: rgba(246, 244, 240, 0.12);
  border-radius: 30px;
  z-index: 1;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  height: 0;
}

/* hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 26px;
}

.ham span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .25s;
  display: block;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 998;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px;
  gap: 28px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(246, 244, 240, .8);
}

.nav-drawer a.drawer-cta {
  margin-top: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ===========================
   HERO
=========================== */
#home {
  min-height: 100vh;
  background: #000000;
  padding: calc(var(--nav-h) + 80px) 8vw 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

#home::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  background: url("Images/landing page/landingpage.webp") center/cover no-repeat;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.hero-bg-word {
  position: absolute;
  right: -40px;
  bottom: 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(10rem, 22vw, 20rem);
  color: rgba(246, 244, 240, .032);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content .eyebrow {
  color: var(--white);
}

.hero-content h1 em {
  color: var(--white);
}

.hero-content .hero-sub {
  color: var(--white);
}

.hero-content .cta-row {
  justify-content: flex-start;
}

.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: .96;
  color: var(--white);
  margin-bottom: 36px;
}

h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(246, 244, 240, .55);
  max-width: 460px;
  margin-bottom: 52px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--red);
  color: var(--white);
  padding: 15px 38px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-dark:hover {
  background: #8a1818;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(246, 244, 240, .25);
  color: var(--white);
  padding: 15px 38px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: border-color .2s, background .2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(246, 244, 240, .06);
}

/* ===========================
   TICKER
=========================== */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: tick 28s linear infinite;
}

.tick-item {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 44px;
}

.tick-item::after {
  content: '\2726';
  margin-left: 44px;
  opacity: .45;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===========================
   SECTION HELPERS
=========================== */
.s-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
}

/* ===========================
   ABOUT
=========================== */
#about {
  padding: 120px 80px;
  background: #ffffff;
  
  position: relative;
  color: var(--black);
  
  text-align: center;
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) 0;
  overflow: hidden;
}

.about-copy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 40vw, 320px);
  height: clamp(200px, 40vw, 320px);
  background: url("Black White .png") center/contain no-repeat;
  opacity: 0.2;
  
  z-index: -1;
  pointer-events: none;
}

.about-copy h2 {
  margin-bottom: 26px;
  color: var(--black);
}

.about-copy p {
  font-size: .97rem;
  line-height: 1.78;
  color: rgba(0, 0, 0, 0.7);
  
  margin-bottom: 18px;
}

.brand-quote {
  margin-top: 36px;
  padding: 22px 28px;
  background: rgba(167, 31, 31, 0.04);
  
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  border-left: 4px solid var(--red);
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  margin-top: 44px;
}

.stat {
  border-top: 2px solid var(--red);
  padding-top: 14px;
  min-width: clamp(120px, 15vw, 180px);
  text-align: center;
}

.stat-n {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}

.stat-l {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

/* ===========================
   SERVICES OVERVIEW
=========================== */
#services {
  padding: 120px 0 0;
}

#services .intro {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}

/* ===========================
   SERVICES — UNIFIED ZOOM & CROSSFADE
=========================== */
:root {
  --zp-hero-h: 650vh;
  
  --zp-radius: 20px;
}

.zp-hero {
  position: relative;
  height: var(--zp-hero-h);
  background: var(--black);
}

.zp-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

/* --- Mosaic Phase --- */
.zp-mosaic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 1;
}

.zp-tile {
  position: absolute;
  border-radius: var(--zp-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.zp-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zp-main {
  width: 35vw;
  height: 45vh;
  z-index: 10;
}

/* Satellites placed creatively around the center */
.zp-sat-1 {
  top: 12%;
  left: 8%;
  width: 22vw;
  height: 28vh;
}

.zp-sat-2 {
  bottom: 10%;
  right: 5%;
  width: 20vw;
  height: 25vh;
}

.zp-sat-3 {
  top: 15%;
  right: 12%;
  width: 16vw;
  height: 22vh;
}

.zp-sat-4 {
  bottom: 18%;
  left: 14%;
  width: 14vw;
  height: 18vh;
}

.zp-sat-5 {
  top: 40%;
  left: 2%;
  width: 12vw;
  height: 15vh;
}

.zp-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Stack Phase (Crossfades) --- */
.zp-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.zp-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.zp-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Text & Overlays --- */
.zp-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .45) 50%, rgba(0, 0, 0, .2) 100%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
}

.zp-text-stack {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.zp-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* Text Formatting (kept from your original) */
.zp-num {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.zp-text[data-color="pink"] .zp-num {
  color: var(--pink);
}

.zp-text[data-color="purple"] .zp-num {
  color: var(--purple);
}

.zp-text[data-color="cyan"] .zp-num {
  color: var(--cyan);
}

.zp-text[data-color="orange"] .zp-num {
  color: var(--orange);
}

.zp-text[data-color="green"] .zp-num {
  color: var(--green);
}

.zp-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
}

.zp-copy {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(246, 244, 240, .8);
  max-width: 560px;
  margin: 0 auto 12px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 639px) {
  :root {
    --zp-hero-h: 550vh;
    --zp-radius: 12px;
  }

  .zp-main {
    width: 75vw;
    height: 40vh;
  }

  .zp-sat {
    display: block;
  }

  .zp-sat-1 { top: 6%; left: 2%; width: 22vw; height: 14vh; }
  .zp-sat-2 { bottom: 8%; right: 2%; width: 22vw; height: 14vh; }
  .zp-sat-3 { top: 8%; right: 4%; width: 18vw; height: 11vh; }
  .zp-sat-4 { bottom: 12%; left: 4%; width: 18vw; height: 11vh; }
  .zp-sat-5 { top: 38%; left: 1%; width: 14vw; height: 9vh; }
  .zp-copy {
    font-size: .84rem;
    max-width: 88vw;
  }

  .zp-copy.zp-secondary {
    display: none;
  }
}

/* ===========================
   INDUSTRIES
=========================== */
#industries {
  padding: 120px 80px;
  background: var(--black);
  color: var(--white);
}

#industries .s-label {
  color: rgba(246, 244, 240, .4);
}

#industries h2 {
  margin-bottom: 56px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-card {
  padding: 41px 31px; 
  box-shadow: inset 0 0 0 1px rgba(246, 244, 240, .1);
  transition: box-shadow .2s;
}

.ind-card:hover {
  box-shadow: inset 0 0 0 1px var(--red), 0 0 15px rgba(167, 31, 31, 0.45);
}

.ind-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(246, 244, 240, .07);
  line-height: 1;
  margin-bottom: 14px;
}

.ind-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ind-desc {
  font-size: .83rem;
  color: rgba(246, 244, 240, .45);
  line-height: 1.65;
}

/* ===========================
   CLIENTS TICKER
=========================== */
#clients {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

#clients .section-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 80px;
}

#clients .section-head .s-label {
  justify-content: center;
  display: flex;
}

.clients-ticker {
  background: var(--black);
  overflow: hidden;
  padding: 36px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(246, 244, 240, 0.05);
  border-bottom: 1px solid rgba(246, 244, 240, 0.05);
}

.clients-ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: tick 15s linear infinite;
}

.client-tick-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 260px;
  height: 140px;
  padding: 20px 24px;
  color: var(--white);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 16px;
  box-shadow: inset 0 0 0 1px rgba(246, 244, 240, 0.1);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-tick-item:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--red), 0 4px 20px rgba(167, 31, 31, 0.25);
}

.client-tick-item::after {
  display: none;
}

.client-tick-item .c-icon {
  display: none;
}

.client-tick-item .c-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.client-tick-item .c-name {
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.client-tick-item .c-sector {
  font-size: .68rem;
  color: rgba(246, 244, 240, .45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  padding: 120px 80px;
  background: var(--black);
  color: var(--white);
}

#testimonials .section-head {
  text-align: center;
  margin-bottom: 60px;
}

#testimonials .section-head .s-label {
  color: rgba(246, 244, 240, .38);
  justify-content: center;
  display: flex;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  border: 1px solid rgba(246, 244, 240, .09);
  background: rgba(246, 244, 240, .025);
  padding: 40px 34px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-q {
  font-size: .93rem;
  line-height: 1.8;
  color: rgba(246, 244, 240, .7);
  font-style: italic;
  margin-bottom: 30px;
}

.testi-author {
  margin-top: 24px;
  border-top: 1px solid rgba(246, 244, 240, 0.08);
  
  padding-top: 18px;
}

.author-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

.author-role {
  font-size: .74rem;
  color: rgba(246, 244, 240, .38);
  margin-top: 2px;
}

/* ===========================
   CONTACT
=========================== */
#contact {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left h2 {
  margin-bottom: 18px;
}

.contact-left>p {
  font-size: .97rem;
  color: #5c5c5c;
  line-height: 1.78;
  margin-bottom: 44px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-right {
  padding-top: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #999;
}

input,
textarea,
select {
  background: transparent;
  border: 1.5px solid rgba(45, 45, 45, .18);
  border-radius: var(--r);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--black);
  outline: none;
  width: 100%;
  transition: border-color .2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-send {
  background: var(--black);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .05em;
  border-radius: var(--r);
  transition: background .2s;
  align-self: flex-start;
  margin-top: 4px;
}

.btn-send:hover {
  background: var(--red);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: .95rem;
  color: var(--red);
  margin-bottom: 14px;
}

.footer-about {
  font-size: .83rem;
  color: rgba(246, 244, 240, .4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(246, 244, 240, .35);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: .85rem;
  color: rgba(246, 244, 240, .55);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bar {
  border-top: 1px solid rgba(246, 244, 240, .07);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bar p {
  font-size: .76rem;
  color: rgba(246, 244, 240, .28);
}

.footer-bar .footer-mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: .88rem;
  color: rgba(246, 244, 240, .28);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  nav {
    padding: 0 32px;
  }

  #home {
    padding: calc(var(--nav-h) + 60px) 48px 80px;
  }

  #about {
    padding: 100px 48px;
    gap: 60px;
  }

  #services {
    padding: 100px 0 0;
  }

  #industries {
    padding: 100px 48px;
  }

  #clients {
    padding: 80px 0;
  }

  #clients .section-head {
    padding: 0 48px;
  }

  #testimonials {
    padding: 100px 48px;
  }

  #contact {
    padding: 100px 48px;
    gap: 60px;
  }

  footer {
    padding: 60px 48px 36px;
  }
}

@media (max-width: 860px) {
  nav {
    padding: 0 24px;
  }

  .nav-menu {
    display: none;
  }

  .ham {
    display: flex;
  }

  #home {
    padding: calc(var(--nav-h) + 48px) 28px 70px;
  }

  #about {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  .about-visual {
    display: none;
  }

  #services {
    padding: 80px 0 0;
  }

  #industries {
    padding: 80px 28px;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #clients {
    padding: 70px 0;
  }

  #clients .section-head {
    padding: 0 28px;
  }

  #testimonials {
    padding: 80px 28px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  #contact {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  footer {
    padding: 56px 28px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .ind-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   FLOATING ACTION BUTTONS
=========================== */
.floating-bubbles {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.bubble-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, background 0.3s;
  cursor: pointer;
}

.bubble-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.bubble-btn:active {
  transform: scale(0.95);
}

.bubble-contact {
  background: linear-gradient(135deg, var(--red), #8a1818);
}

.bubble-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 860px) {
  .floating-bubbles {
    right: 20px;
    bottom: 20px;
    gap: 10px;
  }

  .bubble-btn {
    width: 46px;
    height: 46px;
  }

  .bubble-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ===========================
   ALT CONTACT OPTIONS
=========================== */
.alt-contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.btn-anim {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .03em;
  border-radius: var(--r);
  border: 1.5px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}

.btn-anim:hover {
  transform: translateY(-2px);
}

.btn-anim-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  transform: skewX(-25deg) translateX(-115%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
  pointer-events: none;
}

/* Email button colors */
.btn-email-anim {
  border-color: var(--black);
}
.btn-email-anim .btn-anim-bg {
  background: var(--red);
}
.btn-email-anim:hover {
  border-color: var(--red);
  color: var(--white);
}

/* WhatsApp button colors */
.btn-whatsapp-anim {
  border-color: var(--black);
}
.btn-whatsapp-anim .btn-anim-bg {
  background: var(--green); 
}
.btn-whatsapp-anim:hover {
  border-color: var(--green);
  color: var(--white);
}

.btn-anim:hover .btn-anim-bg {
  transform: skewX(-25deg) translateX(-10%);
}

.btn-anim-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wa-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-icon {
  font-size: 1.2rem;
}