/* ============================================================
   SKIP LINK - Accessibility
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 1.5rem;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
}
/* ============================================================
   1. FONT FACE - Local Cairo Fonts
   ============================================================ */
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 200;
  src: url("fonts/Cairo-ExtraLight.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Cairo-Light.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Cairo-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Cairo-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Cairo-SemiBold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Cairo-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Cairo-ExtraBold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/Cairo-Black.ttf") format("truetype");
  font-display: swap;
}

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  --color-primary: #0b1a2e;
  --color-primary-light: #1a2d45;
  --color-accent: #2b7a4b;
  --color-accent-hover: #1f5f3b;
  --color-accent-light: #e8f3ed;
  --color-accent-very-light: #f4faf7;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0b1a2e;
  --color-text-muted: #5a6a7e;
  --color-text-light: #8a9aaa;
  --color-border: #e8ecf2;
  --color-shadow-sm: 0 2px 8px rgba(11, 26, 46, 0.06);
  --color-shadow-md: 0 8px 30px rgba(11, 26, 46, 0.08);
  --color-shadow-lg: 0 16px 48px rgba(11, 26, 46, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: "Cairo", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
.section-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.25rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 2.8rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 122, 75, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-very-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   6. HEADER & NAVIGATION - COMPLETE FIX
   ============================================================ */

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  gap: 1rem;
  min-height: 64px;
}

/* Brand */
.brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.5;
  flex-shrink: 0;
}

.brand span {
  color: var(--color-accent);
}

.brand small {
  font-weight: 400;
  font-size: 0.55rem;
  display: block;
  color: var(--color-text-muted);
  margin-top: 0;
  letter-spacing: 0.3px;
}

/* ===== DESKTOP NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.2rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover {
  color: var(--color-primary);
}

.nav .btn {
  margin-right: 0.2rem;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hamburger:active {
  background: rgba(0, 0, 0, 0.08);
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  flex-shrink: 0;
}

/* Hamburger Animation - Open (X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 28px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 28px;
}

/* ===== MOBILE NAVIGATION ===== */
.nav-mobile-wrapper {
  display: none;
  width: 100%;
  background: var(--color-surface);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.nav-mobile-wrapper.open {
  display: block;
  max-height: 600px;
  border-top-color: var(--color-border);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1.5rem;
  gap: 0.1rem;
}

.nav-mobile a {
  padding: 0.7rem 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  border-radius: 4px;
  position: relative;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a:active {
  color: var(--color-primary);
  background: var(--color-accent-very-light);
  padding-right: 0.8rem;
}

.nav-mobile a.active {
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding-right: 0.8rem;
}

.nav-mobile a.active::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--color-accent);
  border-radius: 0 3px 3px 0;
}

.nav-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.7rem;
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE - MOBILE BREAKPOINT
   ============================================================ */

@media (max-width: 768px) {
  .nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-mobile-wrapper {
    display: block !important;
  }
}

/* ============================================================
   ACCESSIBILITY - FOCUS
   ============================================================ */

.hamburger:focus-visible,
.nav-mobile a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .nav-mobile-wrapper,
  .hamburger span,
  .nav-mobile a {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   7. HERO SECTION - Enhanced Premium Design
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6rem 0 8rem;
  overflow: hidden;
  background: #0a1628;
}

/* ============================================================
   HERO BACKGROUND
   ============================================================ */

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Overlay with subtle gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 30%,
      rgba(43, 122, 75, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(43, 122, 75, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(ellipse at 50% 50%, rgba(10, 22, 40, 0.9) 0%, #0a1628 100%);
  z-index: 1;
}

/* Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4caf50 0%, transparent 70%);
  top: -30%;
  right: -10%;
  animation: heroFloat 25s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  bottom: -20%;
  left: -5%;
  animation: heroFloat 30s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #4caf50 0%, transparent 70%);
  top: 50%;
  right: 25%;
  animation: heroFloat 18s ease-in-out infinite 3s;
}

.shape-4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  bottom: 25%;
  left: 15%;
  animation: heroFloat 22s ease-in-out infinite 2s;
}

.shape-5 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #4caf50 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation: heroFloat 15s ease-in-out infinite 4s;
}

/* ============================================================
   HERO CONTAINER
   ============================================================ */

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* ============================================================
   HERO CONTENT
   ============================================================ */

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color: #ffffff;
}

/* ----- Badge ----- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 1.2rem 0.35rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: fit-content;
  backdrop-filter: blur(8px);
  position: relative;
  transition: all 0.4s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: heroPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.3);
}

.hero-badge-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 1px solid rgba(76, 175, 80, 0.1);
  animation: heroBadgePulse 2s ease-in-out infinite;
}

/* ----- Title ----- */
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  display: inline-block;
  color: #4caf50;
  position: relative;
  padding: 0 0.1rem;
}

.hero-title-accent::before {
  content: "";
  position: absolute;
  inset: -4px -6px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 100%;
  height: 6px;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 4px;
  z-index: -1;
}

/* ----- Description ----- */
.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0;
  font-weight: 400;
}

/* ----- CTA Buttons ----- */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.btn-hero {
  background: linear-gradient(135deg, #2b7a4b 0%, #1f5f3b 100%);
  color: #ffffff;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43, 122, 75, 0.3);
}

.btn-hero .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-hero:hover .btn-glow {
  transform: translateX(100%);
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 40px rgba(43, 122, 75, 0.4);
}

.btn-hero i {
  font-size: 0.85rem;
  transition: transform 0.4s ease;
}

.btn-hero:hover i {
  transform: translateX(-6px);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline i {
  font-size: 1.1rem;
  color: #25d366;
  transition: transform 0.3s ease;
}

.btn-hero-outline:hover i {
  transform: scale(1.1);
}

/* ----- Stats ----- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4caf50;
  position: absolute;
  top: 0;
  right: -18px;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- Main Card ----- */
.hero-visual-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: heroFloat 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(76, 175, 80, 0.15);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(76, 175, 80, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1),
    transparent 50%,
    rgba(76, 175, 80, 0.05)
  );
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.hero-visual-card:hover .visual-card-glow {
  opacity: 1;
}

.visual-card-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(43, 122, 75, 0.2),
    rgba(43, 122, 75, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4caf50;
  border: 2px solid rgba(76, 175, 80, 0.15);
  transition: all 0.5s ease;
}

.hero-visual-card:hover .visual-card-icon {
  background: linear-gradient(
    135deg,
    rgba(43, 122, 75, 0.3),
    rgba(43, 122, 75, 0.1)
  );
  border-color: rgba(76, 175, 80, 0.3);
  transform: scale(1.05) rotate(-4deg);
}

.visual-card-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.visual-card-sub {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.6rem;
}

.visual-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.visual-card-rating i {
  font-size: 0.7rem;
  color: #f59e0b;
}

.visual-card-rating .rating-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 0.3rem;
}

.visual-card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #2b7a4b, #1f5f3b);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 16px rgba(43, 122, 75, 0.3);
  animation: heroBadgeFloat 3s ease-in-out infinite;
}

.visual-card-badge i {
  font-size: 0.5rem;
}

/* ----- Orbiting Elements ----- */
.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroOrbit 12s linear infinite;
}

.orbit-2 {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroOrbit 16s linear infinite reverse;
}

.orbit-3 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroOrbit 10s linear infinite 2s;
}

.orbit-4 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroOrbit 20s linear infinite reverse 1s;
}

.visual-float {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  cursor: default;
}

.visual-float:hover {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.2);
  transform: scale(1.2);
  color: #4caf50;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.1);
}

.float-1 {
  top: -12px;
  right: -12px;
  animation: heroPulse 3s ease-in-out infinite;
}
.float-2 {
  bottom: -12px;
  left: -12px;
  animation: heroPulse 3.5s ease-in-out infinite 0.5s;
}
.float-3 {
  top: 50%;
  left: -20px;
  animation: heroPulse 4s ease-in-out infinite 1s;
}
.float-4 {
  bottom: 50%;
  right: -20px;
  animation: heroPulse 3s ease-in-out infinite 1.5s;
}

/* ----- Particles ----- */
.visual-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.particle-1 {
  width: 4px;
  height: 4px;
  background: #4caf50;
  top: 15%;
  right: 8%;
  animation: heroParticle 4s ease-in-out infinite;
}

.particle-2 {
  width: 3px;
  height: 3px;
  background: #ffffff;
  bottom: 20%;
  left: 10%;
  animation: heroParticle 5s ease-in-out infinite 1s;
}

.particle-3 {
  width: 5px;
  height: 5px;
  background: #4caf50;
  top: 45%;
  right: 5%;
  animation: heroParticle 3.5s ease-in-out infinite 2s;
}

.particle-4 {
  width: 3px;
  height: 3px;
  background: #ffffff;
  bottom: 40%;
  left: 5%;
  animation: heroParticle 4.5s ease-in-out infinite 0.5s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  background: #4caf50;
  top: 30%;
  right: 15%;
  animation: heroParticle 3s ease-in-out infinite 1.5s;
}

.particle-6 {
  width: 2px;
  height: 2px;
  background: #ffffff;
  bottom: 10%;
  right: 20%;
  animation: heroParticle 5.5s ease-in-out infinite 2.5s;
}

/* Connection Lines SVG */
.visual-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.3;
  transition: all 0.5s ease;
  cursor: pointer;
}

.hero-scroll:hover {
  opacity: 0.8;
}

.scroll-text {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  display: block;
  animation: heroScroll 2s ease-in-out infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes heroOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes heroParticle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-10px, -15px) scale(1.5);
    opacity: 0.6;
  }
}

@keyframes heroBadgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

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

@keyframes heroScroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 6rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-visual-container {
    max-width: 360px;
  }

  .hero-visual-card {
    max-width: 260px;
    padding: 1.8rem 1.5rem;
  }

  .visual-card-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .visual-card-title {
    font-size: 1rem;
  }

  .orbit-1 {
    width: 160px;
    height: 160px;
  }
  .orbit-2 {
    width: 210px;
    height: 210px;
  }
  .orbit-3 {
    width: 110px;
    height: 110px;
  }
  .orbit-4 {
    width: 260px;
    height: 260px;
  }

  .visual-float {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .float-1 {
    top: -8px;
    right: -8px;
  }
  .float-2 {
    bottom: -8px;
    left: -8px;
  }
  .float-3 {
    display: none;
  }
  .float-4 {
    display: none;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 5rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .hero-title-line {
    display: inline;
  }

  .hero-title-accent {
    display: inline-block;
  }

  .hero-description {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn-hero,
  .btn-hero-outline {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .hero-visual {
    order: 1;
    width: 100%;
  }

  .hero-visual-container {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-visual-card {
    max-width: 220px;
    padding: 1.5rem 1.2rem;
  }

  .visual-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .visual-card-title {
    font-size: 0.95rem;
  }

  .visual-card-sub {
    font-size: 0.75rem;
  }

  .visual-card-badge {
    font-size: 0.5rem;
    padding: 0.15rem 0.6rem;
    top: -8px;
    right: -8px;
  }

  .visual-card-rating i {
    font-size: 0.6rem;
  }

  .orbit-1 {
    width: 140px;
    height: 140px;
  }
  .orbit-2 {
    width: 180px;
    height: 180px;
  }
  .orbit-3 {
    width: 100px;
    height: 100px;
  }
  .orbit-4 {
    width: 220px;
    height: 220px;
  }

  .visual-float {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .float-1 {
    top: -6px;
    right: -6px;
  }
  .float-2 {
    bottom: -6px;
    left: -6px;
  }

  .visual-lines {
    display: none;
  }

  .visual-particle {
    display: none;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
  }

  .hero-scroll {
    display: none;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 3.5rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .hero-title-accent::after {
    bottom: 2px;
    height: 4px;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
    align-items: center;
  }

  .stat-item {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-plus {
    font-size: 1rem;
    right: -14px;
  }

  .hero-visual-container {
    max-width: 260px;
  }

  .hero-visual-card {
    max-width: 180px;
    padding: 1.2rem 1rem;
    border-radius: 16px;
  }

  .visual-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .visual-card-title {
    font-size: 0.85rem;
  }

  .visual-card-sub {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .visual-card-badge {
    font-size: 0.45rem;
    padding: 0.1rem 0.5rem;
    top: -6px;
    right: -6px;
  }

  .visual-card-rating i {
    font-size: 0.5rem;
  }

  .visual-card-rating .rating-count {
    font-size: 0.55rem;
  }

  .orbit-1 {
    width: 110px;
    height: 110px;
  }
  .orbit-2 {
    width: 140px;
    height: 140px;
  }
  .orbit-3 {
    display: none;
  }
  .orbit-4 {
    display: none;
  }

  .visual-float {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }

  .float-1 {
    top: -4px;
    right: -4px;
  }
  .float-2 {
    bottom: -4px;
    left: -4px;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }

  .shape-3,
  .shape-4,
  .shape-5 {
    display: none;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.8rem;
  }

  .hero-description {
    font-size: 0.75rem;
  }

  .hero-visual-container {
    max-width: 220px;
  }

  .hero-visual-card {
    max-width: 160px;
    padding: 1rem 0.8rem;
    border-radius: 12px;
  }

  .visual-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .visual-card-title {
    font-size: 0.75rem;
  }

  .visual-card-sub {
    font-size: 0.6rem;
  }

  .orbit-1 {
    width: 90px;
    height: 90px;
  }
  .orbit-2 {
    width: 120px;
    height: 120px;
  }

  .visual-float {
    width: 26px;
    height: 26px;
    font-size: 0.55rem;
  }
}

/* ============================================================
   REDUCED MOTION - Hero
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-shape,
  .hero-visual-card,
  .visual-float,
  .visual-particle,
  .visual-card-badge,
  .hero-badge-dot,
  .hero-badge-pulse,
  .orbit-1,
  .orbit-2,
  .orbit-3,
  .orbit-4,
  .scroll-wheel {
    animation: none !important;
    transition: none !important;
  }

  .hero-visual-card:hover {
    transform: none !important;
  }

  .visual-float:hover {
    transform: none !important;
  }
}

/* ============================================================
   ACCESSIBILITY - Hero
   ============================================================ */

.btn-hero:focus-visible,
.btn-hero-outline:focus-visible {
  outline: 2px solid #4caf50;
  outline-offset: 4px;
}

.hero-scroll:focus-visible {
  outline: 2px solid #4caf50;
  outline-offset: 4px;
  border-radius: 4px;
}

/* High Contrast */
@media (prefers-contrast: high) {
  .hero-overlay {
    background: #0a1628;
  }

  .hero-title-accent {
    color: #4caf50;
  }

  .btn-hero {
    background: #2b7a4b;
    border: 2px solid #4caf50;
  }

  .btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
}

/* ============================================================
   8. SERVICES SECTION
   ============================================================ */
.services {
  padding: 4rem 0 5rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header .section-desc {
  margin-top: 0.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   SERVICE CARDS - Premium Redesign
   ============================================================ */

/* SERVICE CARD - Main Container */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem 1.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.04);
  cursor: default;
}

/* Card Hover State */
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 122, 75, 0.25);
  box-shadow: 0 12px 40px rgba(11, 26, 46, 0.08);
}

/* CARD NUMBER - Elegant Badge */
.card-number {
  position: absolute;
  top: 12px;
  left: 14px;
  font-weight: 700;
  font-size: 0.6rem;
  color: rgba(11, 26, 46, 0.25);
  background: var(--color-bg);
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  font-feature-settings: "kern" 1;
}

.service-card:hover .card-number {
  color: var(--color-accent);
  border-color: var(--color-accent-light);
  background: var(--color-accent-light);
}

/* CARD ICON - Refined Visual Container */
.card-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  background: var(--color-accent-very-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  margin-top: 0.1rem;
}

/* Icon Hover Effect */
.service-card:hover .card-icon {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(43, 122, 75, 0.25);
}

/* CARD BODY - Content Area */
.card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* CARD TITLE - Strong & Clear */
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.service-card:hover .card-title {
  color: var(--color-accent);
}

/* CARD DESCRIPTION - Clean & Readable */
.card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.1rem 0 0.3rem;
  line-height: 1.5;
  font-weight: 400;
}

/* CARD PRICE - Prominent & Elegant */
.card-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.15rem;
  margin: 0.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  letter-spacing: -0.01em;
}

.card-price .price-from {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.card-price .price-unit {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-right: 0.2rem;
  letter-spacing: 0.02em;
}

.card-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Price Accent Line - Subtle Underline Effect */
.card-price::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent-light);
  margin-top: 0.1rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover .card-price::after {
  width: 32px;
  background: var(--color-accent);
}

/* CARD ACTIONS - Buttons */
.card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
  align-items: center;
}

/* Secondary Button - "عرض المزيد" */
.card-actions .btn-outline {
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  min-width: 80px;
  flex: 1 0 auto;
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.card-actions .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-very-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 122, 75, 0.1);
}

/* Primary Button - "تواصل عبر واتساب" */
.card-actions .btn-whatsapp {
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  flex: 1.5 0 auto;
  min-width: 100px;
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.card-actions .btn-whatsapp i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.card-actions .btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.card-actions .btn-whatsapp:hover i {
  transform: scale(1.1);
}

/* CARD DECORATIVE ELEMENTS - Subtle Visual Polish */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent-light) 50%,
    transparent 100%
  );
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
}

/* ============================================================
   SERVICE CARDS RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem 1rem 1rem;
    gap: 1rem;
  }

  .card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-price {
    font-size: 1.05rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.1rem 1rem 1rem;
    gap: 0.9rem;
  }

  .card-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }

  .card-price {
    font-size: 0.95rem;
    margin: 0.15rem 0 0.4rem;
  }

  .card-price::after {
    width: 20px;
  }

  .service-card:hover .card-price::after {
    width: 28px;
  }

  .card-actions .btn-outline,
  .card-actions .btn-whatsapp {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    min-width: 60px;
  }

  .card-number {
    font-size: 0.55rem;
    padding: 0.1rem 0.5rem;
    min-width: 26px;
    top: 10px;
    left: 12px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .service-card {
    padding: 0.9rem 0.8rem 0.9rem;
    gap: 0.7rem;
    border-radius: var(--radius-sm);
  }

  .card-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    margin-top: 0;
  }

  .card-title {
    font-size: 0.85rem;
  }

  .card-desc {
    font-size: 0.75rem;
    margin: 0 0 0.2rem;
  }

  .card-price {
    font-size: 0.85rem;
    margin: 0.1rem 0 0.3rem;
  }

  .card-price .price-from,
  .card-price .price-unit {
    font-size: 0.6rem;
  }

  .card-price::after {
    width: 16px;
    height: 1.5px;
  }

  .service-card:hover .card-price::after {
    width: 22px;
  }

  .card-actions {
    gap: 0.35rem;
  }

  .card-actions .btn-outline,
  .card-actions .btn-whatsapp {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    min-width: 50px;
    border-radius: 4px;
  }

  .card-actions .btn-whatsapp i {
    font-size: 0.7rem;
  }

  .card-number {
    font-size: 0.5rem;
    padding: 0.1rem 0.4rem;
    min-width: 22px;
    top: 8px;
    left: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .service-card {
    padding: 0.7rem 0.6rem 0.7rem;
    gap: 0.5rem;
  }

  .card-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .card-title {
    font-size: 0.75rem;
  }

  .card-desc {
    font-size: 0.65rem;
  }

  .card-price {
    font-size: 0.75rem;
  }

  .card-actions .btn-outline,
  .card-actions .btn-whatsapp {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
    min-width: 40px;
  }

  .card-number {
    font-size: 0.45rem;
    padding: 0.05rem 0.35rem;
    min-width: 18px;
    top: 6px;
    left: 8px;
  }
}

/* ============================================================
   SERVICE CARDS ACCESSIBILITY
   ============================================================ */
.card-actions .btn-outline:focus-visible,
.card-actions .btn-whatsapp:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.service-card:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(43, 122, 75, 0.15);
}

/* ============================================================
   SERVICE CARDS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card *,
  .service-card::before,
  .card-icon,
  .card-actions .btn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .service-card:hover {
    transform: none !important;
  }

  .service-card:hover .card-icon {
    transform: none !important;
  }
}

/* ============================================================
   9. FEATURES
   ============================================================ */
.features {
  padding: 4rem 0 5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-light);
  box-shadow: var(--color-shadow-sm);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================================
   10. CTA SECTION
   ============================================================ */
.cta-section {
  padding: 4rem 0;
  background: var(--color-primary);
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-content .btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-content .btn-whatsapp:hover {
  background: #1ebe5c;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* ============================================================
   11. FOOTER
   ============================================================ */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ============================================================
   FOOTER ROWS
   ============================================================ */

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Row 1 - Brand + Navigation */
.footer-row-top {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

/* Row 2 - Legal + Copyright */
.footer-row-bottom {
  padding-top: 0.25rem;
}

/* ============================================================
   BRAND
   ============================================================ */

.footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-primary);
  line-height: 1.2;
  flex-shrink: 0;
}

.footer-brand span {
  color: var(--color-accent);
}

.footer-brand small {
  font-weight: 400;
  font-size: 0.65rem;
  display: block;
  color: var(--color-text-muted);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.footer-nav a:hover::after {
  width: 100%;
}

/* ============================================================
   LEGAL LINKS
   ============================================================ */

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--color-text-light);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.footer-legal-separator {
  color: var(--color-border);
  font-size: 0.7rem;
}

/* ============================================================
   COPYRIGHT
   ============================================================ */

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .footer-row {
    gap: 0.8rem;
  }

  .footer-nav {
    gap: 1.2rem;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-row-top {
    gap: 0.8rem;
  }

  .footer-row-bottom {
    gap: 0.6rem;
  }

  .footer-nav {
    justify-content: center;
    gap: 1rem;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }

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

  .footer-legal a {
    font-size: 0.7rem;
  }

  .footer-copy {
    font-size: 0.7rem;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 0.7rem;
  }

  .footer-nav a {
    font-size: 0.7rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .footer-legal a {
    font-size: 0.65rem;
  }

  .footer-legal-separator {
    font-size: 0.6rem;
  }
}

@media (max-width: 360px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-legal-separator {
    display: none;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.footer-nav a:focus-visible,
.footer-legal a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .footer-nav a::after {
    transition: none !important;
  }
}

/* ============================================================
   12. MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-surface);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(11, 26, 46, 0.2);
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

/* Scrollbar Styling */
.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-track {
  background: var(--color-bg);
}

.modal::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

/* ===== MODAL CLOSE BUTTON ===== */
.modal-close {
  position: sticky;
  top: 0.8rem;
  left: 0.8rem;
  float: left;
  background: var(--color-bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.8rem 0.8rem 0 0;
}

.modal-close:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-close i {
  font-size: 1.1rem;
}

/* ===== MODAL CONTENT ===== */
.modal-content {
  padding: 0 2rem 2rem;
}

/* ===== MODAL HEADER ===== */
.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.modal-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(43, 122, 75, 0.1);
}

.modal-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--color-accent-very-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.modal-icon {
  font-size: 1.6rem;
  color: var(--color-accent);
}

/* ===== MODAL TITLE ===== */
.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 0.3rem 0;
  line-height: 1.2;
}

/* ===== SHORT DESCRIPTION ===== */
.modal-short-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
  font-weight: 400;
  border-right: 3px solid var(--color-accent);
  padding-right: 1rem;
}

/* ===== PRICE ===== */
.modal-price-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--color-accent-very-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.modal-price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.modal-price .riyal-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

/* ===== DESCRIPTION SECTION ===== */
.modal-description {
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ===== FEATURES LIST ===== */
.modal-features {
  margin-bottom: 1.5rem;
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.modal-features-list li:hover {
  border-color: var(--color-accent-light);
  background: var(--color-accent-very-light);
}

.feature-number {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 28px;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== NOTE ===== */
.modal-note {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: #fef9e7;
  border-radius: var(--radius-sm);
  border: 1px solid #fdebd0;
  margin-bottom: 1.5rem;
}

.modal-note-icon {
  flex-shrink: 0;
  color: #f39c12;
  font-size: 1.1rem;
  padding-top: 0.1rem;
}

.modal-note-content {
  font-size: 0.8rem;
  color: #7d6608;
  line-height: 1.6;
}

.modal-note-content strong {
  display: inline-block;
  margin-left: 0.3rem;
}

.modal-note-content p {
  display: inline;
  margin: 0;
}

/* ===== WHATSAPP BUTTON ===== */
.modal-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: #25d366;
  color: #ffffff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.modal-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp i {
  font-size: 1.2rem;
}

.modal-whatsapp .btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.modal-whatsapp:hover .btn-arrow {
  transform: translateX(-4px);
}

/* ============================================================
   MODAL RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: var(--radius-md);
  }

  .modal-content {
    padding: 0 1.25rem 1.25rem;
  }

  .modal-close {
    top: 0.5rem;
    left: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin: 0.5rem 0.5rem 0 0;
  }

  .modal-header {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .modal-number {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
  }

  .modal-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .modal-icon {
    font-size: 1.3rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-short-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-right: 0.8rem;
  }

  .modal-price-wrapper {
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
  }

  .modal-price {
    font-size: 1.2rem;
  }

  .modal-price .riyal-icon {
    width: 14px;
    height: 14px;
  }

  .modal-section-title {
    font-size: 0.8rem;
  }

  .modal-desc {
    font-size: 0.85rem;
  }

  .modal-features-list li {
    padding: 0.4rem 0.6rem;
    gap: 0.5rem;
  }

  .feature-number {
    font-size: 0.75rem;
    min-width: 24px;
  }

  .feature-text {
    font-size: 0.78rem;
  }

  .modal-note {
    padding: 0.6rem 0.8rem;
    gap: 0.6rem;
  }

  .modal-note-content {
    font-size: 0.7rem;
  }

  .modal-whatsapp {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 0 1rem 1rem;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    top: 0.3rem;
    left: 0.3rem;
    margin: 0.3rem 0.3rem 0 0;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .modal-icon {
    font-size: 1.1rem;
  }

  .modal-short-desc {
    font-size: 0.8rem;
    padding-right: 0.6rem;
  }

  .modal-price {
    font-size: 1rem;
  }

  .modal-price .riyal-icon {
    width: 12px;
    height: 12px;
  }

  .modal-features-list li {
    padding: 0.3rem 0.5rem;
    flex-wrap: wrap;
  }

  .feature-number {
    font-size: 0.7rem;
    min-width: 20px;
  }

  .feature-text {
    font-size: 0.72rem;
  }

  .modal-whatsapp {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal,
  .modal-close,
  .modal-whatsapp,
  .modal-features-list li {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ============================================================
   13. FEATURES, CTA, FOOTER, MODAL RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .feature-item {
    padding: 1.25rem 1rem;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .feature-item h3 {
    font-size: 0.95rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .modal {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-content .btn-lg {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
}

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

/* ============================================================
   14. Terms & Conditions, Privacy Policy, and Copyright
   ============================================================ */
/* ============================================================
   TERMS & CONDITIONS - PREMIUM ENHANCED
   ============================================================ */

.terms-page {
  padding: 2rem 0 5rem;
  background: var(--color-bg);
}

/* ============================================================
   HERO HEADER
   ============================================================ */

.terms-hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2840 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.terms-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 75, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.terms-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.terms-hero-badge i {
  font-size: 0.8rem;
  color: #4caf50;
}

.terms-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.terms-hero-title span {
  color: #4caf50;
  font-weight: 400;
  font-size: 0.7em;
  display: block;
}

.terms-hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.terms-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.terms-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.terms-hero-meta-item i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.terms-hero-meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================================
   QUICK NAVIGATION
   ============================================================ */

.terms-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  margin-bottom: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--color-shadow-sm);
  padding: 0.5rem 1rem;
}

.terms-nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.terms-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-nav-links {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  flex: 1;
}

.terms-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.terms-nav-links a:hover,
.terms-nav-links a.active {
  background: var(--color-accent-very-light);
  color: var(--color-accent);
  border-color: var(--color-accent-light);
}

.terms-nav-cta {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT
   ============================================================ */

.terms-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================================
   TERMS CARD
   ============================================================ */

.terms-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: var(--color-shadow-sm);
}

.terms-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--color-shadow-md);
  transform: translateY(-2px);
}

.terms-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.terms-card-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(43, 122, 75, 0.25);
}

.terms-card-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.terms-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.terms-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.terms-card-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.terms-card-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CARD LIST
   ============================================================ */

.terms-card-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.terms-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  transition: background 0.3s ease;
}

.terms-card-list li:hover {
  background: var(--color-accent-very-light);
}

.terms-card-list li i {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT ENHANCED
   ============================================================ */

.terms-contact-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.terms-contact-enhanced:hover {
  border-color: var(--color-accent-light);
}

.terms-contact-enhanced-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-accent);
}

.terms-contact-enhanced-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.terms-contact-enhanced-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.terms-contact-enhanced-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.terms-contact-enhanced-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  flex: 1;
}

.terms-contact-enhanced-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--color-shadow-md);
  background: var(--color-surface);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.terms-contact-enhanced-item:first-child .contact-item-icon {
  background: #e8f5e9;
  color: #25d366;
}

.terms-contact-enhanced-item:nth-child(2) .contact-item-icon {
  background: #e3f2fd;
  color: #0088cc;
}

.terms-contact-enhanced-item:last-child .contact-item-icon {
  background: #fce4ec;
  color: #ea4335;
}

.contact-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: right;
}

.contact-item-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.contact-item-desc {
  font-size: 0.7rem;
  color: var(--color-text-light);
}

.contact-item-arrow {
  font-size: 0.8rem;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.terms-contact-enhanced-item:hover .contact-item-arrow {
  transform: translateX(-4px);
  color: var(--color-accent);
}

/* ============================================================
   AGREEMENT ENHANCED
   ============================================================ */

.terms-agreement-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.terms-agreement-enhanced.valid {
  border-color: var(--color-accent);
  background: var(--color-accent-very-light);
}

.terms-agreement-enhanced-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.terms-agreement-enhanced-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.terms-agreement-enhanced-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.terms-agreement-enhanced-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.terms-agreement-enhanced-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.terms-agreement-enhanced-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 200px;
}

.terms-agreement-enhanced-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.terms-agreement-enhanced-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}

.terms-agreement-enhanced-checkbox label strong {
  color: var(--color-accent);
}

.terms-agree-btn {
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.terms-agree-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.terms-agree-btn:hover:not(:disabled) .btn-arrow {
  transform: translateX(-4px);
}

.terms-agree-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .terms-hero {
    padding: 2rem 1.5rem;
  }

  .terms-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }
}

@media (max-width: 768px) {
  .terms-page {
    padding: 1rem 0 3rem;
  }

  .terms-hero {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  .terms-hero-meta {
    gap: 1rem;
  }

  .terms-hero-meta-item {
    font-size: 0.7rem;
  }

  .terms-nav {
    position: static;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .terms-nav-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .terms-nav-links {
    justify-content: center;
  }

  .terms-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .terms-card-header {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .terms-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .terms-card-title {
    font-size: 0.95rem;
  }

  .terms-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }

  .terms-card-body p {
    font-size: 0.9rem;
  }

  .terms-card-list li {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }

  .terms-contact-enhanced {
    padding: 1.5rem 1rem;
  }

  .terms-contact-enhanced-methods {
    flex-direction: column;
  }

  .terms-contact-enhanced-item {
    min-width: unset;
  }

  .terms-agreement-enhanced {
    padding: 1.2rem;
  }

  .terms-agreement-enhanced-content {
    flex-direction: column;
    text-align: center;
  }

  .terms-agreement-enhanced-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .terms-agreement-enhanced-checkbox {
    min-width: unset;
  }

  .terms-agree-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .terms-hero-title {
    font-size: 1.6rem;
  }

  .terms-hero-desc {
    font-size: 0.9rem;
  }

  .terms-hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }

  .terms-card-header {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 0.3rem;
    padding: 0.8rem 1rem;
  }

  .terms-card-number {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .terms-card-title-group {
    width: 100%;
  }

  .terms-card-title {
    font-size: 0.85rem;
  }

  .terms-card-body {
    padding: 0.8rem 1rem 1rem;
  }

  .terms-card-body p {
    font-size: 0.8rem;
  }

  .terms-card-list li {
    font-size: 0.78rem;
    padding: 0.2rem 0.3rem;
  }

  .terms-card-list li i {
    font-size: 0.7rem;
  }

  .contact-item-desc {
    display: none;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.terms-agreement-enhanced-checkbox input:focus-visible,
.terms-agree-btn:focus-visible,
.terms-nav-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .terms-card,
  .terms-card-list li,
  .terms-contact-enhanced-item,
  .terms-agreement-enhanced,
  .terms-agree-btn .btn-arrow,
  .contact-item-arrow {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   PRIVACY POLICY - PREMIUM ENHANCED
   ============================================================ */

.privacy-page {
  padding: 2rem 0 5rem;
  background: var(--color-bg);
}

/* ============================================================
   HERO HEADER
   ============================================================ */

.privacy-hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2840 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 75, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.privacy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.privacy-hero-badge i {
  font-size: 0.8rem;
  color: #4caf50;
}

.privacy-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.privacy-hero-title span {
  color: #4caf50;
  font-weight: 400;
  font-size: 0.7em;
  display: block;
}

.privacy-hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.privacy-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.privacy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.privacy-hero-meta-item i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.privacy-hero-meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================================
   QUICK NAVIGATION
   ============================================================ */

.privacy-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  margin-bottom: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--color-shadow-sm);
  padding: 0.5rem 1rem;
}

.privacy-nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-nav-links {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  flex: 1;
}

.privacy-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.privacy-nav-links a:hover,
.privacy-nav-links a.active {
  background: var(--color-accent-very-light);
  color: var(--color-accent);
  border-color: var(--color-accent-light);
}

.privacy-nav-cta {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT
   ============================================================ */

.privacy-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================================
   PRIVACY CARD
   ============================================================ */

.privacy-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: var(--color-shadow-sm);
}

.privacy-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--color-shadow-md);
  transform: translateY(-2px);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.privacy-card-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(43, 122, 75, 0.25);
}

.privacy-card-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.privacy-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.privacy-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.privacy-card-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.privacy-card-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CARD LIST
   ============================================================ */

.privacy-card-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.privacy-card-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  transition: background 0.3s ease;
}

.privacy-card-list li:hover {
  background: var(--color-accent-very-light);
}

.privacy-card-list li i {
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.privacy-card-list li span {
  flex: 1;
}

/* ============================================================
   CONTACT DETAILS
   ============================================================ */

.privacy-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.privacy-contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.privacy-contact-detail i {
  font-size: 1.1rem;
  color: var(--color-accent);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.privacy-contact-detail > div {
  display: flex;
  flex-direction: column;
}

.privacy-contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.privacy-contact-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   CONTACT ENHANCED
   ============================================================ */

.privacy-contact-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.privacy-contact-enhanced:hover {
  border-color: var(--color-accent-light);
}

.privacy-contact-enhanced-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-accent);
}

.privacy-contact-enhanced-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.privacy-contact-enhanced-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.privacy-contact-enhanced-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-contact-enhanced-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  flex: 1;
}

.privacy-contact-enhanced-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--color-shadow-md);
  background: var(--color-surface);
}

.privacy-contact-enhanced-item .contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.privacy-contact-enhanced-item:first-child .contact-item-icon {
  background: #e8f5e9;
  color: #25d366;
}

.privacy-contact-enhanced-item:nth-child(2) .contact-item-icon {
  background: #e3f2fd;
  color: #0088cc;
}

.privacy-contact-enhanced-item:last-child .contact-item-icon {
  background: #fce4ec;
  color: #ea4335;
}

.privacy-contact-enhanced-item .contact-item-arrow {
  font-size: 0.8rem;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.privacy-contact-enhanced-item:hover .contact-item-arrow {
  transform: translateX(-4px);
  color: var(--color-accent);
}

/* ============================================================
   AGREEMENT ENHANCED
   ============================================================ */

.privacy-agreement-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.privacy-agreement-enhanced.valid {
  border-color: var(--color-accent);
  background: var(--color-accent-very-light);
}

.privacy-agreement-enhanced-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.privacy-agreement-enhanced-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.privacy-agreement-enhanced-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.privacy-agreement-enhanced-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.privacy-agreement-enhanced-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privacy-agreement-enhanced-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 200px;
}

.privacy-agreement-enhanced-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.privacy-agreement-enhanced-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}

.privacy-agreement-enhanced-checkbox label strong {
  color: var(--color-accent);
}

.privacy-agree-btn {
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.privacy-agree-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.privacy-agree-btn:hover:not(:disabled) .btn-arrow {
  transform: translateX(-4px);
}

.privacy-agree-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .privacy-hero {
    padding: 2rem 1.5rem;
  }

  .privacy-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }

  .privacy-contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 1rem 0 3rem;
  }

  .privacy-hero {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  .privacy-hero-meta {
    gap: 1rem;
  }

  .privacy-hero-meta-item {
    font-size: 0.7rem;
  }

  .privacy-nav {
    position: static;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .privacy-nav-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .privacy-nav-links {
    justify-content: center;
  }

  .privacy-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .privacy-card-header {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .privacy-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .privacy-card-title {
    font-size: 0.95rem;
  }

  .privacy-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }

  .privacy-card-body p {
    font-size: 0.9rem;
  }

  .privacy-card-list li {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }

  .privacy-contact-enhanced {
    padding: 1.5rem 1rem;
  }

  .privacy-contact-enhanced-methods {
    flex-direction: column;
  }

  .privacy-contact-enhanced-item {
    min-width: unset;
  }

  .privacy-agreement-enhanced {
    padding: 1.2rem;
  }

  .privacy-agreement-enhanced-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-agreement-enhanced-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-agreement-enhanced-checkbox {
    min-width: unset;
  }

  .privacy-agree-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .privacy-hero-title {
    font-size: 1.6rem;
  }

  .privacy-hero-desc {
    font-size: 0.9rem;
  }

  .privacy-hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }

  .privacy-card-header {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 0.3rem;
    padding: 0.8rem 1rem;
  }

  .privacy-card-number {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .privacy-card-title-group {
    width: 100%;
  }

  .privacy-card-title {
    font-size: 0.85rem;
  }

  .privacy-card-body {
    padding: 0.8rem 1rem 1rem;
  }

  .privacy-card-body p {
    font-size: 0.8rem;
  }

  .privacy-card-list li {
    font-size: 0.78rem;
    padding: 0.2rem 0.3rem;
  }

  .privacy-card-list li i {
    font-size: 0.7rem;
  }

  .privacy-contact-detail {
    padding: 0.5rem 0.6rem;
  }

  .privacy-contact-detail i {
    font-size: 0.9rem;
  }

  .privacy-contact-value {
    font-size: 0.75rem;
  }

  .contact-item-desc {
    display: none;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.privacy-agreement-enhanced-checkbox input:focus-visible,
.privacy-agree-btn:focus-visible,
.privacy-nav-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .privacy-card,
  .privacy-card-list li,
  .privacy-contact-enhanced-item,
  .privacy-agreement-enhanced,
  .privacy-agree-btn .btn-arrow,
  .contact-item-arrow {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ============================================================
   FAQ SECTION - PREMIUM ACCORDION (FIXED)
   ============================================================ */

.faq-section {
  padding: 4rem 0 5rem;
  background: var(--color-bg);
}

/* ============================================================
   FAQ HEADER
   ============================================================ */

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem;
  background: var(--color-accent-light);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.faq-header-badge i {
  font-size: 0.8rem;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.faq-title span {
  color: var(--color-accent);
}

.faq-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ============================================================
   FAQ ITEM
   ============================================================ */

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--color-shadow-sm);
}

.faq-item:hover {
  border-color: var(--color-accent-light);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(43, 122, 75, 0.08);
}

/* ============================================================
   FAQ QUESTION
   ============================================================ */

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: right;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--color-accent-very-light);
}

.faq-item.active .faq-question {
  background: var(--color-accent-very-light);
}

.faq-question-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-accent);
}

.faq-item.active .faq-question-icon {
  background: var(--color-accent);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-question-icon i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-question-text {
  flex: 1;
  text-align: right;
  line-height: 1.4;
}

.faq-question-number {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-text-light);
  background: var(--color-bg);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  font-feature-settings: "kern" 1;
}

.faq-item.active .faq-question-number {
  color: var(--color-accent);
  border-color: var(--color-accent-light);
  background: var(--color-accent-light);
}

/* ============================================================
   FAQ ANSWER - FIXED
   ============================================================ */

/* The key fix: use max-height and overflow properly */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When active, expand the answer */
.faq-item.active .faq-answer {
  max-height: 600px; /* This must be large enough for your content */
}

/* If you have a lot of content, you can use this approach instead */
.faq-item.active .faq-answer {
  max-height: 800px; /* Increased for more content */
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-answer-content p {
  margin-bottom: 0.8rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   FAQ CONTACT LINKS
   ============================================================ */

.faq-contact-links {
  display: flex;
  gap: 0.8rem;
  margin: 0.5rem 0 0.8rem;
  flex-wrap: wrap;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-contact-link:first-child i {
  color: #25d366;
}

.faq-contact-link:last-child i {
  color: #0088cc;
}

.faq-contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--color-shadow-sm);
}

/* ============================================================
   FAQ BOTTOM CTA
   ============================================================ */

.faq-bottom {
  max-width: 820px;
  margin: 2.5rem auto 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2840 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 75, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.faq-bottom::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.faq-bottom-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #4caf50;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.faq-bottom-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.faq-bottom-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.faq-bottom-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.faq-bottom-content .btn {
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.faq-bottom-content .btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 122, 75, 0.3);
}

.faq-bottom-content .btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-bottom-content .btn:hover i {
  transform: translateX(-4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-desc {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.8rem;
  }

  .faq-question-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .faq-question-number {
    font-size: 0.55rem;
    padding: 0.1rem 0.5rem;
  }

  .faq-answer-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.9rem;
  }

  .faq-bottom {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .faq-bottom-content h3 {
    font-size: 1.1rem;
  }

  .faq-bottom-content p {
    font-size: 0.9rem;
  }

  .faq-bottom-content .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 0;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-header-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }

  .faq-question {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    gap: 0.6rem;
  }

  .faq-question-icon {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .faq-question-number {
    font-size: 0.5rem;
    padding: 0.05rem 0.4rem;
    min-width: 20px;
  }

  .faq-answer-content {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.82rem;
  }

  .faq-answer-content p {
    margin-bottom: 0.5rem;
  }

  .faq-contact-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-contact-link {
    width: 100%;
    justify-content: center;
  }

  .faq-bottom {
    padding: 1.5rem 1rem;
  }

  .faq-bottom-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-contact-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer,
  .faq-question-icon,
  .faq-contact-link,
  .faq-bottom .btn {
    transition: none !important;
    animation: none !important;
  }

  .faq-answer {
    max-height: none !important;
  }

  .faq-item.active .faq-answer {
    max-height: none !important;
  }
}
/* ============================================================
   ABOUT US PAGE - PREMIUM DESIGN
   ============================================================ */

.about-page {
  padding: 2rem 0 5rem;
  background: var(--color-bg);
}

/* ============================================================
   HERO HEADER
   ============================================================ */

.about-hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2840 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 75, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.about-hero-badge i {
  font-size: 0.8rem;
  color: #4caf50;
}

.about-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.about-hero-title span {
  color: #4caf50;
  font-weight: 400;
  font-size: 0.65em;
  display: block;
}

.about-hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.about-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.about-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-hero-meta-item i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.about-hero-meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================================
   QUICK NAVIGATION
   ============================================================ */

.about-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  margin-bottom: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--color-shadow-sm);
  padding: 0.5rem 1rem;
}

.about-nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.about-nav-links a {
  padding: 0.2rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.about-nav-links a:hover,
.about-nav-links a.active {
  background: var(--color-accent-very-light);
  color: var(--color-accent);
  border-color: var(--color-accent-light);
}

.about-nav-cta {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.about-nav-cta i {
  font-size: 0.7rem;
}

/* ============================================================
   CONTENT
   ============================================================ */

.about-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT CARD
   ============================================================ */

.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: var(--color-shadow-sm);
}

.about-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--color-shadow-md);
  transform: translateY(-2px);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.about-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-light);
}

.about-card-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.about-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.about-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.about-card-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.about-card-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   HIGHLIGHT
   ============================================================ */

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-accent-very-light);
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--color-accent);
  margin-top: 1rem;
}

.about-highlight i {
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.about-highlight span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.about-service-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.about-service-item:hover {
  border-color: var(--color-accent-light);
  background: var(--color-accent-very-light);
  transform: translateX(-3px);
}

.about-service-icon {
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-accent);
  flex-shrink: 0;
  box-shadow: var(--color-shadow-sm);
}

.about-service-info {
  display: flex;
  flex-direction: column;
}

.about-service-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
}

.about-service-desc {
  font-size: 0.7rem;
  color: var(--color-text-light);
}

/* ============================================================
   VALUES GRID
   ============================================================ */

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-value-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.about-value-item:hover {
  border-color: var(--color-accent-light);
  background: var(--color-accent-very-light);
  transform: translateY(-3px);
  box-shadow: var(--color-shadow-sm);
}

.about-value-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.about-value-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.about-value-content p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   ABOUT CTA
   ============================================================ */

.about-cta {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  transition: border-color 0.3s ease;
}

.about-cta:hover {
  border-color: var(--color-accent-light);
}

.about-cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-light);
}

.about-cta-text {
  flex: 1;
}

.about-cta-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

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

.about-cta-btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.9rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.about-cta-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(-4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .about-hero {
    padding: 2rem 1.5rem;
  }

  .about-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }

  .about-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 1rem 0 3rem;
  }

  .about-hero {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  .about-hero-meta {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .about-nav {
    position: static;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .about-nav-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .about-nav-links {
    justify-content: center;
  }

  .about-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .about-card-header {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .about-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .about-card-title {
    font-size: 1rem;
  }

  .about-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }

  .about-card-body p {
    font-size: 0.9rem;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 1.5rem;
  }

  .about-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .about-highlight {
    padding: 0.6rem 1rem;
  }

  .about-highlight span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.6rem;
  }

  .about-hero-desc {
    font-size: 0.9rem;
  }

  .about-hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }

  .about-hero-meta-item {
    font-size: 0.7rem;
  }

  .about-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
  }

  .about-card-title-group {
    width: 100%;
  }

  .about-card-title {
    font-size: 0.9rem;
  }

  .about-card-body {
    padding: 0.8rem 1rem 1rem;
  }

  .about-card-body p {
    font-size: 0.82rem;
  }

  .about-service-item {
    padding: 0.4rem 0.6rem;
  }

  .about-service-icon {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .about-service-name {
    font-size: 0.78rem;
  }

  .about-service-desc {
    font-size: 0.65rem;
  }

  .about-value-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .about-value-number {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
  }

  .about-value-content h4 {
    font-size: 0.85rem;
  }

  .about-value-content p {
    font-size: 0.75rem;
  }

  .about-cta-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .about-cta-text h3 {
    font-size: 0.95rem;
  }

  .about-cta-text p {
    font-size: 0.8rem;
  }

  .about-nav-links a {
    font-size: 0.7rem;
    padding: 0.15rem 0.7rem;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.about-nav-links a:focus-visible,
.about-cta-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .about-card,
  .about-service-item,
  .about-value-item,
  .about-cta {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .about-cta-btn i {
    transition: none !important;
  }
}

/* ============================================================
   AGREEMENT MODAL - FIXED
   ============================================================ */

.agreement-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 46, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.agreement-overlay.open {
  display: flex !important;
}

.agreement-modal-box {
  background: #ffffff;
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 30px 25px 25px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agreement-overlay.open .agreement-modal-box {
  transform: scale(1);
}

/* Close Button */
.agreement-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.agreement-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Icon */
.agreement-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #22c55e;
  border: 2px solid #dcfce7;
}

/* Title */
.agreement-modal-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

/* Service Info */
.agreement-service-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin: 12px 0 16px;
}

.agreement-service-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.agreement-service-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.agreement-service-price {
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
}

/* Description */
.agreement-modal-desc {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Checkbox */
.agreement-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #dcfce7;
  margin-bottom: 16px;
}

.agreement-checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #22c55e;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.agreement-checkbox-wrapper label {
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  line-height: 1.6;
}

.agreement-checkbox-wrapper label a {
  color: #22c55e;
  font-weight: 600;
  text-decoration: underline;
}

.agreement-checkbox-wrapper label a:hover {
  color: #16a34a;
}

/* Buttons */
.agreement-modal-actions {
  display: flex;
  gap: 12px;
}

.agreement-cancel-btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: transparent;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.agreement-cancel-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.agreement-confirm-btn {
  flex: 2;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.5;
  font-family: inherit;
}

.agreement-confirm-btn:not(:disabled) {
  opacity: 1;
}

.agreement-confirm-btn:not(:disabled):hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.agreement-confirm-btn:disabled {
  cursor: not-allowed;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 480px) {
  .agreement-modal-box {
    padding: 24px 16px 20px;
  }

  .agreement-modal-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .agreement-modal-title {
    font-size: 18px;
  }

  .agreement-service-info {
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
  }

  .agreement-modal-desc {
    font-size: 13px;
  }

  .agreement-checkbox-wrapper {
    padding: 10px 12px;
  }

  .agreement-checkbox-wrapper label {
    font-size: 12px;
  }

  .agreement-modal-actions {
    flex-direction: column;
    gap: 8px;
  }

  .agreement-confirm-btn,
  .agreement-cancel-btn {
    width: 100%;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .agreement-modal-box {
    transform: none !important;
    transition: none !important;
  }

  .agreement-overlay.open .agreement-modal-box {
    transform: none !important;
  }
}

/* ============================================================
   RETURN POLICY PAGE - PREMIUM ENHANCED
   ============================================================ */

.return-page {
  padding: 2rem 0 5rem;
  background: var(--color-bg);
}

/* ===== HERO HEADER ===== */
.return-hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2840 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.return-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 75, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.return-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.return-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.return-hero-badge i {
  font-size: 0.8rem;
  color: #4caf50;
}

.return-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.return-hero-title span {
  color: #4caf50;
  font-weight: 400;
  font-size: 0.65em;
  display: block;
}

.return-hero-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.return-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.return-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.return-hero-meta-item i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.return-hero-meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ===== QUICK NAVIGATION ===== */
.return-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  margin-bottom: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--color-shadow-sm);
  padding: 0.5rem 1rem;
}

.return-nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.return-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.return-nav-links {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  flex: 1;
}

.return-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.return-nav-links a:hover,
.return-nav-links a.active {
  background: var(--color-accent-very-light);
  color: var(--color-accent);
  border-color: var(--color-accent-light);
}

.return-nav-cta {
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ===== CONTENT ===== */
.return-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ===== RETURN CARD ===== */
.return-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: var(--color-shadow-sm);
}

.return-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--color-shadow-md);
  transform: translateY(-2px);
}

.return-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.return-card-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(43, 122, 75, 0.25);
}

.return-card-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.return-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.return-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.return-card-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.return-card-body p:last-child {
  margin-bottom: 0;
}

/* ===== CONTACT ENHANCED ===== */
.return-contact-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.return-contact-enhanced:hover {
  border-color: var(--color-accent-light);
}

.return-contact-enhanced-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-accent);
}

.return-contact-enhanced-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.return-contact-enhanced-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.return-contact-enhanced-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.return-contact-enhanced-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  flex: 1;
}

.return-contact-enhanced-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--color-shadow-md);
  background: var(--color-surface);
}

.return-contact-enhanced-item .contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.return-contact-enhanced-item:first-child .contact-item-icon {
  background: #e8f5e9;
  color: #25d366;
}

.return-contact-enhanced-item:nth-child(2) .contact-item-icon {
  background: #e3f2fd;
  color: #0088cc;
}

.return-contact-enhanced-item:last-child .contact-item-icon {
  background: #fce4ec;
  color: #ea4335;
}

.return-contact-enhanced-item .contact-item-arrow {
  font-size: 0.8rem;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.return-contact-enhanced-item:hover .contact-item-arrow {
  transform: translateX(-4px);
  color: var(--color-accent);
}

/* ===== AGREEMENT ENHANCED ===== */
.return-agreement-enhanced {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.return-agreement-enhanced.valid {
  border-color: var(--color-accent);
  background: var(--color-accent-very-light);
}

.return-agreement-enhanced-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.return-agreement-enhanced-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.return-agreement-enhanced-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.return-agreement-enhanced-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.return-agreement-enhanced-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.return-agreement-enhanced-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 200px;
}

.return-agreement-enhanced-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.return-agreement-enhanced-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}

.return-agreement-enhanced-checkbox label strong {
  color: var(--color-accent);
}

.return-agree-btn {
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.return-agree-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.return-agree-btn:hover:not(:disabled) .btn-arrow {
  transform: translateX(-4px);
}

.return-agree-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .return-hero {
    padding: 2rem 1.5rem;
  }

  .return-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }
}

@media (max-width: 768px) {
  .return-page {
    padding: 1rem 0 3rem;
  }

  .return-hero {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  .return-hero-meta {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .return-hero-meta-item {
    font-size: 0.7rem;
  }

  .return-nav {
    position: static;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .return-nav-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .return-nav-links {
    justify-content: center;
  }

  .return-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .return-card-header {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .return-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .return-card-title {
    font-size: 0.95rem;
  }

  .return-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }

  .return-card-body p {
    font-size: 0.9rem;
  }

  .return-contact-enhanced {
    padding: 1.5rem 1rem;
  }

  .return-contact-enhanced-methods {
    flex-direction: column;
  }

  .return-contact-enhanced-item {
    min-width: unset;
  }

  .return-agreement-enhanced {
    padding: 1.2rem;
  }

  .return-agreement-enhanced-content {
    flex-direction: column;
    text-align: center;
  }

  .return-agreement-enhanced-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .return-agreement-enhanced-checkbox {
    min-width: unset;
  }

  .return-agree-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .return-hero-title {
    font-size: 1.6rem;
  }

  .return-hero-desc {
    font-size: 0.9rem;
  }

  .return-hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }

  .return-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
  }

  .return-card-number {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .return-card-title {
    font-size: 0.85rem;
  }

  .return-card-body {
    padding: 0.8rem 1rem 1rem;
  }

  .return-card-body p {
    font-size: 0.82rem;
  }

  .contact-item-desc {
    display: none;
  }
}

/* ===== ACCESSIBILITY ===== */
.return-agreement-enhanced-checkbox input:focus-visible,
.return-agree-btn:focus-visible,
.return-nav-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .return-card,
  .return-contact-enhanced-item,
  .return-agreement-enhanced,
  .return-agree-btn .btn-arrow,
  .contact-item-arrow {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
