/*
 * =============================================================
 * components.css — ExpoAxis v2
 * All UI components: navbar, hero, cards, forms, footer, etc.
 * =============================================================
 */


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position        : fixed;
  top             : 0;
  left            : 0;
  right           : 0;
  z-index         : 1000;
  height          : var(--nav-height);
  display         : flex;
  align-items     : center;
  transition      : var(--transition);
  /* Transparent at top of hero */
  background      : transparent;
}

/* Frosted-glass style once user scrolls */
.navbar.scrolled {
  background    : rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom : 1px solid rgba(255,255,255,0.07);
  box-shadow    : 0 4px 24px rgba(0,0,0,0.25);
}

/* Solid white nav for inner (non-hero) pages */
.navbar.light-nav {
  background  : var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow  : var(--shadow-sm);
}
.navbar.light-nav .nav-link          { color: var(--text-secondary); }
.navbar.light-nav .nav-link:hover    { color: var(--navy); }
.navbar.light-nav .nav-link.active   { color: var(--orange); }
.navbar.light-nav .hamburger span    { background: var(--navy); }
/* Logo: white on dark nav, original colour on white nav */
.nav-logo-img                        { filter: brightness(0) invert(1); }
.navbar.light-nav .nav-logo-img      { filter: none; }

.nav-inner {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 32px;
  width          : 100%;
  max-width      : var(--container);
  margin         : 0 auto;
  padding        : 0 40px;
}

/* Logo */
.nav-logo {
  display    : flex;
  align-items: center;
  gap        : 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width          : 36px;
  height         : 36px;
  background     : var(--orange);
  border-radius  : var(--radius-sm);
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-shrink    : 0;
}

.nav-logo-text {
  font-family   : var(--font-heading);
  font-weight   : 800;
  font-size     : 1.15rem;
  color         : var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-accent {
  color: var(--orange);
}

/* On light nav the base text flips to navy; accent stays orange */
.navbar.light-nav .nav-logo-text {
  color: var(--navy);
}
.navbar.light-nav .nav-logo-accent {
  color: var(--orange);
}

/* Desktop nav links */
.nav-links {
  display    : flex;
  align-items: center;
  gap        : 4px;
  margin     : 0 auto;
}

.nav-link {
  font-family   : var(--font-heading);
  font-size     : 0.88rem;
  font-weight   : 500;
  color         : rgba(255,255,255,0.75);
  padding       : 8px 14px;
  border-radius : var(--radius-full);
  transition    : var(--transition);
  white-space   : nowrap;
  position      : relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content      : '';
  position     : absolute;
  bottom       : 4px;
  left         : 50%;
  transform    : translateX(-50%);
  width        : 18px;
  height       : 2px;
  background   : var(--orange);
  border-radius: var(--radius-full);
}

/* Nav right: CTA button + hamburger */
.nav-right {
  display    : flex;
  align-items: center;
  gap        : 12px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display       : none;
  flex-direction: column;
  gap           : 5px;
  width         : 36px;
  height        : 36px;
  align-items   : center;
  justify-content: center;
  background    : transparent;
  border        : none;
  cursor        : pointer;
  padding       : 4px;
}
.hamburger span {
  display      : block;
  width        : 22px;
  height       : 2px;
  background   : var(--white);
  border-radius: var(--radius-full);
  transition   : var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE MENU — full-screen overlay
   ============================================================ */
.mobile-menu {
  position       : fixed;
  inset          : 0;
  z-index        : 999;
  background     : var(--navy);
  display        : flex;
  flex-direction : column;
  justify-content: center;
  padding        : 80px 40px 40px;
  transform      : translateY(-100%);
  opacity        : 0;
  transition     : transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                   opacity   0.3s ease;
  pointer-events : none;
}

.mobile-menu.open {
  transform     : translateY(0);
  opacity       : 1;
  pointer-events: all;
}

.mobile-nav-links {
  display       : flex;
  flex-direction: column;
  gap           : 6px;
  margin-bottom : 40px;
}

.mobile-nav-link {
  font-family : var(--font-heading);
  font-size   : 1.6rem;
  font-weight : 700;
  color       : rgba(255,255,255,0.55);
  padding     : 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition  : var(--transition);
  letter-spacing: -0.02em;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--white); }
.mobile-nav-link.active { color: var(--orange); }

.mobile-cta { margin-top: 8px; }


/* ============================================================
   HERO COMPONENTS
   ============================================================ */

/* Pre-headline badge pill */
.hero-badge {
  display      : inline-flex;
  align-items  : center;
  gap          : 8px;
  background   : rgba(249, 115, 22, 0.12);
  border       : 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius-full);
  padding      : 7px 16px;
  font-family  : var(--font-heading);
  font-size    : 0.78rem;
  font-weight  : 600;
  color        : var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom : 24px;
}

.hero-badge-dot {
  width        : 6px;
  height       : 6px;
  border-radius: 50%;
  background   : var(--orange);
  animation    : pulseOrange 2s ease-in-out infinite;
}

/* Main hero heading */
.hero-title {
  font-size     : clamp(2.4rem, 5.5vw, 4rem);
  font-weight   : 900;
  color         : var(--white);
  line-height   : 1.08;
  letter-spacing: -0.035em;
  margin-bottom : 24px;
}

/* Hero supporting paragraph */
.hero-subtitle {
  font-size  : 1.12rem;
  color      : rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width  : 540px;
  margin-bottom: 40px;
}

/* CTA button row */
.hero-ctas {
  display  : flex;
  gap      : 14px;
  flex-wrap: wrap;
}

/* Individual stat in hero bottom bar */
.hero-stat {
  padding        : 28px 24px;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  text-align     : center;
  position       : relative;
  gap            : 4px;
}
.hero-stat:not(:last-child)::after {
  content   : '';
  position  : absolute;
  right     : 0;
  top       : 25%;
  height    : 50%;
  width     : 1px;
  background: rgba(255,255,255,0.10);
}

.hero-stat-num {
  font-family   : var(--font-heading);
  font-size     : 1.9rem;
  font-weight   : 800;
  color         : var(--white);
  line-height   : 1;
  letter-spacing: -0.03em;
}
.hero-stat-num span { color: var(--orange); }

.hero-stat-label {
  font-size  : 0.78rem;
  color      : rgba(255,255,255,0.50);
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ============================================================
   TRUST MARQUEE ITEMS
   ============================================================ */
.marquee-item {
  display    : flex;
  align-items: center;
  gap        : 9px;
  font-family: var(--font-heading);
  font-size  : 0.82rem;
  font-weight: 600;
  color      : var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-item i {
  color     : var(--orange);
  font-size : 0.9rem;
  flex-shrink: 0;
}

/* Bullet separator between items */
.marquee-dot {
  width        : 4px;
  height       : 4px;
  border-radius: 50%;
  background   : var(--slate-200);
  flex-shrink  : 0;
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background    : var(--white);
  border        : 1px solid var(--border-light);
  border-radius : var(--radius-xl);
  padding       : 36px 32px;
  transition    : var(--transition);
  position      : relative;
  overflow      : hidden;
  display       : flex;
  flex-direction: column;
  gap           : 16px;
}

/* Subtle top accent on hover */
.service-card::before {
  content   : '';
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  height    : 3px;
  background: var(--orange);
  transform : scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow  : var(--shadow-lg);
  transform   : translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

/* Orange icon circle */
.service-icon {
  width         : 56px;
  height        : 56px;
  border-radius : var(--radius-md);
  background    : var(--orange-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-size     : 1.3rem;
  color         : var(--orange);
  transition    : var(--transition);
  flex-shrink   : 0;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color     : var(--white);
  box-shadow: var(--shadow-orange);
}

.service-card-title {
  font-size   : 1.05rem;
  font-weight : 700;
  color       : var(--text-primary);
  margin      : 0;
}

.service-card-text {
  font-size  : 0.88rem;
  color      : var(--text-secondary);
  line-height: 1.65;
  flex       : 1;
  margin     : 0;
}

.service-card-link {
  display    : inline-flex;
  align-items: center;
  gap        : 6px;
  font-family: var(--font-heading);
  font-size  : 0.82rem;
  font-weight: 600;
  color      : var(--orange);
  transition : gap 0.2s ease;
  margin-top : 4px;
}
.service-card:hover .service-card-link { gap: 10px; }


/* ============================================================
   PROJECT CARDS — portfolio grid
   ============================================================ */
.project-card {
  position      : relative;
  border-radius : var(--radius-xl);
  overflow      : hidden;
  background    : var(--navy-800);
  cursor        : pointer;
  display       : block;
  height        : 100%;
  min-height    : 220px;
}

/* Placeholder / image background */
.project-card-bg {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  display   : flex;
  align-items: center;
  justify-content: center;
  color     : rgba(255,255,255,0.10);
  font-size : 3rem;
  transition: transform 0.5s ease;
}
.project-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.project-card:hover .project-card-bg { transform: scale(1.05); }

/* Dark gradient overlay for text legibility */
.project-overlay {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(to top, rgba(15,23,42,0.90) 0%, transparent 55%);
  display   : flex;
  flex-direction: column;
  justify-content: flex-end;
  padding   : 24px;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.3) 55%);
}

.project-tag {
  display      : inline-block;
  padding      : 4px 10px;
  background   : var(--orange);
  color        : var(--white);
  font-family  : var(--font-heading);
  font-size    : 0.72rem;
  font-weight  : 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  align-self   : flex-start;
}

.project-name {
  font-family  : var(--font-heading);
  font-size    : 1.1rem;
  font-weight  : 700;
  color        : var(--white);
  margin       : 0;
}

.project-location {
  font-size  : 0.8rem;
  color      : rgba(255,255,255,0.55);
  margin-top : 4px;
}

/* Arrow icon top-right */
.project-arrow {
  position      : absolute;
  top           : 16px;
  right         : 16px;
  width         : 36px;
  height        : 36px;
  border-radius : 50%;
  background    : rgba(255,255,255,0.10);
  border        : 1px solid rgba(255,255,255,0.15);
  display       : flex;
  align-items   : center;
  justify-content: center;
  color         : var(--white);
  font-size     : 0.8rem;
  opacity       : 0;
  transform     : translate(6px, -6px);
  transition    : var(--transition);
}
.project-card:hover .project-arrow {
  opacity  : 1;
  transform: translate(0, 0);
  background: var(--orange);
  border-color: var(--orange);
}


/* ============================================================
   WHY CHOOSE US CARDS — glassmorphism on dark
   ============================================================ */
.why-card {
  background    : rgba(255, 255, 255, 0.05);
  border        : 1px solid rgba(255, 255, 255, 0.08);
  border-radius : var(--radius-xl);
  padding       : 32px 28px;
  transition    : var(--transition);
  position      : relative;
  overflow      : hidden;
}

.why-card::before {
  content      : '';
  position     : absolute;
  top          : 0;
  left         : 0;
  right        : 0;
  height       : 1px;
  background   : linear-gradient(90deg, transparent, rgba(249,115,22,0.5), transparent);
  opacity      : 0;
  transition   : var(--transition);
}

.why-card:hover {
  background  : rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.25);
  transform   : translateY(-4px);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width         : 52px;
  height        : 52px;
  border-radius : var(--radius-md);
  background    : rgba(249, 115, 22, 0.15);
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-size     : 1.25rem;
  color         : var(--orange);
  margin-bottom : 18px;
  transition    : var(--transition);
}
.why-card:hover .why-icon {
  background: var(--orange);
  color     : var(--white);
  box-shadow: var(--shadow-orange);
}

.why-card-title {
  font-size   : 1rem;
  font-weight : 700;
  color       : var(--white);
  margin-bottom: 8px;
}

.why-card-text {
  font-size  : 0.87rem;
  color      : rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Image/visual side of why-us section */
/* Wrapper column stretches to fill the full grid row height */
.why-visual-col {
  display        : flex;
  align-self     : stretch;
}

.why-visual {
  position       : relative;
  border-radius  : var(--radius-2xl);
  overflow       : hidden;
  background     : var(--navy-800);
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 100%;
  min-height     : 420px;
}
.why-visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}


/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  text-align    : center;
  padding       : 0 16px;
  position      : relative;
  z-index       : 1;
}

.step-num {
  width         : 56px;
  height        : 56px;
  border-radius : 50%;
  background    : var(--white);
  border        : 3px solid var(--orange);
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-family   : var(--font-heading);
  font-size     : 1.05rem;
  font-weight   : 800;
  color         : var(--orange);
  margin-bottom : 20px;
  transition    : var(--transition);
  box-shadow    : var(--shadow-sm);
}

.process-step:hover .step-num {
  background  : var(--orange);
  color       : var(--white);
  box-shadow  : var(--shadow-orange);
  transform   : scale(1.08);
}

.step-icon {
  font-size    : 0.95rem;
  color        : var(--slate-light);
  margin-bottom: 10px;
}

.step-title {
  font-family  : var(--font-heading);
  font-size    : 0.92rem;
  font-weight  : 700;
  color        : var(--text-primary);
  margin-bottom: 6px;
}

.step-text {
  font-size  : 0.82rem;
  color      : var(--text-secondary);
  line-height: 1.55;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  flex-shrink  : 0;
  width        : 380px;
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding      : 32px;
  scroll-snap-align: start;
  transition   : var(--transition);
  display      : flex;
  flex-direction: column;
  gap          : 16px;
}
.testimonial-card:hover {
  box-shadow  : var(--shadow-lg);
  border-color: rgba(249,115,22,0.2);
  transform   : translateY(-4px);
}

/* Star row */
.testimonial-stars {
  display: flex;
  gap    : 3px;
  color  : #F59E0B;
  font-size: 0.82rem;
}

.testimonial-quote {
  font-size    : 0.93rem;
  color        : var(--text-secondary);
  line-height  : 1.75;
  flex         : 1;
  font-style   : italic;
}

.testimonial-author {
  display    : flex;
  align-items: center;
  gap        : 12px;
  padding-top: 16px;
  border-top : 1px solid var(--border-light);
}

.testimonial-avatar {
  width         : 44px;
  height        : 44px;
  border-radius : 50%;
  background    : linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-family   : var(--font-heading);
  font-size     : 0.85rem;
  font-weight   : 700;
  color         : var(--white);
  flex-shrink   : 0;
}

.testimonial-name {
  font-family : var(--font-heading);
  font-size   : 0.9rem;
  font-weight : 700;
  color       : var(--text-primary);
}
.testimonial-role {
  font-size  : 0.78rem;
  color      : var(--text-tertiary);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-content {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 48px;
  padding        : 88px 0;
  position       : relative;
  z-index        : 2;
}

/* Orange glow spot in CTA */
.cta-glow {
  position      : absolute;
  top           : -80px;
  left          : -80px;
  width         : 400px;
  height        : 400px;
  background    : radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
  border-radius : 50%;
  pointer-events: none;
}
.cta-glow-2 {
  top    : auto;
  left   : auto;
  bottom : -80px;
  right  : -80px;
}

.cta-text { max-width: 560px; }

.cta-title {
  font-size    : clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight  : 800;
  color        : var(--white);
  line-height  : 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-subtitle {
  font-size  : 1.05rem;
  color      : rgba(255,255,255,0.60);
  line-height: 1.75;
  max-width  : 480px;
}

.cta-actions {
  display   : flex;
  gap       : 14px;
  flex-wrap : wrap;
  flex-shrink: 0;
}


/* ============================================================
   STATS STRIP ITEMS
   ============================================================ */
.stats-item {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  justify-content: center;
  text-align    : center;
  padding       : 40px 24px;
  position      : relative;
}
.stats-item:not(:last-child)::after {
  content   : '';
  position  : absolute;
  right     : 0;
  top       : 20%;
  height    : 60%;
  width     : 1px;
  background: var(--border-light);
}

.stats-num {
  font-family  : var(--font-heading);
  font-size    : 2.6rem;
  font-weight  : 800;
  color        : var(--orange);
  line-height  : 1;
  letter-spacing: -0.03em;
}
.stats-num sup {
  font-size   : 1.4rem;
  font-weight : 700;
  color       : var(--navy);
  vertical-align: super;
}

.stats-label {
  font-size   : 0.85rem;
  color       : var(--text-secondary);
  margin-top  : 8px;
  font-weight : 500;
  max-width   : 140px;
}


/* ============================================================
   FOOTER COMPONENTS
   ============================================================ */
.footer-logo {
  display    : flex;
  align-items: center;
  gap        : 10px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width          : 36px;
  height         : 36px;
  background     : var(--orange);
  border-radius  : var(--radius-sm);
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-shrink    : 0;
}

.footer-logo-text {
  font-family  : var(--font-heading);
  font-weight  : 800;
  font-size    : 1.1rem;
  color        : var(--white);
  letter-spacing: -0.02em;
}

.footer-logo-accent {
  color: var(--orange);
}

.footer-tagline {
  font-size  : 0.88rem;
  color      : rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width  : 280px;
  margin-bottom: 24px;
}

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

.social-btn {
  width         : 38px;
  height        : 38px;
  border-radius : 50%;
  background    : rgba(255,255,255,0.06);
  border        : 1px solid rgba(255,255,255,0.10);
  display       : flex;
  align-items   : center;
  justify-content: center;
  color         : rgba(255,255,255,0.55);
  font-size     : 0.88rem;
  transition    : var(--transition);
}
.social-btn:hover {
  background  : var(--orange);
  border-color: var(--orange);
  color       : var(--white);
  transform   : translateY(-2px);
}

.footer-heading {
  font-family  : var(--font-heading);
  font-size    : 0.8rem;
  font-weight  : 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color        : rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}

.footer-link {
  font-size  : 0.88rem;
  color      : rgba(255,255,255,0.55);
  transition : var(--transition);
}
.footer-link:hover {
  color      : var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display    : flex;
  align-items: flex-start;
  gap        : 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  width         : 34px;
  height        : 34px;
  border-radius : var(--radius-sm);
  background    : rgba(249,115,22,0.12);
  display       : flex;
  align-items   : center;
  justify-content: center;
  color         : var(--orange);
  font-size     : 0.82rem;
  flex-shrink   : 0;
}

.footer-contact-text {
  font-size  : 0.85rem;
  color      : rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-text strong {
  display    : block;
  font-weight: 600;
  color      : rgba(255,255,255,0.80);
  font-size  : 0.82rem;
  margin-bottom: 2px;
}

.footer-bottom-copy {
  font-size : 0.80rem;
  color     : rgba(255,255,255,0.30);
}

.footer-bottom-links {
  display: flex;
  gap    : 20px;
}

.footer-bottom-link {
  font-size : 0.80rem;
  color     : rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.75); }


/* ============================================================
   BACK TO TOP / FLOATING BUTTONS
   ============================================================ */
.back-to-top {
  position     : fixed;
  bottom       : 32px;
  right        : 32px;
  z-index      : 500;
  width        : 46px;
  height       : 46px;
  border-radius: 50%;
  background   : var(--orange);
  border       : none;
  color        : var(--white);
  font-size    : 1rem;
  cursor       : pointer;
  box-shadow   : var(--shadow-orange);
  opacity      : 0;
  transform    : translateY(12px);
  pointer-events: none;
  transition   : var(--transition);
  display      : flex;
  align-items  : center;
  justify-content: center;
}
.back-to-top.visible {
  opacity       : 1;
  transform     : translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--orange-hover); transform: translateY(-3px); }

.floating-btns {
  position      : fixed;
  bottom        : 90px;
  right         : 32px;
  z-index       : 500;
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}

.float-btn {
  width         : 46px;
  height        : 46px;
  border-radius : 50%;
  border        : none;
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-size     : 1.1rem;
  cursor        : pointer;
  transition    : var(--transition);
  box-shadow    : var(--shadow-md);
  text-decoration: none;
}
.float-whatsapp { background: #25D366; color: var(--white); }
.float-phone    { background: var(--orange); color: var(--white); }
.float-btn:hover { transform: scale(1.10); }


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-card {
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding      : 44px 40px;
  box-shadow   : var(--shadow-lg);
}

.form-group { margin-bottom: 20px; }

.form-label {
  display      : block;
  font-family  : var(--font-heading);
  font-size    : 0.82rem;
  font-weight  : 600;
  color        : var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* GDPR consent checkbox row */
.form-consent-group {
  margin: 20px 0 4px;
}
.form-consent-label {
  display    : flex;
  align-items: flex-start;
  gap        : 12px;
  cursor     : pointer;
}
.form-consent-label input[type="checkbox"] {
  width       : 18px;
  height      : 18px;
  min-width   : 18px;
  margin-top  : 2px;
  accent-color: var(--orange);
  cursor      : pointer;
}
.form-consent-label span {
  font-size  : 0.83rem;
  color      : var(--text-secondary);
  line-height: 1.5;
}
.form-consent-label span a {
  color          : var(--orange);
  text-decoration: underline;
}
.form-consent-label span a:hover { color: var(--orange-hover); }

.form-control {
  width        : 100%;
  padding      : 13px 16px;
  border       : 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family  : var(--font-body);
  font-size    : 0.92rem;
  color        : var(--text-primary);
  background   : var(--bg-surface);
  transition   : var(--transition);
  outline      : none;
}
.form-control::placeholder { color: var(--text-tertiary); }
.form-control:focus {
  border-color: var(--orange);
  background  : var(--white);
  box-shadow  : 0 0 0 3px rgba(249,115,22,0.10);
}

.form-control-textarea {
  resize    : vertical;
  min-height: 130px;
}

.form-row {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 16px;
}

.form-success {
  padding      : 14px 18px;
  border-radius: var(--radius-md);
  background   : rgba(22,163,74,0.08);
  border       : 1px solid rgba(22,163,74,0.25);
  color        : #15803D;
  font-size    : 0.9rem;
  display      : none;
  margin-bottom: 12px;
}
.form-success.show { display: block; }

/* Error variant — shown when Web3Forms returns an error or fetch fails */
.form-success.form-error {
  background: rgba(220,38,38,0.07);
  border-color: rgba(220,38,38,0.25);
  color: #b91c1c;
}
.form-success.form-error a { color: #b91c1c; text-decoration: underline; }


/* ============================================================
   CONTACT INFO ITEMS
   ============================================================ */
.contact-info-item {
  display      : flex;
  align-items  : flex-start;
  gap          : 16px;
  padding      : 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width         : 48px;
  height        : 48px;
  border-radius : var(--radius-md);
  background    : var(--orange-light);
  display       : flex;
  align-items   : center;
  justify-content: center;
  color         : var(--orange);
  font-size     : 1.1rem;
  flex-shrink   : 0;
}

.contact-info-label {
  font-family  : var(--font-heading);
  font-size    : 0.78rem;
  font-weight  : 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color        : var(--text-tertiary);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size   : 0.95rem;
  color       : var(--text-primary);
  font-weight : 500;
  line-height : 1.4;
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  width          : 100%;
  padding        : 20px 0;
  background     : transparent;
  border         : none;
  cursor         : pointer;
  text-align     : left;
  gap            : 16px;
  transition     : var(--transition);
}

.faq-question span {
  font-family : var(--font-heading);
  font-size   : 0.98rem;
  font-weight : 600;
  color       : var(--text-primary);
  line-height : 1.4;
}

.faq-question i {
  font-size : 0.85rem;
  color     : var(--slate-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question span { color: var(--orange); }

.faq-answer {
  overflow  : hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding     : 0 0 20px;
  font-size   : 0.9rem;
  color       : var(--text-secondary);
  line-height : 1.75;
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position        : fixed;
  bottom          : 0;
  left            : 0;
  right           : 0;
  z-index         : 2000;
  background      : var(--white);
  border-top      : 1px solid var(--border-light);
  padding         : 16px 40px;
  display         : none;
  align-items     : center;
  justify-content : center;
  gap             : 16px;
  flex-wrap       : wrap;
  box-shadow      : 0 -4px 24px rgba(15,23,42,0.10);
}
.cookie-banner.show { display: flex; }

.cookie-banner p {
  font-size : 0.85rem;
  color     : var(--text-secondary);
  max-width : 560px;
}
.cookie-banner a { color: var(--orange); text-decoration: underline; }

.cookie-accept {
  padding      : 9px 22px;
  border-radius: var(--radius-full);
  border       : none;
  background   : var(--orange);
  color        : var(--white);
  font-family  : var(--font-heading);
  font-weight  : 600;
  font-size    : 0.82rem;
  cursor       : pointer;
  transition   : var(--transition);
}
.cookie-accept:hover { background: var(--orange-hover); }

.cookie-decline {
  padding      : 9px 22px;
  border-radius: var(--radius-full);
  border       : 1.5px solid var(--border-medium);
  background   : transparent;
  color        : var(--text-secondary);
  font-family  : var(--font-heading);
  font-weight  : 600;
  font-size    : 0.82rem;
  cursor       : pointer;
  transition   : var(--transition);
}
.cookie-decline:hover { border-color: var(--navy); color: var(--navy); }


/* ============================================================
   ABOUT PAGE COMPONENTS
   ============================================================ */
.about-stat-tile {
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding      : 24px;
  text-align   : center;
  box-shadow   : var(--shadow-sm);
  flex         : 1;
}
.about-stat-num {
  font-family  : var(--font-heading);
  font-size    : 2rem;
  font-weight  : 800;
  color        : var(--orange);
  line-height  : 1;
}
.about-stat-num span { color: var(--navy); font-size: 1.4rem; }
.about-stat-label {
  font-size  : 0.80rem;
  color      : var(--text-secondary);
  margin-top : 6px;
}

.team-card {
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow     : hidden;
  transition   : var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.team-photo {
  height    : 220px;
  background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 100%);
  display   : flex;
  align-items: center;
  justify-content: center;
  font-size : 3.5rem;
  color     : var(--slate-light);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 20px 20px 24px; }

.team-name {
  font-family : var(--font-heading);
  font-size   : 0.98rem;
  font-weight : 700;
  color       : var(--text-primary);
  margin-bottom: 4px;
}
.team-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; }


/* ============================================================
   INDUSTRIES CARDS
   ============================================================ */
.industry-card {
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding      : 32px 28px;
  transition   : var(--transition);
  position     : relative;
  overflow     : hidden;
}
.industry-card::after {
  content   : '';
  position  : absolute;
  bottom    : 0;
  left      : 0;
  right     : 0;
  height    : 3px;
  background: var(--orange);
  transform : scaleX(0);
  transition: transform 0.3s ease;
}
.industry-card:hover {
  box-shadow  : var(--shadow-lg);
  transform   : translateY(-4px);
  border-color: rgba(249,115,22,0.2);
}
.industry-card:hover::after { transform: scaleX(1); }

.industry-icon {
  width        : 56px;
  height       : 56px;
  border-radius: var(--radius-md);
  background   : var(--orange-light);
  display      : flex;
  align-items  : center;
  justify-content: center;
  color        : var(--orange);
  font-size    : 1.4rem;
  margin-bottom: 20px;
  transition   : var(--transition);
}
.industry-card:hover .industry-icon {
  background: var(--orange);
  color     : var(--white);
}

.industry-name {
  font-family  : var(--font-heading);
  font-size    : 1rem;
  font-weight  : 700;
  color        : var(--text-primary);
  margin-bottom: 8px;
}
.industry-desc {
  font-size  : 0.86rem;
  color      : var(--text-secondary);
  line-height: 1.65;
}


/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background   : var(--white);
  border       : 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow     : hidden;
  transition   : var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-thumb {
  height    : 200px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  display   : flex;
  align-items: center;
  justify-content: center;
  color     : rgba(255,255,255,0.12);
  font-size : 2.5rem;
  overflow  : hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }

.blog-body { padding: 24px; }

.blog-meta {
  display    : flex;
  align-items: center;
  gap        : 10px;
  margin-bottom: 12px;
}
.blog-date {
  font-size  : 0.78rem;
  color      : var(--text-tertiary);
  font-weight: 500;
}

.blog-title {
  font-family  : var(--font-heading);
  font-size    : 1rem;
  font-weight  : 700;
  color        : var(--text-primary);
  line-height  : 1.4;
  margin-bottom: 10px;
}
.blog-title:hover { color: var(--orange); }

.blog-excerpt {
  font-size  : 0.85rem;
  color      : var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  display    : inline-flex;
  align-items: center;
  gap        : 6px;
  font-family: var(--font-heading);
  font-size  : 0.82rem;
  font-weight: 600;
  color      : var(--orange);
  transition : gap 0.2s ease;
}
.blog-card:hover .blog-read-more { gap: 10px; }


/* ============================================================
   BREADCRUMB — inner page navigation
   ============================================================ */
.breadcrumb {
  display    : flex;
  align-items: center;
  gap        : 6px;
  margin-bottom: 20px;
}
.breadcrumb-item {
  font-size  : 0.82rem;
  color      : rgba(255,255,255,0.45);
}
.breadcrumb-item a:hover { color: rgba(255,255,255,0.80); }
.breadcrumb-item.active  { color: var(--orange); }
.breadcrumb-sep {
  color     : rgba(255,255,255,0.25);
  font-size : 0.7rem;
}


/* ============================================================
   PORTFOLIO FILTER BAR
   ============================================================ */
.filter-bar {
  display  : flex;
  gap      : 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding      : 9px 20px;
  border-radius: var(--radius-full);
  border       : 1.5px solid var(--border-medium);
  background   : transparent;
  font-family  : var(--font-heading);
  font-size    : 0.83rem;
  font-weight  : 600;
  color        : var(--text-secondary);
  cursor       : pointer;
  transition   : var(--transition);
}
.filter-btn:hover {
  border-color: var(--orange);
  color       : var(--orange);
}
.filter-btn.active {
  background  : var(--orange);
  border-color: var(--orange);
  color       : var(--white);
  box-shadow  : var(--shadow-orange);
}


/* ============================================================
   INDUSTRY CARD — extended classes (industries.html)
   ============================================================ */
.industry-card-icon {
  width        : 56px;
  height       : 56px;
  border-radius: var(--radius-md);
  background   : var(--orange-light);
  display      : flex;
  align-items  : center;
  justify-content: center;
  color        : var(--orange);
  font-size    : 1.4rem;
  margin-bottom: 20px;
  transition   : var(--transition);
}
.industry-card:hover .industry-card-icon {
  background: var(--orange);
  color     : var(--white);
}
.industry-card-body { flex: 1; }

.industry-card-title {
  font-family  : var(--font-heading);
  font-size    : 1rem;
  font-weight  : 700;
  color        : var(--text-primary);
  margin-bottom: 8px;
}
.industry-card-text {
  font-size    : 0.86rem;
  color        : var(--text-secondary);
  line-height  : 1.65;
  margin-bottom: 16px;
}
.industry-card-shows {
  list-style  : none;
  padding     : 0;
  margin      : 0;
  display     : flex;
  flex-wrap   : wrap;
  gap         : 6px;
}
.industry-card-shows li {
  font-size   : 0.76rem;
  color       : var(--text-tertiary);
  font-weight : 500;
  display     : flex;
  align-items : center;
  gap         : 4px;
}
.industry-card-shows li i { color: var(--orange); font-size: 0.72rem; }
/* The bottom accent bar is handled by .industry-card::after pseudo-element */
.industry-card-bar { display: none; }


/* ============================================================
   BLOG CARD — extended classes (blog.html, case-studies.html)
   ============================================================ */
.blog-card-img {
  height   : 200px;
  overflow : hidden;
}
.blog-card-img img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
  transition : transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.blog-card-featured .blog-card-img {
  height     : 100%;
  min-height : 280px;
}
.blog-card-img-placeholder {
  height     : 200px;
  background : linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  display    : flex;
  align-items: center;
  justify-content: center;
  color      : rgba(255,255,255,0.12);
  font-size  : 2.5rem;
}
.blog-card-featured .blog-card-img-placeholder {
  height: 100%;
  min-height: 280px;
}
.blog-card-body     { padding: 24px; }
.blog-card-meta     { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-tag {
  display      : inline-block;
  padding      : 3px 10px;
  background   : var(--orange-light);
  color        : var(--orange);
  border-radius: var(--radius-full);
  font-size    : 0.72rem;
  font-weight  : 700;
  font-family  : var(--font-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blog-card-date {
  font-size : 0.78rem;
  color     : var(--text-tertiary);
  font-weight: 500;
  display   : flex;
  align-items: center;
  gap       : 4px;
}
.blog-card-title {
  font-family  : var(--font-heading);
  font-size    : 1rem;
  font-weight  : 700;
  color        : var(--text-primary);
  line-height  : 1.4;
  margin-bottom: 10px;
}
.blog-card-title:hover { color: var(--orange); }

.blog-card-excerpt {
  font-size    : 0.85rem;
  color        : var(--text-secondary);
  line-height  : 1.65;
  margin-bottom: 16px;
}
.blog-card-link {
  display    : inline-flex;
  align-items: center;
  gap        : 6px;
  font-family: var(--font-heading);
  font-size  : 0.82rem;
  font-weight: 600;
  color      : var(--orange);
  transition : gap 0.2s ease;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* Featured blog card layout */
.blog-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.blog-card-featured .blog-card-body { padding: 40px 36px; }
.blog-card-featured .blog-card-title {
  font-size  : 1.3rem;
  line-height: 1.3;
}


/* ============================================================
   CASE STUDIES GRID (case-studies.html)
   ============================================================ */
@media (max-width: 768px) {
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-featured .blog-card-img,
  .blog-card-featured .blog-card-img-placeholder { min-height: 200px; }
}
