/* ============================================
   RIYADH HR – Premium Landing Page CSS
   ============================================ */

:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;

  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --shadow-green: 0 8px 32px rgba(5, 150, 105, 0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Cairo", "Tajawal", sans-serif;
  background: var(--white);
  color: var(--dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

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

.logo-img {
  height: 80px;
  width: auto;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}
.logo-sub {
  font-size: 11px;
  color: #ffffff;
}
.navbar.scrolled .logo-main {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.navbar.scrolled .nav-links a:hover {
  background: var(--green-50);
  color: var(--green-600);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--green-700) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-cta {
  background: var(--green-600) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
  background: var(--dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 50%,
    var(--green-600) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 20%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeDown 0.9s ease both 0.1s;
}

.hero-title span {
  color: var(--green-400);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  animation: fadeDown 1s ease both 0.2s;
}

.hero-subtitle-en {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  animation: fadeDown 1s ease both 0.25s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1.1s ease both 0.35s;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--green-700);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.btn-primary.full {
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
}
.btn-primary.full:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 0;
  overflow-x: auto;
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 32px;
  gap: 4px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-400);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin: 12px 0;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--gray-500);
  font-size: 16px;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--gray-100);
  text-align: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: right;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--green-500);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.about-card.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 12px;
}

.about-card h3 span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 400;
}

.about-card p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--white);
  text-align: center;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: right;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.service-card.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-50), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
}

.service-card h3 small {
  display: block;
  font-size: 12px;
  color: var(--green-600);
  font-weight: 600;
  margin-top: 4px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 14px;
  position: relative;
}

/* ===== SECTORS ===== */
.sectors-section {
  background: var(--gray-100);
  text-align: center;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.sector-card.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.sector-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.sector-img-wrap {
  height: 180px;
  overflow: hidden;
}
.sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sector-card:hover .sector-img-wrap img {
  transform: scale(1.07);
}

.sector-body {
  padding: 24px;
  text-align: right;
}

.sector-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.sector-en {
  font-size: 12px;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 10px;
}

.sector-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== VISION ===== */
.vision-section {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 100%
  );
  text-align: right;
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vision-section .section-title {
  margin-bottom: 12px;
}
.vision-section .section-desc {
  margin: 0 0 32px;
  text-align: right;
}

.vision-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vision-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.vision-list li div strong {
  color: var(--white);
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}
.vision-list li div p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.vision-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.vision-stat {
  display: flex;
  flex-direction: column;
}
.vision-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-400);
}
.vision-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vision-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== WHY ===== */
.why-section {
  background: var(--white);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: right;
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  background: var(--green-50);
  transform: translateY(-4px);
}

.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 12px;
}

.why-card:hover .why-num {
  color: var(--green-300);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card h3 small {
  display: block;
  font-size: 12px;
  color: var(--green-600);
  font-weight: 600;
  margin-top: 4px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.value-item {
  text-align: center;
  color: var(--white);
}
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-item h4 small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 2px;
}
.value-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ORG STRUCTURE ===== */
.org-section {
  background: var(--gray-100);
  text-align: center;
}

.org-tree {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.org-connector {
  width: 3px;
  height: 32px;
  background: var(--green-500);
}

.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.org-badge {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-green);
}

.org-badge.sm {
  padding: 10px 20px;
  font-size: 13px;
}

.org-badge-en {
  font-size: 12px;
  color: var(--gray-500);
}
.org-badge-en.sm {
  font-size: 11px;
}

.org-branches {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-top: 12px;
  border-top: 3px solid var(--green-500);
  margin-top: 0;
  position: relative;
}

.org-branches::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--green-500);
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}

.quote-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.5;
}

.quote-text span {
  font-weight: 900;
  color: var(--green-400);
}

.quote-en {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--gray-100);
  text-align: center;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  text-align: right;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 1.6rem;
}
.contact-card strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 13px;
  color: var(--gray-500);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
  direction: rtl;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-main {
  color: var(--white);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vision-inner {
    grid-template-columns: 1fr;
  }
  .vision-image {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    height: 64px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-300);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--dark) !important;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .nav-links a:hover {
    background: var(--green-50) !important;
    color: var(--green-600) !important;
  }
  .nav-cta {
    background: var(--green-600) !important;
    color: var(--white) !important;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .stats-inner {
    justify-content: flex-start;
  }
  .stat-item {
    padding: 20px 20px;
  }
  .stat-num {
    font-size: 1.5rem;
  }

  .section {
    padding: 64px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .org-branches {
    gap: 10px;
  }
  .org-badge {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 240px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-divider {
    display: none;
  }
  .stats-inner {
    flex-wrap: wrap;
  }
  .stat-item {
    padding: 16px 16px;
    flex: 1 1 calc(33% - 16px);
  }
  .vision-stats {
    gap: 16px;
  }
  .value-strip {
    padding: 32px 24px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #20b358;
}
