/* ============================================================
   ALNAFAY SHIPPING SERVICES — Corporate Stylesheet
   ============================================================
   1. Variables
   2. Global
   3. Typography
   4. Navbar
   5. Hero
   6. Buttons
   7. Sections
   8. Services
   9. About
   10. CTA
   11. Contact
   12. Footer
   13. Animations
   14. Responsive
   ============================================================ */

/* ------------------------------------------------------------
   1. Variables
   ------------------------------------------------------------ */
:root {
  --primary-blue: #003084;
  --primary-blue-light: #0048b4;
  --dark-blue: #001848;
  --navy: #000c30;
  --accent-orange: #fc7800;
  --accent-orange-dark: #e06800;
  --accent-orange-soft: rgba(252, 120, 0, 0.12);
  --sky-blue: #0054c0;
  --light-bg: #f4f7fb;
  --light-blue-bg: #eef3f9;
  --text-dark: #121a2b;
  --text-muted: #5b6b7c;
  --text-light: #8a97a8;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 24, 72, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 24, 72, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 24, 72, 0.12);
  --shadow-hover: 0 20px 40px rgba(0, 48, 132, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --font-primary: "Manrope", system-ui, -apple-system, sans-serif;
  --container-max: 1200px;
  --navbar-h: 112px;
  --navbar-h-scrolled: 92px;
}

/* ------------------------------------------------------------
   2. Global
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--accent-orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h-scrolled);
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-orange);
}

ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

section {
  position: relative;
}

.container-alnafay {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.bg-light-section {
  background: var(--light-bg);
}

.bg-navy {
  background: var(--dark-blue);
  color: var(--white);
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.divider-orange {
  width: 56px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider-orange.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.overlay-navy {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 12, 48, 0.88) 0%,
    rgba(0, 48, 132, 0.72) 55%,
    rgba(0, 24, 72, 0.85) 100%
  );
}

.text-orange {
  color: var(--accent-orange) !important;
}

.text-navy {
  color: var(--dark-blue) !important;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
  box-shadow: none;
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.display-hero {
  font-size: clamp(2.15rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 1.075rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 0;
}

.section-lead.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-header {
  position: relative;
  padding: calc(var(--navbar-h) + 72px) 0 88px;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 8, 28, 0.72) 0%,
    rgba(0, 24, 72, 0.64) 48%,
    rgba(0, 40, 110, 0.58) 100%
  );
  pointer-events: none;
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.page-header p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a:hover {
  color: var(--accent-orange);
}

.breadcrumb-nav .sep {
  opacity: 0.5;
}

/* ------------------------------------------------------------
   4. Navbar
   ------------------------------------------------------------ */
.navbar-alnafay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: var(--navbar-h);
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 24, 72, 0.06);
  box-shadow: 0 2px 16px rgba(0, 24, 72, 0.04);
  transition: background var(--transition), height var(--transition),
    box-shadow var(--transition), border-color var(--transition);
}

.navbar-alnafay .container-alnafay,
.navbar-alnafay .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.navbar-alnafay.scrolled,
.navbar-alnafay.solid {
  height: var(--navbar-h-scrolled);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 24, 72, 0.08);
  box-shadow: 0 6px 24px rgba(0, 24, 72, 0.08);
}

.navbar-brand-alnafay {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand-alnafay img {
  height: 96px;
  width: auto;
  border-radius: 12px;
  transition: height var(--transition);
}

.navbar-alnafay.scrolled .navbar-brand-alnafay img,
.navbar-alnafay.solid .navbar-brand-alnafay img {
  height: 80px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop .nav-link {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-desktop .nav-link:hover {
  color: var(--primary-blue);
  background: rgba(0, 48, 132, 0.06);
}

.nav-desktop .nav-link.active {
  color: var(--accent-orange);
  background: transparent;
}

.navbar-toggler-alnafay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--light-bg);
  color: var(--dark-blue);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}

.navbar-toggler-alnafay:hover {
  background: var(--accent-orange-soft);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.navbar-toggler-alnafay:active {
  transform: scale(0.96);
}

.hamburger {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease, top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 6px; }
.hamburger span:nth-child(3) { top: 12px; }

.navbar-toggler-alnafay.is-open .hamburger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.navbar-toggler-alnafay.is-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(6px);
}

.navbar-toggler-alnafay.is-open .hamburger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Offcanvas mobile drawer */
.offcanvas-backdrop {
  background-color: rgba(0, 12, 48, 0.55) !important;
  backdrop-filter: blur(4px);
  transition: opacity 0.4s ease !important;
}

.offcanvas-alnafay {
  background: var(--white);
  color: var(--text-dark);
  width: min(340px, 90vw) !important;
  border-left: none !important;
  box-shadow: -12px 0 40px rgba(0, 24, 72, 0.18);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.offcanvas-alnafay.offcanvas-end {
  border-left: 1px solid var(--border) !important;
}

.offcanvas-alnafay .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 1.35rem;
  align-items: center;
}

.offcanvas-alnafay .btn-close {
  filter: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.offcanvas-alnafay .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.offcanvas-alnafay .offcanvas-body {
  padding: 1.25rem 1.35rem 2rem;
  display: flex;
  flex-direction: column;
}

.offcanvas-alnafay .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.offcanvas-alnafay .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 0.85rem;
  border-radius: 10px;
  border-bottom: none;
  opacity: 0;
  transform: translateX(18px);
  transition: color 0.25s ease, background 0.25s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.offcanvas-alnafay.show .nav-link {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas-alnafay.show .nav-link:nth-child(1) { transition-delay: 0.08s; }
.offcanvas-alnafay.show .nav-link:nth-child(2) { transition-delay: 0.12s; }
.offcanvas-alnafay.show .nav-link:nth-child(3) { transition-delay: 0.16s; }
.offcanvas-alnafay.show .nav-link:nth-child(4) { transition-delay: 0.2s; }
.offcanvas-alnafay.show .nav-link:nth-child(5) { transition-delay: 0.24s; }

.offcanvas-alnafay .nav-link i {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.offcanvas-alnafay .nav-link:hover,
.offcanvas-alnafay .nav-link.active {
  color: var(--accent-orange);
  background: var(--accent-orange-soft);
}

.offcanvas-alnafay .nav-link:hover i,
.offcanvas-alnafay .nav-link.active i {
  color: var(--accent-orange);
  transform: translateX(3px);
}

.offcanvas-alnafay .offcanvas-logo {
  height: 64px;
  width: auto;
  border-radius: 10px;
  background: var(--white);
}

.offcanvas-alnafay .drawer-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.28s, transform 0.4s ease 0.28s;
}

.offcanvas-alnafay.show .drawer-cta {
  opacity: 1;
  transform: translateY(0);
}

.offcanvas-alnafay .drawer-meta {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.offcanvas-alnafay .drawer-meta a {
  color: var(--primary-blue);
  font-weight: 600;
}

.offcanvas-alnafay .drawer-meta a:hover {
  color: var(--accent-orange);
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas-alnafay,
  .offcanvas-backdrop,
  .offcanvas-alnafay .nav-link,
  .offcanvas-alnafay .drawer-cta,
  .hamburger span {
    transition: none !important;
  }

  .offcanvas-alnafay .nav-link,
  .offcanvas-alnafay .drawer-cta {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------
   5. Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-h) + 40px) 0 80px;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 28s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(0, 8, 32, 0.78) 0%,
      rgba(0, 24, 72, 0.66) 42%,
      rgba(0, 48, 132, 0.42) 100%
    );
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero-shape-1 {
  width: 380px;
  height: 380px;
  background: var(--primary-blue);
  top: -80px;
  right: 10%;
  animation: floatSoft 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 280px;
  height: 280px;
  background: var(--accent-orange);
  bottom: 5%;
  left: -60px;
  opacity: 0.18;
  animation: floatSoft 14s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-logo-mark {
  width: 96px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1.25rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent-orange);
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  max-width: 540px;
  margin: 1.25rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounceSoft 2.4s infinite;
}

.hero-scroll i {
  font-size: 1.1rem;
}

/* ------------------------------------------------------------
   6. Buttons
   ------------------------------------------------------------ */
.btn-alnafay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary-alnafay {
  background: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
  box-shadow: 0 6px 20px rgba(252, 120, 0, 0.3);
}

.btn-primary-alnafay:hover {
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 120, 0, 0.4);
}

.btn-secondary-alnafay {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary-alnafay:hover {
  background: var(--white);
  color: var(--dark-blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--dark-blue);
  border-color: var(--primary-blue);
}

.btn-outline-navy:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-navy:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm-alnafay {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.btn-nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* ------------------------------------------------------------
   7. Sections — Trust, Intro, Stats, Why
   ------------------------------------------------------------ */
.trust-bar {
  background: var(--white);
  margin-top: -48px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
}

.trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-orange-soft);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--dark-blue);
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-preview-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-preview-img:hover img {
  transform: scale(1.04);
}

.about-preview-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(0, 24, 72, 0.92);
  color: var(--white);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-orange);
}

.about-preview-badge strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about-preview-badge span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.check-list li i {
  color: var(--accent-orange);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(252, 120, 0, 0.08);
  top: -120px;
  right: -80px;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-value {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Why cards */
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin: 0;
}

/* Visual band */
.visual-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.visual-band-bg {
  position: absolute;
  inset: 0;
}

.visual-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-band-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
}

.visual-band-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
}

.visual-band-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* ------------------------------------------------------------
   8. Services
   ------------------------------------------------------------ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-orange-soft);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.35rem;
  transition: background var(--transition), color var(--transition);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
}

.service-card .learn-more i {
  transition: transform var(--transition-fast);
}

.service-card:hover .learn-more {
  color: var(--accent-orange);
}

.service-card:hover .learn-more i {
  transform: translateX(4px);
}

/* Service detail blocks (services page) */
.service-block {
  padding: 80px 0;
}

.service-block:nth-child(even) {
  background: var(--light-bg);
}

.service-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 340px;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block:hover .service-block-img img {
  transform: scale(1.03);
}

.service-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-orange-soft);
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 1.75rem;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

.benefit-pill i {
  color: var(--accent-orange);
  font-size: 0.85rem;
}

/* ------------------------------------------------------------
   9. About
   ------------------------------------------------------------ */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mission-card i {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: block;
}

.mission-card h3 {
  font-size: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  border-color: rgba(0, 48, 132, 0.2);
  box-shadow: var(--shadow-sm);
}

.value-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--dark-blue);
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Approach / Process timeline */
.approach-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2.5rem;
}

.approach-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-orange)
  );
  z-index: 0;
}

.approach-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.approach-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.approach-step:hover .approach-num,
.approach-step.in-view .approach-num {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: scale(1.06);
}

.approach-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.approach-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  padding: 0 0.25rem;
}

/* How it works numbered */
.how-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.how-step:last-child {
  border-bottom: none;
}

.how-num {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  min-width: 52px;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.how-step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.location-card {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.location-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.location-card .loc-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.location-card .loc-row i {
  color: var(--accent-orange);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.location-card .loc-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.location-card .loc-row strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.reg-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ------------------------------------------------------------
   9b. Testimonials & FAQ
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--accent-orange);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.industry-chip:hover {
  border-color: rgba(0, 48, 132, 0.25);
  box-shadow: var(--shadow-sm);
}

.industry-chip i {
  color: var(--accent-orange);
  font-size: 1.35rem;
}

.industry-chip span {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.faq-alnafay .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-alnafay .accordion-button {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark-blue);
  background: var(--white);
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}

.faq-alnafay .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: var(--light-blue-bg);
  box-shadow: none;
}

.faq-alnafay .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-alnafay .accordion-button::after {
  background-size: 1rem;
}

.faq-alnafay .accordion-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0 1.25rem 1.25rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   10. CTA
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--primary-blue) 60%, var(--sky-blue) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(252, 120, 0, 0.15);
  bottom: -100px;
  right: -60px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-alnafay {
  position: relative;
  z-index: 1;
}

.cta-section {
  padding: 0 0 100px;
}

/* ------------------------------------------------------------
   11. Contact
   ------------------------------------------------------------ */
.contact-info-card {
  background: var(--dark-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h2 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(252, 120, 0, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

.contact-detail a:hover {
  color: var(--accent-orange);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 100%;
}

.contact-form-wrap h2 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.contact-form-wrap .form-intro {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.form-label-alnafay {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}

.form-control-alnafay,
.form-select-alnafay {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-control-alnafay:focus,
.form-select-alnafay:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 48, 132, 0.12);
  outline: none;
}

.form-control-alnafay.is-invalid,
.form-select-alnafay.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback-alnafay {
  display: none;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.is-invalid + .invalid-feedback-alnafay,
.form-group-alnafay.has-error .invalid-feedback-alnafay {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-embed-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.map-embed-caption i {
  color: var(--accent-orange);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.map-embed-caption strong {
  display: block;
  color: var(--dark-blue);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.map-embed-caption p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 420px;
}

.map-embed-caption .btn-alnafay {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .map-embed iframe {
    height: 320px;
  }

  .map-embed-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-embed-caption .btn-alnafay {
    margin-left: 0;
    width: 100%;
  }
}

.map-placeholder {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 48, 132, 0.04), rgba(252, 120, 0, 0.04)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(0, 48, 132, 0.03) 24px,
      rgba(0, 48, 132, 0.03) 25px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(0, 48, 132, 0.03) 24px,
      rgba(0, 48, 132, 0.03) 25px
    );
}

.map-placeholder-content {
  position: relative;
  z-index: 1;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-size: 1.25rem;
}

.map-placeholder p {
  color: var(--text-muted);
  max-width: 360px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   12. Footer
   ------------------------------------------------------------ */
.footer-alnafay {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 56px;
}

.footer-brand img {
  height: 140px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 0;
}

.footer-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent-orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--accent-orange);
}

/* ------------------------------------------------------------
   13. Animations
   ------------------------------------------------------------ */
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes bounceSoft {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.img-zoom-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-zoom-wrap img {
  transition: transform 0.6s ease;
}

.img-zoom-wrap:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    animation: none;
    transform: scale(1);
  }
}

/* ------------------------------------------------------------
   14. Responsive
   ------------------------------------------------------------ */
@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }

  .navbar-toggler-alnafay {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .trust-bar {
    margin-top: -32px;
  }

  .approach-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-track::before {
    display: none;
  }

  .approach-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
  }

  .approach-num {
    margin: 0;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--navbar-h) + 48px) 0 100px;
  }

  .about-preview-img img {
    min-height: 320px;
  }

  .nav-desktop {
    display: none !important;
  }

  .btn-nav-cta {
    display: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --navbar-h: 96px;
    --navbar-h-scrolled: 84px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .section-pad-sm {
    padding: 48px 0;
  }

  .page-header {
    padding: calc(var(--navbar-h) + 48px) 0 56px;
  }

  .navbar-brand-alnafay img {
    height: 72px;
  }

  .navbar-alnafay.scrolled .navbar-brand-alnafay img,
  .navbar-alnafay.solid .navbar-brand-alnafay img {
    height: 64px;
  }

  .hero-logo-mark {
    width: 72px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-alnafay {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1.25rem 0;
    background: var(--light-bg);
  }

  .trust-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .contact-form-wrap,
  .contact-info-card {
    padding: 1.75rem;
  }

  .footer-alnafay {
    padding-top: 56px;
  }

  .footer-brand p {
    max-width: none;
    margin-bottom: 2rem;
  }

  .service-block {
    padding: 56px 0;
  }

  .service-block-img,
  .service-block-img img {
    min-height: 240px;
  }

  .visual-band {
    min-height: 360px;
  }

  .btn-alnafay {
    padding: 0.8rem 1.4rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .industry-chip {
    padding: 0.85rem 0.9rem;
  }

  .industry-chip span {
    font-size: 0.85rem;
  }

  .faq-alnafay .accordion-button {
    font-size: 0.92rem;
    padding: 1rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .display-hero {
    font-size: 1.9rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .how-step {
    gap: 1rem;
  }

  .how-num {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .container-alnafay {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .offcanvas-alnafay {
    width: min(100vw, 100%) !important;
  }
}

@media (max-width: 375px) {
  .navbar-brand-alnafay img {
    height: 62px;
  }

  .navbar-alnafay.scrolled .navbar-brand-alnafay img,
  .navbar-alnafay.solid .navbar-brand-alnafay img {
    height: 54px;
  }

  .display-hero {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.55rem;
  }
}

/* Prevent horizontal scroll on all breakpoints */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

/* Utility helpers */
.mb-section {
  margin-bottom: 3rem;
}

.text-balance {
  text-wrap: balance;
}
