/*Variables – Edit here to easily change colors and fonts*/
:root {
  --primary: #1b4ea8;
  --primary-mid: #2358c0;
  --accent: #8dc63f;
  --accent-light: #a8d855;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --light-border: #e0e6ef;
  --text-dark: #1a2535;
  --text-mid: #3d5270;
  --text-light: #7a90ab;
  --font-main: "Tajawal", sans-serif;
  --font-serif: "Amiri", serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(26, 58, 92, 0.12);
  --transition: 0.3s ease;

  /* Main texts – edit here only */
  --site-name: "مكتب خبراء الوساطة";
  --site-tagline: "أفضل عمالة منزلية بأعلى معايير الجودة";
  --phone: "0112700751";
  --whatsapp: "0559699631";
  --email: "alammajb@hotmail.com";
  --address: "الرياض، المملكة العربية السعودية";
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1100;
}

/*  Top notification bar */
.topbar {
  background: var(--primary);
  color: #ccdaec;
  font-size: 0.77rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 1100;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.topbar a {
  color: var(--accent-light);
  margin-inline-start: 0.4rem;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 0.35rem;
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

/*  Navigation bar*/
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
  z-index: 1000;
  position: relative;
  box-shadow: 0 2px 16px rgba(26, 58, 92, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo .logo-icon {
  width: 48px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.7rem;
}

.nav-logo .logo-text {
  line-height: 1.8;
}

.nav-logo .logo-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 800;
}

.nav-logo .logo-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 50%;
  left: 50%;
  transform: translateX(50%);
  height: 2px;
  width: 24px;
  margin-inline-start: -12px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg,
      var(--accent) 0%,
      var(--accent-light) 100%);
  color: var(--primary) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 60%,
      #16527a 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero h1 em {
  color: var(--accent-light);
  font-style: normal;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg,
      var(--accent) 0%,
      var(--accent-light) 100%);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

/*Hero Stats Card*/
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.13);
}

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.stat-card .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
}

/* Wave below the hero */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* Recruitment steps */
.steps {
  padding: 5rem 0;
  background: var(--light-bg);
}

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

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

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--accent);
}

.step-num {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--accent-light);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(26, 58, 92, 0.3);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e8eef7 100%);
  border-radius: 16px;
  margin: 0.8rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Countries of recruitment*/
.countries {
  padding: 5rem 0;
  background: var(--white);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
}

.country-card {
  background: var(--light-bg);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(141, 198, 63, 0.15),
      transparent 60%);
  transform: scale(0);
  transition: var(--transition);
}

.country-card:hover::before {
  transform: scale(1);
}

.country-card:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.country-flag {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
}

.country-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.country-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* Services */
.services {
  padding: 5rem 0;
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-inline-start: 4px solid transparent;
}

.service-card:hover {
  transform: translateX(-4px);
  border-inline-start-color: var(--accent);
  box-shadow: 0 16px 40px rgba(26, 58, 92, 0.14);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/*المتطلبات*/
.steps_req {
  padding: 6rem 0;
  background: #f7f9fc;
}

.accordion {
  max-width: 100%;
  margin: auto;
}

.acc-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* HEADER */
.acc-header {
  width: 100%;
  padding: 1.2rem 1rem;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1a3a5c;
  font-size: 1rem;
  justify-content: space-between;
}

.acc-header .num {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.acc-header .icon {
  transition: 0.3s;
}

/* BODY */
.acc-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: all 0.4s ease;
  opacity: 0;
}

.acc-body p {
  color: #6b7a90;
  line-height: 1.7;
  margin-top: 1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin-top: 1rem;
  background: #eef3f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0fe60f;
  font-size: 1.4rem;
}

/* ACTIVE */
.acc-item.active .acc-body {
  max-height: 500px;
  padding-bottom: 1.2rem;
  opacity: 1;
}

.acc-item.active .icon {
  transform: rotate(180deg);
}

.btn button {
  margin-top: 1rem;
  padding: 10px 16px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

/*end*/

/*Our Advantages / Why Us */
.why {
  padding: 5rem 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.05);
}

.why-visual h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-light);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-point {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.why-point .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.85rem;
}

.why-point p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.why-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--accent);
  background: var(--white);
}

.why-item .wi-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.83rem;
  color: var(--text-light);
}

/*  Contact Department / CTA */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

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

.btn-phone {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-phone:hover {
  background: rgba(255, 255, 255, 0.1);
}

/*  Contact Form */
.contact {
  padding: 5rem 0;
  background: var(--light-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.info-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.info-item .ii-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}

.info-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* Model */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--light-border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-mid) 100%);
  color: var(--white);
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary);
}

.form-success i {
  font-size: 3rem;
  color: #2ecc71;
  margin-bottom: 1rem;
  display: block;
}

/* footer*/
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .fb-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.fb-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.fb-logo strong {
  color: var(--white);
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col .footerServices li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover {
  color: var(--accent-light);
  padding-inline-start: 0.4rem;
}

.footer-col ul li a i {
  font-size: 0.65rem;
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

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

/*  Back to top button*/
.back-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--accent);
  color: var(--primary);
}

/*  Public Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/*  In response to small screens */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-border);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .navbar .container {
    position: relative;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero-btns {
    flex-direction: column;
  }
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366;
}

/* Call */
.call-btn {
  background: var(--primary);
}

/* Hover effect */
.floating-contact a:hover {
  transform: scale(1.1);
}