/* ==========================================================================
   PREMIUM THEME - MAIN STYLESHEET
   ========================================================================== */

:root {
  --primary-color: #F97316;
  --primary-hover: #EA580C;
  --primary-pressed: #C2410C;
  --secondary-color: #0F172A;
  --accent-color: #F97316;
  --background-color: #F8FAFC;
  --white: #FFFFFF;
  --text-color: #6B7280;
  --color-blue: #2563EB;
  --text-primary: #0F172A;
  --text-secondary: #6B7280;
  --border-color: #E5E7EB;
  --danger-color: #DC2626;
  --success-color: #10B981;
  --warning-color: #F97316;
  --info-color: #06B6D4;
  --color-purple: #7C3AED;
  --color-gold: #D4A017;
  --color-navy: #0F172A;

  --radius-button: 12px;
  --radius-card: 16px;
  --radius-image: 24px;
  --radius-input: 12px;

  --shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.02), 0 2px 8px rgba(0, 0, 0, 0.02);
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background: var(--white);
  line-height: 24px;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-feature-settings: "cv01", "cv02", "cv03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-2);
  color: var(--secondary-color);
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-feature-settings: "cv01", "cv02", "cv03";
}

p {
  margin: 0 0 var(--space-3);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.btn-secondary {
  border-color: var(--border-color);
  color: var(--secondary-color);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: var(--background-color);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 12px 16px;
  background: var(--secondary-color);
  color: var(--white);
  z-index: 300;
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 250;
  background: #FFFFFF;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid var(--border-color);
}

.site-header.transparent {
  background: #FFFFFF;
}

.site-header.scrolled {
  background: #FFFFFF;
  height: 76px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.header-wrapper,
.header-container {
  height: 100%;
}

.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.site-branding {
  transition: opacity var(--transition-smooth);
}

.site-header.scrolled .site-branding {
  opacity: 1;
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
}

.primary-navigation {
  justify-self: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--transition-smooth);
}

.site-header.scrolled .nav-menu a {
  color: var(--text-color);
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--primary-color);
}

.services-menu-item {
  position: relative;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 290;
}

.services-dropdown li {
  margin: 0;
}

.services-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
}

.services-dropdown a:hover {
  background: var(--background-color);
  color: var(--primary-color);
}

.services-menu-item:hover .services-dropdown,
.services-menu-item:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.header-search:hover {
  color: var(--primary-color);
}

.header-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
}

.menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.menu-toggle-line {
  width: 28px;
  height: 2px;
  background: var(--text-color);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth), background-color var(--transition-smooth);
}

.site-header.scrolled .menu-toggle-line {
  background: var(--text-color);
}

.menu-toggle.active .menu-toggle-line {
  background: var(--white) !important;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
}

.header-call-icon:hover {
  color: var(--white);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.header-call-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-call-label {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
}

.header-call-number {
  color: var(--secondary-color);
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 120px 24px 32px;
  background: rgba(17, 18, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-menu-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-nav-menu a {
  color: var(--white);
  font-size: 1.15rem;
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mobile-services-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 14px;
  display: grid;
  gap: 8px;
}

.mobile-services-list a {
  font-size: 0.92rem;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.mobile-nav-cta {
  margin-top: var(--space-5);
  width: 100%;
}

/* ==========================================================================
   HERO (Plein Écran & dezoom slider)
   ========================================================================== */

.hero-section {
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 700px;
  padding: 24px;
  background: var(--background-color);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-card {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  background: #06182c;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 900ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.hero-slide.is-active .hero-slide-img {
  animation: kenBurnsDezoom 8s linear forwards;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 44, 0.82) 0%,
    rgba(6, 24, 44, 0.55) 35%,
    rgba(6, 24, 44, 0.20) 65%,
    rgba(6, 24, 44, 0.05) 100%
  );
  z-index: 2;
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}

.hero-slide-content {
  max-width: 680px;
  text-align: left;
}

.hero-slide-title {
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1) 200ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1) 200ms;
}

.hero-slide.is-active .hero-slide-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1) 350ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1) 350ms;
}

.hero-slide.is-active .hero-slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1) 500ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1) 500ms;
}

.hero-slide.is-active .hero-slide-buttons {
  opacity: 1;
  transform: translateY(0);
}

.btn-hero-primary {
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1), background-color 250ms ease;
  font-family: "Inter Variable", "Inter", sans-serif;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  background-color: var(--primary-hover);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.35);
  color: var(--white);
}

.btn-hero-secondary {
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: background-color 250ms ease, backdrop-filter 250ms ease, border-color 250ms ease;
  font-family: "Inter Variable", "Inter", sans-serif;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.hero-slider-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease;
}

.hero-slider-dot.is-active {
  background: var(--white);
  transform: scale(1.3);
}

/* Floating Project Card */
.hero-floating-project {
  position: absolute;
  z-index: 10;
  right: 60px;
  bottom: 60px;
  width: 380px;
  height: 260px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-color);
}

.hero-floating-project:hover {
  transform: translateY(-8px) scale(1.03);
}

.hero-float-img-wrapper {
  width: 120px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-float-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-right: 16px;
}

.hero-float-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.hero-float-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #111827;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.hero-float-desc {
  font-size: 13px;
  line-height: 18px;
  color: #6b7280;
  margin: 0;
}

.hero-float-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--background-color);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, color 200ms ease;
  border: 1px solid var(--border-color);
}

.hero-floating-project:hover .hero-float-icon {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Animations keyframes */
@keyframes kenBurnsDezoom {
  from {
    transform: scale(1.18);
  }
  to {
    transform: scale(1);
  }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-section {
  background: var(--background-color);
}

.services-showcase-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-7);
}

.services-showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.services-showcase-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.services-showcase-title {
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.services-showcase-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(0, 0, 0, 0.01);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.01);
  border-color: rgba(249, 115, 22, 0.25);
}

.service-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: scale(1);
  transition: transform 420ms ease;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
}

.service-count {
  font-size: 1rem;
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.service-card p {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.8);
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--white);
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-smooth);
}

.service-card:hover .service-media {
  transform: scale(1.05);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  transform: scale(1.05);
}

.service-card:hover .service-link {
  color: var(--primary-color);
}

.service-card:hover .service-link::after {
  width: 100%;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: var(--space-5);
}

.about-content {
  grid-column: span 6;
}

.about-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--space-3);
  color: var(--secondary-color);
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: var(--space-3);
  color: var(--text-color);
}

.about-image {
  grid-column: span 6;
  position: relative;
}

.about-image-container {
  position: relative;
  margin: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-image);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  display: block;
}

.experience-badge {
  position: absolute;
  left: -48px;
  top: 15%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.25));
  z-index: 5;
}

.experience-spin-svg {
  width: 100%;
  height: 100%;
}

.rotating-text-group {
  transform-origin: 80px 80px;
  animation: spinCircle 22s linear infinite;
}

@keyframes spinCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-checklist {
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */

.stats-section {
  position: relative;
  padding: 0;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-sizing: border-box;
}

.stats-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stats-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 2;
}

.stats-video-play-container {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.stats-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stats-kicker-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}


.stats-video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-video-play-btn svg {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  transition: transform 300ms ease;
}

.stats-video-play-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translate(0, 0) scale(1.08); /* reset translate offset for scale */
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.45);
}

.stats-video-play-btn:hover svg {
  transform: scale(1.1);
}

.stats-container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 48px 80px;
  width: 100%;
  box-sizing: border-box;
}

.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 40px;
  color: var(--white);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease;
  box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.15);
}

.stat-glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-glass-kicker {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stat-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.stat-glass-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  color: var(--white);
  letter-spacing: -0.03em;
  font-family: "Inter Variable", "Inter", sans-serif;
}

/* Orange Ticker Banner */
.stats-orange-ticker {
  background: var(--primary-color);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 4;
  overflow: hidden;
  box-sizing: border-box;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter Variable", "Inter", sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: marqueeText 24s linear infinite;
}

.ticker-content span {
  display: inline-block;
}

.ticker-dot {
  opacity: 0.6;
  font-size: 24px;
}

@keyframes marqueeText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.features-section {
  background: var(--background-color);
  padding: 96px 0;
  position: relative;
  overflow: visible;
}

.features-kicker-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  transition: opacity 300ms ease, transform 300ms ease;
}

.feature-card:hover::before {
  opacity: 0.08;
  transform: scale(1.1) rotate(-10deg);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.feature-card-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0F172A; /* dark navy */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

/* Floating Tool Animation */
@keyframes floatAnimation {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.features-floating-tool {
  position: absolute;
  top: -45px;
  right: 5%;
  width: 120px;
  height: auto;
  z-index: 5;
  animation: floatAnimation 5s ease-in-out infinite;
  pointer-events: none;
}

.features-floating-tool.left-side {
  right: auto;
  left: 5%;
  top: -20px;
  animation: floatAnimationLeft 5.5s ease-in-out infinite;
}

.features-floating-tool img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* removes white background */
}

/* Alternate Left-Side Floating Tool Animation */
@keyframes floatAnimationLeft {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Standardized Section Kicker Badge Style */
.section-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.section-kicker-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Staggered Letter-by-Letter Title Animation */
.animate-title {
  display: block;
}

.animate-title.in-view span {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Enforced Symmetric Spacing between all Homepage Sections */
.services-section,
.about-section,
.features-section,
.portfolio-section,
.testimonials-section,
.faq-section {
  padding: 100px 0 !important;
  position: relative;
  overflow: visible;
}

/* CTA Banner below Features */
.features-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 24px 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  gap: 24px;
  margin-top: 56px;
}

.features-cta-avatars {
  display: flex;
  align-items: center;
}

.features-cta-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.features-cta-avatars img:first-child {
  margin-left: 0;
}

.features-cta-text {
  flex: 1;
  text-align: left;
}

.features-cta-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 24px;
}

.features-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 99px;
  font-weight: 600;
}

/* ==========================================================================
   PORTFOLIO (Nos réalisations)
   ========================================================================== */

.portfolio-section {
  padding: 0;
  background: var(--white);
}

.portfolio-container {
  max-width: 1440px;
  margin: auto;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.portfolio-header {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.portfolio-title {
  font-family: "Inter Variable", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 16px 0;
}

.portfolio-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #6B7280;
  max-width: 720px;
  margin: 0;
}

.portfolio-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 520px;
  width: 100%;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  width: 320px;
  height: 480px;
  transform: scale(0.88);
  opacity: 0.78;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-item.is-featured {
  width: 560px;
  height: 520px;
  transform: scale(1);
  opacity: 1;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.portfolio-card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.portfolio-item-category {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin: 0;
}

.portfolio-details {
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1), max-height 350ms cubic-bezier(0.22, 1, 0.36, 1), margin-top 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
}

.portfolio-item-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--white);
  color: #111827;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  align-self: flex-start;
  transition: background-color 200ms ease;
  font-family: "Inter Variable", "Inter", sans-serif;
  letter-spacing: -0.01em;
}

.portfolio-item-btn:hover {
  background: #F3F4F6;
}

/* Hover logic for the entire grid */
.portfolio-grid:hover .portfolio-item {
  width: 320px;
  height: 480px;
  transform: scale(0.84);
  opacity: 0.70;
}

.portfolio-grid:hover .portfolio-item:hover {
  width: 560px;
  height: 520px;
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  z-index: 10;
}

.portfolio-grid:hover .portfolio-item:hover .portfolio-image {
  transform: scale(1.08);
}

.portfolio-grid:hover .portfolio-item:hover .portfolio-details {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  margin-top: 16px;
}

/* Default featured card expanded details (when grid is not hovered) */
.portfolio-grid:not(:hover) .portfolio-item.is-featured .portfolio-details {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  margin-top: 16px;
}

.portfolio-action {
  text-align: center;
  margin-top: 12px;
}

.portfolio-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Inter Variable", "Inter", sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.portfolio-all-btn:hover {
  background: var(--primary-hover);
  color: var(--white);
  border-color: var(--primary-hover);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   THEY TRUST US (Ils nous ont fait confiance)
   ========================================================================== */

.trust-section {
  background: #F8FAFC;
  padding: 72px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-container {
  max-width: 1440px;
  margin: auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trust-header {
  text-align: center;
}

.trust-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: #111827;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.trust-subtitle {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}

.trust-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.trust-marquee-wrapper::before,
.trust-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 96px;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #F8FAFC, transparent);
}

.trust-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #F8FAFC, transparent);
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  height: 96px;
}

.trust-marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  animation: marquee 28s linear infinite;
}

.trust-marquee-track:hover .trust-marquee-content {
  animation-play-state: paused;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 64px;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.trust-logo-item svg {
  height: auto;
  max-height: 36px;
  width: auto;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-logo-item:hover {
  opacity: 1;
  transform: scale(1.06);
}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for Portfolio & Marquee */
@media (max-width: 1024px) {
  .portfolio-container {
    padding: 64px 32px;
    gap: 48px;
  }
  
  .portfolio-grid {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }
  
  .portfolio-item, 
  .portfolio-grid .portfolio-item,
  .portfolio-grid:hover .portfolio-item {
    width: 100%;
    max-width: 600px;
    height: 400px;
    transform: scale(1);
    opacity: 1;
  }

  .portfolio-item.is-featured,
  .portfolio-grid:hover .portfolio-item:hover {
    width: 100%;
    max-width: 600px;
    height: 420px;
    transform: scale(1);
  }

  .portfolio-details,
  .portfolio-grid:hover .portfolio-item:hover .portfolio-details,
  .portfolio-grid:not(:hover) .portfolio-item.is-featured .portfolio-details {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .portfolio-container {
    padding: 56px 16px;
    gap: 40px;
  }

  .portfolio-title {
    font-size: 36px;
    line-height: 44px;
  }

  .portfolio-item, 
  .portfolio-grid .portfolio-item,
  .portfolio-grid:hover .portfolio-item,
  .portfolio-item.is-featured,
  .portfolio-grid:hover .portfolio-item:hover {
    height: 360px;
    max-width: 100%;
  }

  .portfolio-item-title {
    font-size: 26px;
    line-height: 32px;
  }
  
  .trust-container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .trust-marquee-content {
    gap: 48px;
    padding-right: 48px;
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  background: var(--background-color);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.testimonials-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 44px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(0, 0, 0, 0.01);
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1), transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card p {
  font-size: 1.1rem;
}

.testimonial-card span {
  color: var(--text-color);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
  gap: 10px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  transition: width var(--transition-smooth), background-color var(--transition-smooth);
}

.testimonial-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary-color);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-container {
  max-width: 900px;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.faq-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.faq-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  margin-top: 14px;
  margin-bottom: 0;
}

/* Still Have Questions Card */
.faq-still-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.faq-still-card::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 160px;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='9' y1='3' x2='9' y2='21'%3E%3C/line%3E%3Cline x1='15' y1='3' x2='15' y2='21'%3E%3C/line%3E%3Cline x1='3' y1='9' x2='21' y2='9'%3E%3C/line%3E%3Cline x1='3' y1='15' x2='21' y2='15'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.faq-still-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.faq-still-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 500;
}

.faq-still-btn {
  background: var(--primary-color);
  color: var(--white) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-still-btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease;
}

.faq-still-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
  transform: translateY(-1px);
}

.faq-still-btn:hover .faq-still-btn-arrow {
  transform: rotate(-45deg);
}

/* Accordion Stack */
.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: #F8FAFC;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 24px 32px;
  border: none;
  background: transparent;
  font-family: "Inter Variable", "Inter", sans-serif;
  color: var(--secondary-color);
  cursor: pointer;
  transition: color 300ms ease;
}

.faq-question .question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  padding-right: 16px;
}

/* Toggle Circle & Plus Icon */
.faq-toggle-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease;
}

.faq-toggle-circle::before,
.faq-toggle-circle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 9px;
  transition: transform 300ms ease;
}

/* Horizontal bar */
.faq-toggle-circle::before {
  width: 12px;
  height: 2px;
}

/* Vertical bar */
.faq-toggle-circle::after {
  width: 2px;
  height: 12px;
}

/* Answer block */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.16, 1, 0.3, 1), padding 350ms cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.faq-answer p {
  margin: 0;
  padding: 0 32px 24px 32px;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  color: #4B5563;
  transition: color 300ms ease;
}

/* Active State Styles */
.faq-item.active {
  background: #0F172A;
  border-color: #0F172A;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.faq-item.active .faq-question {
  color: var(--white);
}

.faq-item.active .faq-answer p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-item.active .faq-toggle-circle {
  background: var(--primary-color);
  color: var(--white);
}

/* Plus rotates 45deg and transforms into close 'x' cross! */
.faq-item.active .faq-toggle-circle::before {
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle-circle::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
  min-height: 320px;
  padding-top: 56px;
  padding-bottom: 220px; /* clear space for floating footer cta overlap */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-slide-1.webp");
  background-size: cover;
  background-position: center;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: var(--white);
  padding: 40px 0;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.82);
  padding: 150px 0 48px 0;
  position: relative;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}

/* Floating CTA Banner */
.footer-cta-banner {
  position: absolute;
  top: -230px;
  left: 80px;
  right: 80px;
  height: 160px;
  background: linear-gradient(135deg, #1f1b1a 0%, #171312 100%);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 10;
  display: flex;
  box-sizing: border-box;
}

.footer-cta-img-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  z-index: 1;
}

.footer-cta-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
}

/* Double Diagonal Slash separator */
.footer-cta-slash {
  position: absolute;
  right: 43%;
  top: -10px;
  bottom: -10px;
  width: 12px;
  background: var(--white);
  transform: skewX(-25deg);
  z-index: 4;
}

.footer-cta-slash::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: var(--primary-color);
}

.footer-cta-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.footer-cta-text {
  text-align: left;
}

.footer-cta-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 6px;
}

.footer-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.03em;
}

.footer-appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 56px;
  padding: 0 8px 0 28px;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background-color 200ms ease;
  font-family: "Inter Variable", "Inter", sans-serif;
  text-decoration: none;
}

.footer-appointment-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  color: var(--white);
}

.arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease;
}

.footer-appointment-btn:hover .arrow-circle {
  transform: rotate(-45deg);
}

/* Footer Grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 72px;
  box-sizing: border-box;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  font-family: "Inter Variable", "Inter", sans-serif;
}

.footer-about-text {
  font-size: 14.5px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-links-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-list li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.footer-links-list a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--primary-color);
}

.footer-contact-block {
  text-align: left;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-icon-pin, 
.footer-icon-phone {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-contact-item p a:hover {
  color: var(--primary-color);
}

/* Bottom bar (translucent card) */
.footer-bottom-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.footer-logo-socials {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-family: "Inter Variable", "Inter", sans-serif;
}

.footer-logo-icon {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.footer-social-circles {
  display: flex;
  gap: 10px;
  margin-left: 32px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.social-circle:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-subscription {
  display: flex;
  align-items: center;
  gap: 24px;
}

.subscription-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  font-family: "Inter Variable", "Inter", sans-serif;
}

.subscription-form {
  position: relative;
  width: 320px;
  display: flex;
  align-items: center;
}

.subscription-form input {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 60px 0 20px;
  color: var(--white);
  font-size: 14px;
  font-family: "Inter Variable", "Inter", sans-serif;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.subscription-form input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.subscription-form button {
  position: absolute;
  right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease;
}

.subscription-form button:hover {
  background-color: var(--primary-hover);
  transform: scale(1.04);
}

/* ==========================================================================
   PAGE / SINGLE COMMON
   ========================================================================== */

.site-main .container {
  position: relative;
}

.page-article {
  padding-top: 130px;
  padding-bottom: 80px;
}

.single-post-main {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #fafafa;
}

.single-post-article {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.single-post-header {
  margin-bottom: 32px;
}

.single-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.single-category-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.single-post-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: "Outfit", sans-serif;
  margin: 0 0 16px 0;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.meta-separator {
  color: #d1d5db;
}

.single-post-featured-image {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  margin-bottom: 40px;
}

.single-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-content {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
}

.single-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 16px 0;
  color: #111827;
  font-family: "Outfit", sans-serif;
}

.single-post-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px 0;
  color: #111827;
  font-family: "Outfit", sans-serif;
}

.single-post-content p {
  margin-bottom: 20px;
}

.single-post-content ul,
.single-post-content ol {
  margin: 0 0 24px 20px;
  padding-left: 10px;
}

.single-post-content li {
  margin-bottom: 8px;
}

.single-post-footer {
  padding-top: 24px;
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-tag-badge {
  font-size: 11px;
  color: #4b5563;
  background: #f3f4f6;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.single-tag-badge:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Related Posts */
.single-post-related {
  max-width: 760px;
  margin: 48px auto 0 auto;
  padding-top: 40px;
  border-top: 1px solid #eaeaea;
}

.related-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
  font-family: "Outfit", sans-serif;
}

.related-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.related-card-img {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #eaeaea;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.related-card-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card-content h4 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card-content h4 a:hover {
  color: var(--primary-color);
}

.related-card-date {
  font-size: 11px;
  color: #9ca3af;
}

.page-thumbnail-wrapper img,
.post-thumbnail-wrapper img {
  border-radius: var(--radius-image);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Search Results Page Styles */
.search-page-main {
  padding-top: 130px;
  padding-bottom: 96px;
  background-color: #fafafa;
}

.search-page-container {
  max-width: 860px;
  margin: 0 auto;
}

.search-page-header {
  margin-bottom: 48px;
}

.search-kicker {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.search-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: "Outfit", sans-serif;
  margin: 0;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.search-card-img {
  width: 140px;
  height: 105px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #eaeaea;
}

.search-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.search-card-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.search-card-type {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-meta-sep {
  color: #d1d5db;
}

.search-card-date {
  color: #9ca3af;
}

.search-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px 0;
  font-family: "Outfit", sans-serif;
}

.search-card-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-card-title a:hover {
  color: var(--primary-color);
}

.search-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.search-empty-state {
  text-align: center;
  padding: 80px 0;
}
  border: 1px solid var(--border-color);
  margin-bottom: 28px;
}

/* ==========================================================================
   SERVICE PAGES
   ========================================================================== */

.service-page-main {
  padding-top: 90px;
}

.service-page-hero {
  padding-top: 80px;
  padding-bottom: 52px;
  background: var(--background-color);
}

.service-page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-page-kicker {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 13px;
  margin-bottom: 16px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(0, 0, 0, 0.01);
  padding: 32px;
}

.service-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-page-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-page-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-process-step {
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--white);
  padding: 22px;
}

.service-step-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--white);
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}

.service-page-cta-box {
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: var(--white);
  text-align: center;
  padding: 48px;
}

.service-page-cta-box h2,
.service-page-cta-box p {
  color: var(--white);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes floatY {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   SINGLE SERVICE PAGES
   ========================================================================== */

.service-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 72px;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.service-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.service-hero-breadcrumbs {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
  font-family: "Inter Variable", "Inter", sans-serif;
}

.service-hero-breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: color 200ms ease;
}

.service-hero-breadcrumbs a:hover {
  color: var(--primary-color);
}

.service-hero-breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5;
}

.service-layout-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  margin-bottom: 96px;
}

/* Sidebar Widgets */
.service-menu-widget {
  background: #F9FAFC;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}

.service-menu-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 250ms ease;
}

.service-menu-item.is-active a {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.service-menu-item a svg {
  transition: transform 250ms ease;
  color: var(--primary-color);
}

.service-menu-item.is-active a svg {
  stroke: var(--white);
  color: var(--white);
}

.service-menu-item a:hover {
  border-color: var(--primary-color);
  background: rgba(249, 115, 22, 0.02);
}

.service-menu-item.is-active a:hover {
  background: var(--primary-color);
}

.service-menu-item a:hover svg {
  transform: translateX(4px);
}

/* Help Widget */
.service-help-widget {
  background: #0F172A;
  color: var(--white);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-help-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-help-widget p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 20px;
}

.service-help-phone {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.service-help-email {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  word-break: break-all;
}

/* Form Widget */
.service-form-widget {
  background: #F9FAFC;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
}

.service-form-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.service-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-form-control {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--white);
  padding: 0 16px;
  font-family: inherit;
  font-size: 13px;
  color: var(--secondary-color);
  transition: border-color 200ms ease;
  box-sizing: border-box;
}

.service-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.service-form-control {
  height: 90px;
  padding: 12px 16px;
  resize: none;
}

.service-form-submit {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 200ms ease;
}

.service-form-submit:hover {
  background: #EA580C;
}

/* Content Area */
.service-content-banner {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.service-content-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-main-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.service-main-text p {
  font-size: 15px;
  line-height: 26px;
  color: #4B5563;
  margin-bottom: 24px;
}

.service-content-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.service-gallery-item {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,0.03);
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-gallery-item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   Projects & Realisations Custom Post Type Styles
   ========================================================================== */

.projects-archive-container {
  padding-top: 80px;
  padding-bottom: 96px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.project-card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
  color: var(--white);
  transform: translateY(15px);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
}

.project-card-category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.project-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 28px;
}

.project-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 13px;
  border-radius: 99px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-btn svg {
  transition: transform 250ms ease;
  color: var(--primary-color);
}

/* Hover States */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .project-card-content {
  transform: translateY(0);
}

.project-card:hover .project-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.project-card-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.project-card-btn:hover svg {
  transform: translateX(4px);
  color: var(--white);
}

/* Project Detail Page Styles */
.project-detail-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  margin-top: 80px;
  margin-bottom: 48px;
}

.project-detail-main-img {
  width: 100%;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.project-detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details-card {
  background: #F9FAFC;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.project-detail-item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 16px;
}

.project-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-detail-label {
  font-size: 11px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.project-detail-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}

.project-detail-value a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 200ms ease;
}

.project-detail-value a:hover {
  color: var(--primary-hover);
}

.project-detail-description {
  margin-bottom: 56px;
}

.project-detail-description h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.project-detail-description p {
  font-size: 15px;
  line-height: 26px;
  color: #4B5563;
  margin-bottom: 24px;
}

/* Facts & Checklist Section */
.project-facts-section {
  background: #F9FAFC;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border-color);
  margin-bottom: 96px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.project-facts-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.project-facts-desc {
  font-size: 15px;
  line-height: 26px;
  color: #4B5563;
  margin-bottom: 32px;
}

.project-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.project-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}

.project-checklist-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ==========================================================================
   Blog & News Page Styles
   ========================================================================== */



.blog-grid-container {
  padding-top: 40px;
  padding-bottom: 96px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: inline-block;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-family: "Outfit", sans-serif;
  transition: color 200ms ease;
}

.blog-card-title a {
  color: #111827;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 16px 0;
}

.blog-card-date {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: auto;
}

/* Asymmetrical Grid Placements for Calm layout */
.blog-card-1 {
  grid-column: span 4;
  grid-row: span 2;
}

.blog-card-1 .blog-card-img-wrapper {
  height: 340px;
}

.blog-card-1 .blog-card-title {
  font-size: 26px;
  line-height: 1.3;
}

.blog-card-2, .blog-card-3 {
  grid-column: span 2;
}

.blog-card-2 .blog-card-img-wrapper,
.blog-card-3 .blog-card-img-wrapper {
  height: 140px;
}

.blog-card-4, .blog-card-5 {
  grid-column: span 3;
}

.blog-card-4 .blog-card-img-wrapper,
.blog-card-5 .blog-card-img-wrapper {
  height: 220px;
}

.blog-card-6, .blog-card-7, .blog-card-8, .blog-card-9, .blog-card-10 {
  grid-column: span 2;
}

.blog-card-6 .blog-card-img-wrapper,
.blog-card-7 .blog-card-img-wrapper,
.blog-card-8 .blog-card-img-wrapper,
.blog-card-9 .blog-card-img-wrapper,
.blog-card-10 .blog-card-img-wrapper {
  height: 160px;
}

/* Header style for the Blog page (Calm style) */
.blog-welcome-banner {
  text-align: left;
  max-width: 860px;
  margin: 0 auto 48px auto;
  padding: 0;
}

.blog-welcome-kicker {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.blog-welcome-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: "Outfit", sans-serif;
  margin: 0;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page-container {
  padding-top: 80px;
  padding-bottom: 96px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
}

.contact-page-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 16px 0 20px 0;
  line-height: 48px;
}

.contact-page-desc {
  font-size: 15px;
  line-height: 26px;
  color: #6B7280;
  margin-bottom: 36px;
}

.contact-info-card-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.contact-info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
}

.contact-info-overlay-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-info-overlay-item a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-info-overlay-item a:hover {
  color: var(--primary-color);
}

.contact-info-overlay-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-page-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact-page-form-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
}

.contact-form-control {
  width: 100%;
  height: 48px;
  background: #F9FAFC;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--secondary-color);
  transition: all 250ms ease;
  box-sizing: border-box;
}

textarea.contact-form-control {
  height: 120px;
  padding: 16px;
  resize: vertical;
}

.contact-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.contact-form-submit {
  width: 100%;
  height: 48px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 250ms ease;
}

.contact-form-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

/* ==========================================================================
   Comments Area Styles & Spacing Fix
   ========================================================================== */

.comments-area {
  margin-top: 64px;
  margin-bottom: 160px !important; /* Essential spacing to prevent footer CTA banner overlap */
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.comments-title,
.comment-reply-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.logged-in-as {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.logged-in-as a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  height: 48px;
  background: #F9FAFC;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--secondary-color);
  transition: all 250ms ease;
  box-sizing: border-box;
}

.comment-form textarea {
  height: 120px;
  padding: 16px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.comment-form .submit {
  width: auto;
  align-self: flex-start;
  height: 48px;
  padding: 0 32px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 250ms ease;
}

.comment-form .submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-body {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.comment-meta img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.comment-author cite {
  font-style: normal;
  font-weight: 700;
  color: var(--secondary-color);
}

.comment-metadata {
  font-size: 12px;
  color: #9CA3AF;
}

.comment-metadata a {
  color: inherit;
  text-decoration: none;
}

.comment-content {
  font-size: 14.5px;
  line-height: 24px;
  color: #4B5563;
}

.reply {
  margin-top: 12px;
}

.reply a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

/* ==========================================================================
   Mission Timeline Styles
   ========================================================================== */

.mission-timeline-section {
  padding-top: 80px;
  padding-bottom: 20px;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}

.mission-timeline-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-timeline-header {
  text-align: center;
  margin-bottom: 72px;
}

.mission-timeline {
  position: relative;
  height: 180px;
  width: 100%;
  box-sizing: border-box;
}

.mission-svg-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.zigzag-line-bg {
  stroke: #E5E7EB;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zigzag-line-flow {
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 10;
  animation: zigzagFlow 2s linear infinite;
}

@keyframes zigzagFlow {
  from {
    stroke-dashoffset: 36;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.mission-step {
  position: absolute;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.mission-step.step-1 { left: 10%; top: 40px; }
.mission-step.step-2 { left: 30%; top: 140px; }
.mission-step.step-3 { left: 50%; top: 40px; }
.mission-step.step-4 { left: 70%; top: 140px; }
.mission-step.step-5 { left: 90%; top: 40px; }

.mission-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}

.mission-step:hover .mission-circle {
  transform: scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15);
}

.mission-label {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 140px;
}

/* --- Timeline Icon Idle Micro-Animations --- */

.icon-gears {
  animation: spinGears 12s linear infinite;
  transform-origin: center;
}

.icon-box {
  animation: floatBox 3s ease-in-out infinite;
}

.icon-hammer {
  animation: idleHammer 4s ease-in-out infinite;
  transform-origin: bottom left;
}

.icon-chat-bubble {
  animation: idlePulse 3s ease-in-out infinite;
}

.icon-clipboard {
  animation: idleWiggle 5s ease-in-out infinite;
}

/* Keyframes */
@keyframes spinGears {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes idleHammer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}

@keyframes idlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes idleWiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  93% { transform: rotate(-5deg); }
  96% { transform: rotate(5deg); }
}

/* --- Timeline Icon Hover Active Animations --- */

.mission-step:hover .icon-gears {
  animation-duration: 3s; /* Spins faster on hover! */
}

.mission-step:hover .icon-box {
  animation: hoverBoxHop 0.6s ease-in-out;
}

.mission-step:hover .icon-hammer {
  animation: hoverHammerTap 0.5s ease-in-out infinite alternate;
  transform-origin: 30% 80%;
}

.mission-step:hover .icon-chat-bubble {
  animation: hoverBubbleShake 0.5s ease-in-out;
}

.mission-step:hover .icon-clipboard {
  animation: hoverClipboardPulse 0.4s ease-in-out;
}

/* Hover Keyframes */
@keyframes hoverBoxHop {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-8px) scaleY(1.1); }
  50% { transform: translateY(-8px) scale(1.05); }
  70% { transform: translateY(2px) scaleY(0.9); }
}

@keyframes hoverHammerTap {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-35deg); }
}

@keyframes hoverBubbleShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px) rotate(-3deg); }
  40%, 80% { transform: translateX(3px) rotate(3deg); }
}

@keyframes hoverClipboardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) translateY(-2px); }
}

/* ==========================================================================
   Secteurs & Ateliers Layout (Builder Style)
   ========================================================================== */

.secteurs-section {
  background: var(--white);
  padding: 100px 0 !important;
  position: relative;
  overflow: visible;
  border-top: 1px solid var(--border-color);
}

.secteurs-section-wrapper {
  width: 100%;
}

.sectors-layout-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.sectors-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

.sectors-side-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sectors-side-col.left-side {
  text-align: right;
}

.sectors-side-col.right-side {
  text-align: left;
}

.sector-card-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sectors-side-col.left-side .sector-card-item {
  justify-content: flex-end;
}

.sectors-side-col.right-side .sector-card-item {
  justify-content: flex-start;
}

.sector-card-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card-item:hover .sector-card-icon-circle {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
  transform: scale(1.08);
}

.sector-card-text {
  max-width: 320px;
}

.sector-card-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.sector-tags-list {
  width: 100%;
}

.secteurs-list-detail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.sectors-side-col.left-side .secteurs-list-detail {
  justify-content: flex-end;
}

.sectors-side-col.right-side .secteurs-list-detail {
  justify-content: flex-start;
}

.secteurs-list-detail li {
  font-size: 12.5px;
  font-weight: 600;
  color: #4B5563;
  line-height: 1.4;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 99px;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  white-space: nowrap;
}

.secteurs-list-detail li:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(249, 115, 22, 0.03);
  transform: translateY(-1px);
}

.workshop-item-sub {
  font-weight: 700 !important;
  color: #111827 !important;
  border-color: rgba(249, 115, 22, 0.3) !important;
  background: rgba(249, 115, 22, 0.02) !important;
}

.workshop-item-sub:hover {
  background: rgba(249, 115, 22, 0.08) !important;
}

.workshop-item-sub .plus-sign {
  color: var(--primary-color);
  font-weight: 900;
}

/* Center Column (Builder Image) */
.sectors-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sectors-image-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
}

.sectors-center-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--white);
  transition: opacity 300ms ease-in-out, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sectors-center-image.image-closed {
  opacity: 1;
}

.sectors-center-image.image-open {
  opacity: 0;
}

/* Switch engineer poses on grid/image hover! */
.sectors-layout-grid:hover .sectors-center-image.image-closed,
.sectors-image-wrapper:hover .sectors-center-image.image-closed {
  opacity: 0;
}

.sectors-layout-grid:hover .sectors-center-image.image-open,
.sectors-image-wrapper:hover .sectors-center-image.image-open {
  opacity: 1;
}

.sectors-curved-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  color: #CBD5E1;
}

/* --- Sectors Card Icon Animations --- */

/* 1. Building Bounce */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sector-card-item:hover .icon-building {
  animation: iconBounce 0.8s ease-in-out infinite;
}

/* 2. Shopping Bag Swing */
@keyframes iconSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
.sector-card-item:hover .icon-shopping-bag {
  animation: iconSwing 0.8s ease-in-out infinite;
  transform-origin: top center;
}

/* 3. Shield Pulse */
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.sector-card-item:hover .icon-shield {
  animation: iconPulse 0.8s ease-in-out infinite;
}

/* 4. Truck Drive */
@keyframes iconDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
.sector-card-item:hover .icon-truck {
  animation: iconDrive 0.8s ease-in-out infinite;
}

/* Bottom Banner */
.sectors-bottom-banner {
  max-width: 640px;
  margin: 24px auto 0 auto;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
}

.sectors-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sectors-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #4B5563;
}

.sectors-banner-link {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
  transition: color 200ms ease;
}

.sectors-banner-link:hover {
  color: var(--primary-hover);
}

/* ==========================================================================
   Services Page Custom Layout & Styling
   ========================================================================== */

.services-page-main {
  background: #F8FAFC;
}

.services-hero-banner {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.85) 100%);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.services-banner-content {
  position: relative;
  z-index: 2;
}

.services-banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.services-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.services-breadcrumbs a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 200ms ease;
}

.services-breadcrumbs a:hover {
  color: var(--white);
}

.services-breadcrumbs .breadcrumb-separator {
  color: #475569;
}

.services-breadcrumbs .breadcrumb-current {
  color: var(--primary-color);
}

/* Services Grid Page Section */
.services-grid-page-section {
  padding: 80px 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-page-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-page-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-page-card-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 320ms ease, transform 420ms ease;
  z-index: 1;
}

.service-page-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.service-page-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-card-icon,
.service-page-card h3,
.service-page-card p,
.service-page-card-btn {
  position: relative;
  z-index: 2;
}

.service-page-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0F172A;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease;
}

.service-page-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  color: #0F172A;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 300ms ease;
}

.service-page-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 500;
  flex-grow: 1;
  transition: color 300ms ease;
}

/* Custom Pill Button resembling your image reference */
.service-page-card-btn {
  background: #F1F5F9;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background-color 300ms ease;
  margin-top: auto;
}

.service-page-card-btn .btn-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.01em;
  transition: color 300ms ease;
}

.service-page-card-btn .btn-circle-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease;
}

/* Hover effects */
.service-page-card-link:hover .service-page-card {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.06);
}

.service-page-card-link:hover .service-page-card-media {
  opacity: 1;
  transform: scale(1);
}

.service-page-card-link:hover .service-page-card h3,
.service-page-card-link:hover .service-page-card p,
.service-page-card-link:hover .service-page-card-btn .btn-text {
  color: var(--white) !important;
}

.service-page-card-link:hover .service-page-card-icon {
  transform: scale(1.08) rotate(3deg);
  background: var(--primary-color);
}

.service-page-card-link:hover .service-page-card-btn {
  background: rgba(255, 255, 255, 0.15);
}

.service-page-card-link:hover .service-page-card-btn .btn-circle-arrow {
  background: var(--primary-hover);
  /* Rotates 45deg to point top-right ↗ just like your image */
  transform: rotate(-45deg);
}

/* ==========================================================================
   Secteurs Section 4-Column Layout (PDF Style)
   ========================================================================== */

.sectors-pdf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.sector-pdf-col {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.sector-pdf-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
}

.sector-pdf-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid #F1F5F9;
  padding-bottom: 16px;
}

.sector-pdf-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-pdf-card-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0;
  letter-spacing: -0.02em;
}

.sector-pdf-card-body {
  flex-grow: 1;
}

.sector-pdf-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sector-pdf-bullet-list > li {
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.sector-pdf-bullet-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

.sector-pdf-sub-list {
  list-style: none;
  padding: 6px 0 0 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sector-pdf-sub-list li {
  font-size: 12.5px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1.4;
}

/* ==========================================================================
   Expertises Section & Cards Styles (Mockup Team style)
   ========================================================================== */

.expertises-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #FAF9F6; /* Premium light sand background */
  position: relative;
  overflow: hidden;
}

.expertises-header-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 64px;
}

.expertises-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.expertises-kicker-badge .kicker-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.expertises-header-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.expertise-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white);
}

.expertise-card-inner {
  position: relative;
  width: 100%;
  padding-top: 145%; /* Symmetrical vertical portrait shape */
  cursor: pointer;
  overflow: hidden;
}

.expertise-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.expertise-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-card-inner:hover .expertise-card-image img {
  transform: scale(1.08);
}

.expertise-card-overlay-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(15, 23, 42, 0) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 300ms ease;
}

.expertise-card-inner:hover .expertise-card-overlay-box {
  background: linear-gradient(to top, rgba(249, 115, 22, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0) 100%);
}

.expertise-card-text {
  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-card-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.expertise-card-text p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.expertise-card-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
  opacity: 0;
  transform: scale(0.8);
}

.expertise-card-inner:hover .expertise-card-btn {
  opacity: 1;
  transform: scale(1);
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expertises-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 12px 28px 12px 18px;
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-color);
}

.expertises-footer-cta .cta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #F1F5F9;
}

.expertises-footer-cta .cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertises-footer-cta p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #4B5563;
}

.expertises-footer-link {
  color: var(--primary-color);
  font-weight: 700;
  margin-left: 8px;
  text-decoration: none;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  transition: all 200ms ease;
}

.expertises-footer-link:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
}


/* ==========================================================================
   Expertises Popups & Modals
   ========================================================================== */

.expertise-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.expertise-modal-container {
  background: var(--white);
  width: 100%;
  max-width: 980px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-modal-overlay.is-active .expertise-modal-container {
  transform: translateY(0) scale(1);
}

.expertise-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 200ms ease;
}

.expertise-modal-close:hover {
  background: #E2E8F0;
  color: var(--secondary-color);
}

.expertise-modal-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 520px;
}

.modal-left-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.08);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  width: fit-content;
  text-transform: uppercase;
}

.modal-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.modal-title-bold {
  font-size: 32px;
  font-weight: 850;
  color: var(--secondary-color);
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.modal-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 32px;
}

.modal-lists-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.modal-list-col.full-width {
  grid-column: span 2;
}

.modal-list-col h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.modal-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-bullet-list.grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.modal-bullet-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.modal-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

.modal-right-col-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-right-col-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Modern Contact Map Style
   ========================================================================== */

.contact-map-section {
  width: 100%;
  margin-top: 64px;
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-color);
  background: var(--white);
  padding: 8px; /* Frame style */
  box-sizing: border-box;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  display: block;
  filter: grayscale(0.5) contrast(1.05);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-map-wrapper:hover iframe {
  filter: grayscale(0) contrast(1);
}

.map-floating-card {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  width: 290px;
  z-index: 5;
  box-sizing: border-box;
}

.map-card-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  margin-bottom: 16px;
}

.map-floating-card h4 {
  margin: 0 0 8px 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.01em;
}

.map-card-address {
  margin: 0 0 20px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #4B5563;
  font-weight: 500;
}

.map-card-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 250ms ease;
}

.map-card-directions svg {
  transition: transform 250ms ease;
}

.map-card-directions:hover {
  color: var(--primary-hover);
}

.map-card-directions:hover svg {
  transform: translateX(4px);
}

/* Footer Mini Map Style */
.footer-mini-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.footer-mini-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.5) contrast(1.05);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Footer Mini Map Hover Actions */
.footer-mini-map-wrapper:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

.footer-mini-map-wrapper:hover iframe {
  filter: grayscale(0) contrast(1);
}

/* Hover style for text-based address link */
.footer-contact-item {
  transition: all 250ms ease;
}

.footer-contact-item:hover {
  opacity: 0.95;
}

.footer-contact-item:hover .footer-icon-pin {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: scale(1.05);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background-color: #1f2937;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1f2937;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* Screen Reader Text for SEO */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
