/* 
  Bagaric Facility Services - Global Styles
  Based on existing blog design system
*/

:root {
  --bagablue: #093993;
  --bagagreen: #526f80;
  --bagagreenheller: #6e97af;
  --bagagreen-dark: #3d5464;
  --bagagreen-pale: #eef3f6;
  --bagablue-pale: #eef2fa;
  --btn-green: #4CAF50;
  --btn-green-h: #3d9c41;
  --nav-bg: #1a1a1a;
  --text: #1a1a1a;
  --muted: #555;
  --border: #dde3e8;
  --bg: #f4f7fa;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
}

.btn-primary {
  background: var(--btn-green);
  color: var(--white);
  border: 2px solid var(--btn-green);
}

.btn-primary:hover {
  background: var(--btn-green-h);
  border-color: var(--btn-green-h);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-green {
  background: var(--btn-green);
  color: var(--white);
  border: 2px solid var(--btn-green);
}

.btn-green:hover {
  background: var(--btn-green-h);
  border-color: var(--btn-green-h);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bagablue);
}

/* ── NAVIGATION ── */
.site-nav {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(15, 23, 42, 0.98); /* Deep footer navy blue */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
}

.nav-logo-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--btn-green);
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
}

.hero-eye, .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bagablue-pale);
  border: 1px solid rgba(9, 57, 147, 0.15);
  color: var(--bagablue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(9, 57, 147, 0.08);
}

.hero-eye::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--btn-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--btn-green);
}
.hero {
  position: relative;
  background: var(--bagagreen);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.hero-grid {
  display: flex;
  width: 1300px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--bagagreen) 0%,
      rgba(82, 111, 128, 0.95) 20%,
      rgba(82, 111, 128, 0.6) 50%,
      transparent 100%);
  z-index: 1;
}

.hero-content {
  width: 50%;
  text-align: left;
}

.hero-spacer {
  width: 50%;
}

.hero-centered {
  text-align: center;
  justify-content: center;
  background: var(--bagagreen);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 600px;
  padding: 140px 0 100px;
}

/* Compact version for Blog Index */
.hero-compact {
  min-height: 350px !important;
  padding: 100px 0 40px !important;
}

.hero-centered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero-content-centered {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
}

.hero-centered h1 {
  font-size: clamp(40px, 8vw, 84px);
  text-align: center;
  margin: 0 auto 32px;
  line-height: 1.0;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-compact h1 {
  font-size: clamp(28px, 5vw, 48px) !important;
  margin-bottom: 16px !important;
}

.hero-centered p {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 800px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-compact p {
  font-size: clamp(15px, 1.6vw, 18px) !important;
  max-width: 680px !important;
  margin-bottom: 24px !important;
}

.hero-centered .hero-btns {
  justify-content: center;
}

.hero-centered .article-meta {
  justify-content: center;
  margin-bottom: 24px;
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item svg {
  opacity: 0.8;
  color: var(--bagagreenheller);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-trust-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 60px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--btn-green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: left;
}

.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--bagagreenheller);
  text-underline-offset: 8px;
}

.hero p {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-align: left;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--btn-green);
  padding: 16px 20px;
  border-radius: 4px 12px 12px 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--white);
  transform: translateY(-5px);
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--btn-green);
  flex-shrink: 0;
}

.trust-num {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-video-bg {
    width: 100%;
    opacity: 0.25;
  }

  .hero-grid {
    flex-direction: column;
    text-align: left;
  }

  .hero-content,
  .hero-spacer {
    width: 100%;
  }

  .hero-btns {
    justify-content: flex-start;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--white);
}

.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sec-tag {
  display: inline-block;
  color: var(--bagablue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.sec-header h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sec-header p {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 57, 147, 0.08);
  border-color: var(--bagagreenheller);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bagablue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--bagablue);
  transition: var(--transition);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.service-card:hover .service-icon {
  background: var(--bagablue);
  color: var(--white);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--bagablue);
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ── PHILOSOPHY SECTION ── */
.philosophy {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.philosophy-video {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.video-frame:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.video-frame video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.video-floating-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.badge-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--bagagreenheller);
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

.philosophy-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 50px;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.phil-card {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.phil-card:hover {
  transform: translateX(10px);
  border-color: var(--bagagreenheller);
}

.phil-icon {
  width: 56px;
  height: 56px;
  background: var(--bagablue-pale);
  color: var(--bagablue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phil-icon svg {
  width: 28px;
  height: 28px;
}

.phil-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.phil-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.philosophy-quote {
  border-left: 4px solid var(--bagagreenheller);
  padding-left: 30px;
  margin-bottom: 50px;
}

.philosophy-quote blockquote {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-content .animate-up:nth-child(1) {
  animation-delay: 0.1s;
}

.philosophy-content .animate-up:nth-child(2) {
  animation-delay: 0.2s;
}

.philosophy-content .animate-up:nth-child(3) {
  animation-delay: 0.3s;
}

.philosophy-content .animate-up:nth-child(4) {
  animation-delay: 0.4s;
}

.philosophy-content .animate-up:nth-child(5) {
  animation-delay: 0.5s;
}

/* ── GALLERY SECTION (BEFORE/AFTER) ── */
.gallery {
  padding: 100px 0;
  background: #ffffff;
}

.gallery-container {
  max-width: 1300px !important;
  width: 90% !important;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  background: transparent;
  padding: 0;
  border-radius: 30px;
  border: none !important;
}

.ba-info {
  grid-column: span 2;
  padding: 20px 10px 10px;
}

.ba-info h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--bagablue);
}

.ba-info p {
  font-size: 18px;
  /* Larger text as requested */
  line-height: 1.6;
  color: var(--text-light);
}

.ba-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: none !important;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-card:hover img {
  transform: scale(1.05);
}

/* Removed labels */

.gallery-grid-small {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gallery-item {
  background: transparent;
  padding: 0;
  border-radius: 30px;
  border: none !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.g-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bagablue);
}

.g-info p {
  font-size: 16px;
  /* Larger text as requested */
  line-height: 1.5;
  color: var(--text-light);
}

/* ── REVIEWS MARQUEE ── */
.reviews-marquee {
  background: #ffffff !important;
  /* Pure white as requested */
  padding: 40px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.marquee-container {
  max-width: 1300px !important;
  width: 90% !important;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 20px 0;
  /* Extra space to prevent hover clipping */
  /* Mask for fading edges */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  /* Tight gap */
  animation: marquee-scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-pill {
  background: var(--white);
  padding: 24px 32px;
  border-radius: 24px;
  border: none !important;
  /* STRICTLY NO BORDER */
  min-width: 380px;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.review-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.rp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rp-user-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-user {
  font-weight: 800;
  font-size: 16px;
  color: #1a1a1a;
  /* Black as requested */
}

.rp-stars {
  color: #fbbf24;
  font-size: 14px;
}

.rp-avatar {
  width: 36px;
  height: 36px;
  background: var(--bagablue-pale);
  color: var(--bagablue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.review-pill p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  white-space: normal;
  /* NO CUT OFF - Show full text */
  display: block;
  overflow: visible;
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
}

.faq-content h2 {
  font-size: 44px;
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.faq-q {
  font-weight: 800;
  font-size: 18px;
  color: var(--bagablue);
  margin-bottom: 10px;
}

.faq-a {
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FINAL CTA (ELITE REDESIGN) ── */
.final-cta {
  padding: 140px 0;
  background: var(--white);
}

.cta-elite-card {
  background: var(--bagagreen);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 50px 100px rgba(82, 111, 128, 0.2);
}

.cta-content {
  padding: 80px;
  position: relative;
  z-index: 5;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtle Glow behind text */
.cta-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-badge-mini {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

.btn-glow {
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-image-wrap {
  position: relative;
  height: 100%;
}

.cta-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: float-soft 4s ease-in-out infinite;
}

.top-right {
  top: 40px;
  right: 40px;
}

.bottom-left {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

.fb-icon {
  width: 40px;
  height: 40px;
  background: var(--btn-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.fb-text strong {
  display: block;
  font-size: 15px;
  color: var(--bagablue);
}

.fb-text span {
  font-size: 12px;
  color: var(--muted);
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  .cta-elite-card {
    grid-template-columns: 1fr;
  }

  .cta-image-wrap {
    height: 400px;
  }

  .bottom-left {
    left: 40px;
  }
}

/* ── SITE FOOTER ── */
.site-footer {
  padding: 100px 0 40px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 40px;
  margin-bottom: 25px;
}

.footer-brand p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--bagagreenheller);
  transform: translateY(-5px);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: white;
  opacity: 0.6;
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  opacity: 1;
  color: var(--bagagreenheller);
  padding-left: 5px;
}

.footer-contact p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.4;
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: white;
}

/* ── ANIMATIONS ── */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s;
  will-change: opacity, transform;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* Staggered delay for grid items */
.services-grid .animate-left:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid .animate-left:nth-child(3) {
  transition-delay: 0.2s;
}

.workflow-grid-new .animate-left:nth-child(1) {
  transition-delay: 0.1s;
}

.workflow-grid-new .animate-left:nth-child(2) {
  transition-delay: 0.2s;
}

.workflow-grid-new .animate-left:nth-child(3) {
  transition-delay: 0.3s;
}

.workflow-grid-new .animate-left:nth-child(4) {
  transition-delay: 0.4s;
}

/* ── MOBILE RESPONSIVENESS (Elite Refinement) ── */
@media (max-width: 1024px) {
  /* Navigation overrides moved to bottom */

  .workflow-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .journey-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .sec-header h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .workflow-grid-new {
    grid-template-columns: 1fr;
  }

  .review-pill {
    min-width: 280px;
    padding: 20px;
  }

  .marquee-track {
    gap: 15px;
  }

  .marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .review-pill {
    min-width: 250px;
  }
}

/* ── QUALITY SECTION ── */
.quality {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.quality-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.q-step {
  background: var(--bg);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.q-step:hover {
  transform: translateX(-10px);
  border-color: var(--bagablue);
}

.q-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.q-icon-custom {
  width: 32px;
  height: 32px;
  position: relative;
  color: var(--bagablue);
}

/* ── APP ANIMATION ── */
.anim-app .app-sync-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-sync 1.5s infinite;
}

@keyframes pulse-sync {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/* ── QR SCAN ANIMATION ── */
.anim-qr-premium {
  overflow: hidden;
}

.qr-scan-line {
  stroke: var(--bagagreenheller);
  animation: scan-vertical 2s ease-in-out infinite;
}

@keyframes scan-vertical {

  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ── TICKET ANIMATION ── */
.ticket-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  stroke: var(--bagagreenheller);
}

.q-step:hover .ticket-check {
  animation: draw-check 0.6s ease forwards;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.q-icon-custom svg {
  width: 100%;
  height: 100%;
}

.q-text h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.q-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.quality-video {
  position: relative;
}

.mirror-tilt {
  transform: perspective(1000px) rotateY(5deg);
}

.mirror-tilt:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.q-badge {
  left: -20px;
  right: auto !important;
}

.q-badge .badge-num {
  color: var(--bagablue);
}

/* ── WORKFLOW SECTION (ELITE ROADMAP) ── */
.workflow {
  padding: 60px 0;
  /* Aggressively reduced */
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.workflow-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  /* Tighter margin */
}

.workflow-header h2 {
  font-size: 48px;
  /* Slightly refined */
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -1.5px;
  margin-top: 10px;
}

.workflow-journey-wrapper {
  position: relative;
  padding: 10px 0;
}

.journey-connecting-line {
  position: absolute;
  top: 110px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--btn-green), transparent);
  opacity: 0.1;
  z-index: 1;
}

.workflow-grid-elite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  /* Tighter gap */
  position: relative;
  z-index: 2;
}

.workflow-card-elite {
  background: var(--white);
  padding: 40px 25px 30px;
  /* Much tighter padding */
  border-radius: 24px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workflow-card-elite:hover {
  transform: translateY(-12px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(76, 175, 80, 0.05);
}

.step-num {
  font-size: 80px;
  /* Even larger watermark */
  font-weight: 900;
  color: rgba(9, 57, 147, 0.03);
  position: absolute;
  top: 10px;
  right: 30px;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-main);
}

.step-icon {
  width: auto;
  height: auto;
  color: var(--btn-green);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 36px;
  /* Slightly larger, cleaner icon */
  height: 36px;
  stroke-width: 1.5px;
  /* Thinner for elegance */
}

.workflow-card-elite:hover .step-icon {
  transform: scale(1.1);
}

.workflow-card-elite h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.workflow-card-elite p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.step-cta {
  margin-top: 30px;
  font-weight: 800;
  color: var(--btn-green);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.step-cta:hover {
  gap: 15px;
}

.workflow-card-highlight {
  background: var(--bagablue);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(9, 57, 147, 0.2);
}

.workflow-card-highlight .step-num {
  color: rgba(255, 255, 255, 0.05);
}

.workflow-card-highlight h4 {
  color: var(--white);
}

.workflow-card-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.step-cta-btn {
  margin-top: 30px;
  display: block;
  /* Full width */
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--btn-green);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.step-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
  background: #66bb6a;
}

@media (max-width: 1100px) {
  .workflow-grid-elite {
    grid-template-columns: 1fr 1fr;
  }

  .journey-connecting-line {
    display: none;
  }
}

@media (max-width: 650px) {
  .workflow-grid-elite {
    grid-template-columns: 1fr;
  }
}

/* ── GALLERY SECTION (REDESIGN) ── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Project Showcase (Split Version with Auto-Slider) */
.project-showcase {
  background: var(--bagablue);
  /* Dark blue background */
  border-radius: 40px;
  /* Fully rounded again */
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 550px;
}

.showcase-images-side {
  position: relative;
  background: #000;
  overflow: hidden;
}

.showcase-track {
  height: 100%;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.showcase-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Progress Bar */
.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.progress-bar {
  height: 100%;
  background: var(--btn-green);
  width: 0;
  transition: width 0.1s linear;
}

.showcase-content {
  padding: 60px;
  background: var(--bagablue);
  /* Match the dark blue from gallery hover */
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  margin-bottom: 25px;
}

.project-cat {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4CAF50 !important;
  /* Brighter green */
  margin-bottom: 8px;
}

.project-meta h4 {
  font-size: 32px;
  color: #ffffff !important;
  /* Force white */
  font-weight: 800;
  margin: 0;
}

.showcase-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9) !important;
  /* Force near-white */
  margin-bottom: 35px;
}

.showcase-content .btn-text {
  color: #4CAF50 !important;
  font-weight: 700;
  text-decoration: none;
}

.showcase-content .btn-text:hover {
  color: #ffffff !important;
}

/* Project Showcase Navigation */
.showcase-nav-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 25;
}

.slide-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bagablue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slide-btn:hover {
  background: white;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.slide-btn.prev {
  transform: translateX(-10px);
}

.slide-btn.next {
  transform: translateX(10px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ba-card:hover img {
  transform: scale(1.08);
}

.ba-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
}

.ba-badge.after {
  background: var(--btn-green);
}

.showcase-content {
  padding: 60px;
}

.project-cat {
  display: inline-block;
  color: var(--bagagreenheller);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.showcase-content h4 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--bagablue);
  line-height: 1.1;
}

.showcase-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--bagablue);
  font-size: 15px;
  transition: var(--transition);
}

.btn-text i {
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--btn-green);
}

.btn-text:hover i {
  transform: translateX(8px);
}

/* Gallery Grid Modern */
.gallery-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-item-new {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.g-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 57, 147, 0.9), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item-new:hover .g-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-new:hover img {
  transform: scale(1.1);
}

.g-overlay h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.g-overlay .project-cat {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .project-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-images {
    aspect-ratio: 16/9;
  }
}

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

  .showcase-content {
    padding: 40px 24px;
  }

  .showcase-content h4 {
    font-size: 26px;
  }
}

/* ── IMPACT SECTION (SUSTAINABILITY) ── */
.impact-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.impact-video-side {
  position: relative;
}

.impact-video-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.impact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-accent-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  pointer-events: none;
  z-index: 3;
}

.impact-floating-card {
  position: absolute;
  bottom: 60px;
  right: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 1px solid white;
}

.ifc-icon {
  font-size: 32px;
}

.ifc-text {
  display: flex;
  flex-direction: column;
}

.ifc-num {
  font-size: 24px;
  font-weight: 900;
  color: #1b4332;
  line-height: 1;
}

.ifc-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.sec-tag-green {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(27, 67, 50, 0.1);
  color: #1b4332;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.impact-content-side h2 {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
}

.impact-intro {
  font-size: 20px;
  font-weight: 600;
  color: #1b4332;
  line-height: 1.5;
  margin-bottom: 40px;
}

.impact-story p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
}

.highlight-quote-box {
  position: relative;
  padding: 30px 40px;
  background: var(--bagablue);
  border-radius: 24px;
  margin-bottom: 40px;
  overflow: hidden;
}

.highlight-quote-box h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.hq-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--btn-green);
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.stat-pill {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-pill:hover {
  transform: translateY(-5px);
  border-color: #1b4332;
}

.stat-icon {
  font-size: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info strong {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-info span {
  font-size: 13px;
  color: var(--muted);
}

.impact-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.impact-trust {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .impact-video-frame {
    aspect-ratio: 16/9;
  }

  .impact-floating-card {
    right: 20px;
    bottom: -20px;
  }
}

/* ── FAQ SECTION (MINIMALIST) ── */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 52px;
  font-weight: 900;
  color: #1a1a1a;
  /* Deep Black, no blue */
  letter-spacing: -1.5px;
}

.faq-accordion {
  max-width: 720px;
  /* Much narrower */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fdfdfd;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.2s ease;
  cursor: pointer;
  /* Clickable everywhere */
}

.faq-item:hover {
  border-color: #ddd;
}

.faq-item.active {
  border-color: #1a1a1a;
  background: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  /* Minimal vertical padding */
  cursor: pointer;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  /* Tight line height */
}

.faq-chevron {
  width: 16px;
  height: 16px;
  color: #999;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #1a1a1a;
}

/* ── LOCATIONS SECTION ── */
.locations {
  padding: 120px 0;
  background: var(--bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(76, 175, 80, 0.3);
}

.location-card.active {
  border-color: var(--btn-green);
  background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}

.location-card.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--btn-green);
}

.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.loc-header h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--bagablue);
}

.loc-status {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--btn-green);
  color: var(--white);
}

.loc-company {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 25px;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.loc-item svg {
  width: 20px;
  height: 20px;
  color: var(--btn-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-light);
}

.loc-item strong {
  color: var(--text);
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.loc-map-bg {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 220px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  transition: var(--transition);
}

.location-card:hover .loc-map-bg {
  opacity: 0.7;
}

.location-card.active .loc-map-bg {
  opacity: 1;
}

.loc-map-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--btn-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-dot 2s infinite;
}

.dot-hamburg { top: 22%; left: 42%; }
.dot-berlin { top: 32%; left: 70%; }

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Nav Locations Switcher */
.nav-locations {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 100px;
  margin-right: 20px;
  gap: 2px;
}

.site-nav.scrolled .nav-locations {
  background: #f1f5f9;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.loc-link {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.loc-link:hover {
  color: var(--white);
}

.site-nav.scrolled .loc-link {
  color: var(--text-light);
}

.site-nav.scrolled .loc-link:hover {
  color: var(--bagablue);
}

.loc-link.active {
  background: var(--btn-green) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.loc-divider {
  display: none;
}

/* ── SITE FOOTER (ELITE DESIGN) ── */
.site-footer {
  background: #0f172a;
  /* Deep dark navy */
  color: rgba(255, 255, 255, 0.6);
  padding: 100px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  height: 40px;
  /* Lock height to match logo */
}

.footer-brand .footer-logo {
  height: 40px;
  display: block;
}

.footer-logo-name {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-5px);
  margin-bottom: 15px;
  /* Aggressive nudge */
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--btn-green);
  transform: translateX(5px);
}

.footer-cta-link {
  margin-top: 15px;
}

.footer-cta-link a {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

/* Trust Bar */
.footer-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
}

.google-trust .stars {
  color: #FFD700;
  /* Gold */
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-icon {
  width: 40px;
  /* Larger background */
  height: 40px;
  background: rgba(76, 175, 80, 0.15);
  color: var(--btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  /* Smaller icon inside */
  height: 18px;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--btn-green);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-trust-bar {
    flex-direction: column;
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ── PREMIUM MOBILE OVERRIDES ── */
@media (max-width: 992px) {
  /* Navigation */
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .nav-links a {
    font-size: 24px;
    font-weight: 800;
  }
  
  .nav-cta .btn {
    font-size: 18px;
    padding: 14px 32px;
  }

  /* Grid Resets */
  .philosophy-grid,
  .quality-grid,
  .impact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .philosophy-video, .quality-video {
    order: -1; /* Move video above text */
  }

  /* Padding Adjustments */
  .services, .philosophy, .quality, .workflow, .gallery, .impact-section, .faq-section, .final-cta, .site-footer {
    padding: 50px 0;
  }

  .cta-elite-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Typography */
  .sec-header h2, .philosophy-content h2, .quality-content h2, .impact-content-side h2, .faq-header h2, .cta-content h2, .workflow-header h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }
  
  .hero h1 {
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Sections */
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-trust {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet/mobile */
  }
  
  /* Cards */
  .service-card {
    padding: 30px;
  }
  
  .phil-card, .q-step, .stat-pill {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* Floating Badges fix for mobile */
  .video-floating-badge {
    padding: 16px;
    right: -10px;
    top: 20px;
  }
  
  .badge-num {
    font-size: 24px;
  }
  
  .impact-floating-card {
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }

  /* Videos */
  .video-frame video {
    height: 350px !important;
  }
  .impact-video-frame {
    aspect-ratio: auto !important;
    height: 300px !important;
  }

  /* Workflow */
  .workflow-grid-elite {
    grid-template-columns: 1fr;
  }
  
  .workflow-card-elite {
    padding: 30px 20px;
  }

  /* Gallery */
  .project-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .showcase-images-side {
    aspect-ratio: 4/3;
  }
  
  .showcase-content {
    padding: 40px 24px;
  }

  /* Impact */
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-item {
    padding: 20px 15px !important;
  }
  .faq-question {
    padding: 6px 5px !important;
  }
  .faq-answer {
    padding: 0 5px !important;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-card {
    padding: 30px 20px;
  }
  .loc-header h3 {
    font-size: 24px;
  }

  /* Final CTA */
  .cta-content {
    padding: 40px 24px;
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .floating-badge {
    position: absolute;
    padding: 12px 18px;
    margin: 0;
    animation: float-soft 4s ease-in-out infinite;
  }
  .floating-badge .fb-icon {
    width: 32px;
    height: 32px;
  }
  .floating-badge .fb-text strong {
    font-size: 14px;
  }
  .floating-badge .fb-text span {
    font-size: 11px;
  }
  
  .top-right {
    top: 20px;
    right: 10px;
  }
  
  .bottom-left {
    bottom: 20px;
    left: 10px;
    top: auto;
  }
  
  .cta-image-wrap {
    display: block;
    padding: 0;
    height: 350px;
  }
  .cta-main-img {
    border-radius: 0;
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Footer */
  .footer-grid {
    gap: 40px;
  }
  .footer-trust-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid-modern {
    grid-template-columns: 1fr;
  }
}