/*
Theme Name: BrandForce Agency
Theme URI: https://biginternationalagency.com
Author: Big International Digital Marketing Agency
Description: Full-service marketing agency theme for Digital Marketing, Event Management & Brand Promotions.
Version: 5.0.0
License: GNU General Public License v2 or later
Text Domain: brandforce
Tags: one-page, business, marketing, agency
*/

/* ── FONTS: Nunito (heading) + Nunito Sans (body) via Bunny Fonts ── */

:root {
  --navy:        #0A1628;
  --navy-mid:    #112244;
  --navy-light:  #1a3060;
  --orange:      #FF6B1A;
  --orange-light:#FF8C42;
  --gold:        #FFB830;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --gray:        #8A94A6;
  --text:        #1A2340;
  --font-head:   'Nunito', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(255,107,26,0.18);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.site-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; }

/* Hamburger menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 998;
  padding: 1.5rem 5% 2rem;
  border-bottom: 1px solid rgba(255,107,26,0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-drawer.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.nav-drawer ul li a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:hover,
.nav-drawer ul li a.nav-cta { color: var(--orange); }
.nav-drawer ul li a.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  margin-top: 0.8rem;
  border-bottom: none;
  font-weight: 700;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 5% 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(255,107,26,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,184,48,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Two-column hero layout */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.35);
  color: var(--orange-light);
  padding: 6px 16px; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
h1.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.02rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
  margin-bottom: 2.5rem;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(255,107,26,0.08); }

/* Hero stats - now inline below buttons */
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { font-family: var(--font-body); font-size: 0.75rem; color: var(--gray); margin-top: 3px; }

/* Hero visual / illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(255,107,26,0.18));
}
.hero-visual-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(ellipse, rgba(255,107,26,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS COMMON ── */
section { padding: 80px 5%; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.5px;
  color: var(--navy); line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem; color: var(--gray);
  line-height: 1.8; max-width: 560px;
}
.section-header { margin-bottom: 3rem; }

/* ── SERVICES STRIP ── */
#services-strip { background: var(--off-white); padding: 40px 5%; }
.services-strip-inner {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
}
.strip-tag {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  color: var(--navy-mid);
  padding: 7px 16px; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.83rem; font-weight: 600;
  transition: all 0.2s; cursor: default;
}
.strip-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── SERVICE CARDS ── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: 16px; padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
  border-color: var(--orange);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.7rem;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--gray); line-height: 1.75;
}

/* ── WHY CHOOSE US ── */
#why { background: var(--navy); position: relative; overflow: hidden; }
#why::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; transition: background 0.2s, border-color 0.2s;
}
.why-item:hover { background: rgba(255,107,26,0.08); border-color: rgba(255,107,26,0.25); }
.why-num {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900; color: var(--orange);
  line-height: 1; min-width: 40px;
}
.why-text h4 {
  font-family: var(--font-head);
  color: var(--white); font-size: 0.98rem; font-weight: 800; margin-bottom: 4px;
}
.why-text p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.52); font-size: 0.87rem; line-height: 1.65;
}
.why-card-big {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.5rem; text-align: center;
}
.why-card-big .big-num {
  font-family: var(--font-head);
  font-size: 5rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.why-card-big .big-label {
  font-family: var(--font-head);
  color: var(--white); font-size: 1.1rem; font-weight: 800; margin-top: 0.5rem;
}
.why-card-big .big-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 0.3rem;
}
.why-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.mini-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1.2rem; text-align: center;
}
.mini-card .mn { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.mini-card .ml { font-family: var(--font-body); color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 2px; }

/* ── INDUSTRIES ── */
#industries { background: var(--off-white); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.industry-card {
  background: var(--white); border-radius: 12px;
  padding: 1.4rem 1rem; text-align: center;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.2s; cursor: default;
}
.industry-card:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,22,40,0.15); }
.industry-card .ic-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.industry-card .ic-name {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 800; color: var(--navy); transition: color 0.2s;
}
.industry-card:hover .ic-name { color: var(--white); }

/* ── PACKAGES ── */
#packages { background: var(--white); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.package-card {
  border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(10,22,40,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,22,40,0.12); }
.package-card.featured { background: var(--navy); border-color: var(--orange); }
.package-card:not(.featured) { background: var(--off-white); }
.pkg-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pkg-name {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 0.6rem;
}
.pkg-title {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 900; margin-bottom: 1rem; color: var(--navy);
  padding-right: 2rem;
}
.package-card.featured .pkg-title { color: var(--white); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.pkg-features li {
  font-family: var(--font-body);
  font-size: 0.87rem; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.package-card.featured .pkg-features li { color: rgba(255,255,255,0.65); }
.pkg-features li::before { content: '✓'; color: var(--orange); font-weight: 800; }
.pkg-cta {
  display: block; text-align: center; padding: 0.8rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.pkg-cta.dark { background: var(--navy); color: var(--white); }
.pkg-cta.dark:hover { background: var(--navy-light); }
.pkg-cta.light { background: var(--orange); color: var(--white); }
.pkg-cta.light:hover { background: var(--orange-light); }

/* ── CTA BAND ── */
#cta-band {
  background: linear-gradient(135deg, var(--orange), #e85800);
  padding: 70px 5%; text-align: center;
}
#cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 0.8rem;
}
#cta-band p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--orange);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── CONTACT ── */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info { color: rgba(255,255,255,0.7); }
.contact-info p {
  font-family: var(--font-body);
  line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body); font-size: 0.9rem;
}
.ci-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,107,26,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-text strong {
  font-family: var(--font-head);
  color: var(--white); display: block; font-size: 0.8rem; margin-bottom: 2px;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 6px; font-weight: 600; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; border-radius: 8px; padding: 0.9rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer.site-footer {
  background: #050d1a;
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-wrap {
  display: inline-flex; align-items: center;
  margin-bottom: 1rem; line-height: 0;
}
.footer-logo-img {
  height: 52px; width: auto; max-width: 220px;
  display: block; object-fit: contain;
}
.footer-brand p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.42); font-size: 0.85rem;
  line-height: 1.75; margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white); font-size: 0.92rem; font-weight: 800; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.42); font-size: 0.85rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.25); font-size: 0.78rem;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; font-size: 1.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPop 0.5s 1s cubic-bezier(0.34,1.56,0.64,1) both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
@keyframes waPop { from { opacity:0; transform:scale(0); } to { opacity:1; transform:scale(1); } }
.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(10px); transition: all 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat-item { text-align: center; }
  .hero-visual { order: -1; }
  .hero-visual-wrap { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  #home { padding: 90px 5% 60px; min-height: auto; }
  .hero-inner { gap: 2rem; }
  .hero-visual-wrap { max-width: 320px; }
  h1.hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -0.5px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; text-align: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 1.5rem; }

  /* Sections */
  section { padding: 60px 5%; }
  #services-strip { padding: 30px 5%; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-card-big .big-num { font-size: 4rem; }
  .why-mini-cards { grid-template-columns: 1fr 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 300px; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* WhatsApp float */
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  nav.site-nav { padding: 0 4%; }
  #home { padding: 85px 4% 50px; }
  section { padding: 50px 4%; }
  .hero-visual-wrap { max-width: 280px; }
  h1.hero-title { font-size: 1.7rem; }
  .why-mini-cards { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .contact-form { padding: 1.2rem 1rem; }
  .strip-tag { font-size: 0.78rem; padding: 6px 12px; }
}

/* ══════════════════════════════════════════
   PAGE HERO  (Portfolio & Blog)
══════════════════════════════════════════ */
.page-hero {
  padding: 130px 5% 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a1060 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,107,26,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════════════ */
.portfolio-section { padding: 60px 5% 80px; }

/* Filter buttons */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.pf-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,107,26,0.35);
  background: transparent;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.87rem; font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Portfolio grid — 3 cols desktop, 2 tablet, 1 mobile */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,0.08);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,22,40,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: fadeUp 0.5s ease both;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(10,22,40,0.14);
}
.pc-thumb {
  position: relative;
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.pc-emoji { font-size: 3.5rem; line-height: 1; }
.pc-result-badge {
  position: absolute; bottom: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .02em;
}
.pc-body { padding: 1.3rem 1.4rem 1.6rem; }
.pc-label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 0.5rem;
}
.pc-title {
  font-size: 1rem; font-weight: 800;
  color: var(--navy); line-height: 1.4;
  margin-bottom: 0.65rem;
}
.pc-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pc-tag {
  font-size: 0.75rem; font-weight: 600;
  background: var(--off-white);
  color: var(--navy-mid);
  padding: 3px 10px; border-radius: 50px;
}

/* Portfolio CTA block */
.portfolio-cta-block {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  margin-top: 4rem;
}
.portfolio-cta-block h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.75rem; }
.portfolio-cta-block p  { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 1rem; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-section { padding: 60px 5% 80px; max-width: 1240px; margin: 0 auto; }

/* Blog grid — 3 cols desktop, 2 tablet, 1 mobile */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 4rem;
}

/* Featured first card spans 2 cols on desktop */
.blog-card--featured {
  grid-column: span 2;
}
.blog-card--featured .bc-thumb-placeholder,
.blog-card--featured .bc-thumb-img { height: 280px; }
.blog-card--featured .bc-title { font-size: 1.3rem; }
.blog-card--featured .bc-excerpt { display: block; }

.blog-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(10,22,40,0.05);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(10,22,40,0.12); }

.bc-thumb-link { display: block; text-decoration: none; }
.bc-thumb-img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
}
.bc-thumb-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.bc-placeholder-emoji { font-size: 3rem; }

.bc-body { padding: 1.3rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.bc-meta { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.65rem; }
.bc-cat { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.bc-dot { color: var(--gray); font-size: 0.8rem; }
.bc-date, .bc-read { font-size: 0.8rem; color: var(--gray); }
.bc-title {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  line-height: 1.4; margin-bottom: 0.65rem;
}
.bc-title a { text-decoration: none; color: inherit; transition: color .2s; }
.bc-title a:hover { color: var(--orange); }
.bc-excerpt { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.bc-readmore { font-size: 0.88rem; font-weight: 700; text-decoration: none; margin-top: auto; }
.bc-readmore:hover { text-decoration: underline; }

/* Newsletter block */
.blog-newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px; padding: 3rem 2.5rem;
  max-width: 900px; margin: 0 auto;
}
.bnl-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.bnl-text { flex: 1; min-width: 240px; }
.bnl-text h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.6rem; }
.bnl-text p  { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.6; }
.bnl-form { display: flex; gap: 0.7rem; flex-wrap: wrap; min-width: 280px; }
.bnl-form input {
  flex: 1; padding: 0.75rem 1.1rem;
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: var(--white);
  font-size: 0.9rem; outline: none;
}
.bnl-form input::placeholder { color: rgba(255,255,255,0.45); }
.bnl-form input:focus { border-color: var(--orange); }

/* ══════════════════════════════════════════
   PORTFOLIO & BLOG — RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Blog: exactly 2 posts per row on mobile */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  /* Featured card reverts to single col on mobile */
  .blog-card--featured { grid-column: span 1; }
  .blog-card--featured .bc-thumb-placeholder,
  .blog-card--featured .bc-thumb-img { height: 160px; }
  .blog-card--featured .bc-title { font-size: 0.97rem; }

  .bc-thumb-img,
  .bc-thumb-placeholder { height: 140px; }
  .bc-body { padding: 1rem; }
  .bc-title { font-size: 0.9rem; }
  .bc-excerpt { display: none; }      /* hide excerpt on mobile for cleaner 2-col layout */

  .bnl-inner { flex-direction: column; gap: 1.5rem; }
  .bnl-form  { width: 100%; }
  .bnl-form input { width: 100%; }

  .page-hero { padding: 100px 5% 50px; }
  .portfolio-filters { gap: 0.5rem; }
  .pf-btn { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
}

@media (max-width: 400px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .bc-meta { gap: 0.25rem; }
  .bc-cat, .bc-date, .bc-read { font-size: 0.7rem; }
  .bc-dot { display: none; }
}
