/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /* Salasah Brand Colors */
  --salasah-green: #0b483e;
  --salasah-green-light: rgba(11, 72, 62, 0.1);
  --salasah-green-dark: #083329;
  --salasah-accent: #10a085;
  --salasah-accent-light: rgba(16, 160, 133, 0.1);

  /* Neutral Colors */
  --white-color: #FFFFFF;
  --light-color: #F8FFFE;
  --light-color-alt: #F4F9F8;
  --gray-light: #F5F7FA;
  --gray-medium: #8B9BB5;
  --gray-dark: #4A5568;
  --dark-color: #2D3748;
  --black-color: #1A202C;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--salasah-green) 0%, var(--salasah-accent) 100%);
  --gradient-light: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(11, 72, 62, 0.9) 0%, rgba(16, 160, 133, 0.8) 100%);

  /*========== Font and Typography ==========*/
  --body-font: 'Inter', sans-serif;
  --title-font: 'Poppins', sans-serif;
  --arabic-font: 'Noto Sans Arabic', sans-serif;

  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.75rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: .875rem;
  --smaller-font-size: .813rem;

  /*========== Font Weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Spacing ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--white-color);
  color: var(--dark-color);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: var(--dark-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
  line-height: 1.3;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

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

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--dark-color);
  text-align: center;
  margin-bottom: var(--mb-0-75);
  font-weight: var(--font-bold);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--gray-medium);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-regular);
}

.section__header {
  margin-bottom: var(--mb-3);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--salasah-green);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--salasah-green);
  font-size: var(--normal-font-size);
}

.button:hover {
  background-color: var(--salasah-green-dark);
  border-color: var(--salasah-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 72, 62, 0.3);
}

.button-primary {
  background: var(--gradient-primary);
  border: 2px solid transparent;
}

.button-primary:hover {
  background: var(--salasah-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 72, 62, 0.4);
}

.button-outline {
  background-color: transparent;
  color: var(--salasah-green);
  border: 2px solid var(--salasah-green);
}

.button-outline:hover {
  background-color: var(--salasah-green);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 72, 62, 0.3);
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(11, 72, 62, 0.1);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--salasah-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.diagonal-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.diagonal-lines span {
  width: 16px;
  height: 2px;
  background-color: var(--white-color);
  transform: rotate(15deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-arabic {
  font-family: var(--arabic-font);
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  color: var(--salasah-green);
}

.logo-english {
  font-size: 0.875rem;
  font-weight: var(--font-medium);
  color: var(--gray-medium);
}

.nav__menu {
  position: relative;
}

.nav__list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.nav__link {
  color: var(--dark-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--salasah-green);
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--salasah-green);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.active-link::after {
  width: 100%;
}

.active-link {
  color: var(--salasah-green);
}

.nav__toggle,
.nav__close {
  display: none;
}

/*=============== HOME ===============*/
.home {
  background: var(--gradient-light);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

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

.home__content {
  order: 1;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__description {
  margin-bottom: var(--mb-2-5);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

.arabic-text {
  display: block;
  font-family: var(--arabic-font);
  font-size: 1rem;
  color: var(--salasah-green);
  margin-top: 0.5rem;
  font-weight: var(--font-medium);
}

.home__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: var(--mb-3);
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--salasah-green);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray-dark);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

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

.home__image {
  order: 2;
  display: flex;
  justify-content: center;
}

.home__img-bg {
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* ERP Visualization */
.erp-visualization {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(11, 72, 62, 0.3);
  z-index: 2;
}

.hub-icon {
  font-size: 2.5rem;
  color: var(--white-color);
}

.module {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--salasah-accent-light);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.module:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.module i {
  font-size: 1.5rem;
  color: var(--salasah-green);
  margin-bottom: 0.25rem;
}

.module span {
  font-size: 0.7rem;
  font-weight: var(--font-medium);
  color: var(--gray-dark);
  text-align: center;
}

.finance {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.hr {
  top: 30%;
  right: 10%;
  animation-delay: 1.5s;
}

.supply {
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

.crm {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4.5s;
}

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

/*=============== ABOUT ===============*/
.about {
  padding: 5rem 0;
  background-color: var(--light-color-alt);
}

.about__container {
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.about__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  color: var(--salasah-green);
}

.about__description {
  margin-bottom: var(--mb-2-5);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-dark);
}

.about__values {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--salasah-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--salasah-green);
}

.value-content h4 {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--salasah-green);
}

.value-content p {
  color: var(--gray-dark);
  font-size: var(--small-font-size);
}

.about__mission {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-card {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(11, 72, 62, 0.3);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.mission-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.mission-card h4 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.mission-card p {
  line-height: 1.6;
  opacity: 0.9;
}

/*=============== WHY CHOOSE SALASAH ===============*/
.why-choose {
  padding: 5rem 0;
  background-color: var(--white-color);
}

.why-choose__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.choose-item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--light-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--salasah-accent-light);
}

.choose-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
}

.choose-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.choose-item h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--salasah-green);
}

.choose-item p {
  color: var(--gray-dark);
  line-height: 1.6;
}

/*=============== PRODUCTS ===============*/
.products {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-color-alt) 0%, var(--white-color) 100%);
}

.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.product-card {
  background-color: var(--white-color);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--salasah-accent-light);
}

.product-header {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.product-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.product-icon i {
  font-size: 2.5rem;
  color: var(--white-color);
}

.product-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.product-price {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--white-color);
}

.product-content {
  padding: 2rem;
}

.product-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: var(--mb-2);
}

.product-features {
  margin-bottom: var(--mb-2);
}

.product-features h4 {
  font-size: 1.1rem;
  color: var(--salasah-green);
  margin-bottom: var(--mb-1);
}

.product-features ul {
  list-style: none;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.product-features li i {
  color: var(--salasah-green);
  font-size: 0.875rem;
}

.product-target,
.product-timeline {
  margin-bottom: var(--mb-1);
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: 0.5rem;
  color: var(--gray-dark);
}

.product-timeline i {
  color: var(--salasah-green);
  margin-right: 0.5rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: var(--mb-2);
}

.product-actions .button {
  flex: 1;
  justify-content: center;
}

/*=============== SERVICES ===============*/
.services {
  padding: 5rem 0;
  background-color: var(--white-color);
}

.services__container {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background-color: var(--light-color);
  border-radius: 1rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--salasah-accent-light);
  background-color: var(--white-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1-5);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--white-color);
}

.service-card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--salasah-green);
}

.service-card p {
  color: var(--gray-dark);
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--salasah-green);
  font-weight: var(--font-bold);
}

/*=============== SUCCESS STORIES ===============*/
.success-stories {
  padding: 5rem 0;
  background: var(--gradient-light);
}

.stories__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--salasah-green);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.story-industry {
  display: inline-block;
  background: var(--salasah-accent-light);
  color: var(--salasah-green);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.story-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--mb-1);
  color: var(--salasah-green);
}

.story-card p {
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
  font-style: italic;
}

.story-author strong {
  color: var(--salasah-green);
  display: block;
  margin-bottom: 0.25rem;
}

.story-author span {
  color: var(--gray-medium);
  font-size: var(--small-font-size);
}

.industries-served {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.industries-served h3 {
  font-size: var(--h2-font-size);
  color: var(--salasah-green);
  margin-bottom: var(--mb-2);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: scale(1.05);
}

.industry-item i {
  font-size: 2rem;
  color: var(--salasah-green);
  margin-bottom: 0.5rem;
}

.industry-item span {
  font-weight: var(--font-medium);
  color: var(--gray-dark);
}

/*=============== CONTACT ===============*/
.contact {
  padding: 5rem 0;
  background-color: var(--light-color-alt);
}

.contact__container {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info h3 {
  font-size: var(--h2-font-size);
  color: var(--salasah-green);
  margin-bottom: var(--mb-1);
}

.contact__info p {
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: var(--mb-2-5);
}

.contact__details {
  display: grid;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.contact__item i {
  font-size: 1.5rem;
  color: var(--salasah-green);
  margin-top: 0.25rem;
}

.contact__item h4 {
  color: var(--salasah-green);
  margin-bottom: 0.5rem;
}

.contact__item p {
  color: var(--gray-dark);
  margin: 0;
}

.contact__form {
  background-color: var(--white-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form__group {
  margin-bottom: var(--mb-1-5);
}

.form__group label {
  display: block;
  color: var(--gray-dark);
  font-weight: var(--font-medium);
  margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: border-color 0.3s ease;
  background-color: var(--white-color);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--salasah-green);
  box-shadow: 0 0 0 3px var(--salasah-green-light);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--mb-1);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--salasah-green-dark);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__content {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--mb-1);
}

.footer__logo .logo-icon {
  background-color: var(--white-color);
}

.footer__logo .diagonal-lines span {
  background-color: var(--salasah-green);
}

.footer__logo .logo-arabic {
  color: var(--white-color);
}

.footer__logo .logo-english {
  color: rgba(255, 255, 255, 0.8);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__links h3 {
  color: var(--white-color);
  margin-bottom: var(--mb-1);
}

.footer__links ul {
  display: grid;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer__contact h3 {
  color: var(--white-color);
  margin-bottom: var(--mb-1);
}

.footer__contact-info {
  display: grid;
  gap: 0.75rem;
}

.footer__contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-info i {
  color: var(--salasah-accent);
  width: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--mb-1-5);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--small-font-size);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--salasah-green);
  opacity: .8;
  padding: 0 .3rem;
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: all .4s;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollup:hover {
  background-color: var(--salasah-green-dark);
  opacity: 1;
  transform: translateY(-3px);
}

.scrollup__icon {
  font-size: 1.2rem;
  color: var(--white-color);
}

/* Show scroll */
.show-scroll {
  bottom: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--salasah-green);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--salasah-green-dark);
}