/*==================================================
    MiGaRa Care Website
    Version : 1.0
    Author  : ChatGPT
==================================================*/

/*==================================================
                    GOOGLE FONTS

Headings : Poppins
Body     : Inter

==================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

/*==================================================
                    CSS VARIABLES
==================================================*/

:root {
  /* Brand Colors */

  --primary: #b88a1b;
  --primary-dark: #9d7415;
  --primary-light: #efd9a1;

  /* Secondary */

  --secondary: #081f3d;
  --secondary-light: #12345d;

  /* Text */

  --heading: #1a2233;
  --text: #555555;

  /* Background */

  --white: #ffffff;
  --light: #fcfaf6;
  --light-gray: #f6f7fa;

  /* Border */

  --border: #e8e8e8;

  /* Status */

  --success: #34a853;
  --danger: #ea4335;

  /* Shadow */

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  /* Radius */

  --radius-sm: 8px;

  --radius-md: 14px;

  --radius-lg: 24px;

  --radius-round: 50px;

  /* Transition */

  --transition: 0.35s ease;
}

/*==================================================
                    RESET
==================================================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  font-size: 16px;

  color: var(--text);

  background: var(--white);

  line-height: 1.7;

  overflow-x: hidden;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;

  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;

  outline: none;

  cursor: pointer;

  font-family: inherit;
}

input,
textarea,
select {
  outline: none;

  font-family: inherit;
}

/*==================================================
                TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;

  color: var(--heading);

  line-height: 1.2;

  font-weight: 700;
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 18px;
}

/*==================================================
                    CONTAINER
==================================================*/

.container {
  width: 100%;

  max-width: 1320px;

  margin: auto;

  padding: 0 20px;
}

/*==================================================
                    SECTION
==================================================*/

section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;

  color: var(--primary);

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 12px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;

  margin: auto;
}

/*==================================================
                    BUTTONS
==================================================*/

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 16px 34px;

  border-radius: var(--radius-round);

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);

  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);

  color: var(--primary);

  background: #fff;
}

.btn-outline:hover {
  background: var(--primary);

  color: #fff;
}

/*==================================================
                    CARD
==================================================*/

.card {
  background: #fff;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-md);
}

/*==================================================
                HELPER CLASSES
==================================================*/

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.bg-primary {
  background: var(--primary);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-light {
  background: var(--light);
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 20px;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  h1 {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .btn {
    width: 100%;
  }
}

/* ============================================================
   MAKE A REFERRAL - HEADER CTA
============================================================ */

.header-referral-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  min-height: 44px;

  padding: 11px 19px;

  margin-left: 2px;

  background: var(--primary);

  color: #ffffff;

  border: 2px solid var(--primary);

  border-radius: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 700;

  line-height: 1;

  white-space: nowrap;

  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-referral-btn i {
  font-size: 11px;

  transition: transform 0.25s ease;
}

.header-referral-btn:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  color: #ffffff;

  transform: translateY(-1px);

  box-shadow: 0 7px 18px rgba(184, 138, 27, 0.2);
}

.header-referral-btn:hover i {
  transform: translate(2px, -2px);
}

.header-referral-btn:focus-visible {
  outline: 3px solid rgba(184, 138, 27, 0.3);

  outline-offset: 3px;
}

/* ============================================================
   HEADER CTA - TABLET
============================================================ */

@media (max-width: 1100px) {
  .header-referral-btn {
    min-height: 44px;
    padding: 11px 17px;

    font-size: 13px;
  }
}

/* ============================================================
   HEADER CTA - MOBILE
============================================================ */

@media (max-width: 900px) {
  .header-referral-btn {
    display: none;
  }
}

/* ============================================================
   MOBILE MAKE A REFERRAL BUTTON
============================================================ */

.mobile-referral-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  width: 100%;

  margin-top: 20px;

  padding: 13px 20px;

  background: var(--primary);

  color: #ffffff !important;

  border: 2px solid var(--primary);

  border-radius: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 14px;

  font-weight: 700;

  text-align: center;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.mobile-referral-btn:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  transform: translateY(-1px);
}

/*==================================================
                TOP CONTACT BAR
==================================================*/

.top-contact-bar {
  background: linear-gradient(90deg, #a87a17 0%, #b88a1b 50%, #c99a2c 100%);

  color: #ffffff;

  height: 42px;

  display: flex;

  align-items: center;

  font-size: 14px;
}

.top-contact-wrapper {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/*========================
        LEFT
========================*/

.top-contact-left {
  display: flex;

  align-items: center;

  gap: 28px;
}

.top-contact-left a {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #ffffff;

  font-size: 14px;

  font-weight: 500;
}

.top-contact-left a:hover {
  color: #efd9a1;
}

.top-contact-left i {
  color: #efd9a1;

  font-size: 13px;
}

/*========================
        RIGHT
========================*/

.top-contact-right {
  display: flex;

  align-items: center;

  gap: 10px;
}

.top-contact-right a {
  width: 30px;

  height: 30px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #ffffff;

  color: #071c38;

  font-size: 13px;

  transition: var(--transition);
}

.top-contact-right a:hover {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-3px);
}

/*========================
        RESPONSIVE
========================*/

@media (max-width: 992px) {
  .top-contact-bar {
    display: none;
  }
}
/*=========================================
        TOP ANNOUNCEMENT BAR
==========================================*/

.top-announcement-bar {
  background: #101010;

  color: #ffffff;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 4px;
  text-transform: uppercase;
}

.top-announcement-bar p {
  margin: 0;
}
/*==================================================
            CONTACT INFO BAR
==================================================*/

.contact-info-bar {
  background: linear-gradient(90deg, #a97b18 0%, #b88a1b 50%, #c89b2c 100%);

  padding: 16px 0;
}

.contact-info-wrapper {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  flex-wrap: wrap;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 15px;
}

.contact-icon {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 18px;
}

.contact-text small {
  display: block;

  color: rgba(255, 255, 255, 0.85);

  font-size: 12px;

  margin-bottom: 4px;
}

.contact-text h6 {
  color: #fff;

  margin: 0;

  font-size: 16px;

  font-weight: 600;
}

.contact-text a {
  color: #fff;

  font-size: 16px;

  font-weight: 600;
}

.contact-text a:hover {
  opacity: 0.8;
}

.contact-social {
  display: flex;

  align-items: center;

  gap: 12px;
}

.contact-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  transition: var(--transition);
}

.contact-social a:hover {
  background: #fff;

  color: var(--primary);

  transform: translateY(-3px);
}

/*========================
        Responsive
========================*/

@media (max-width: 992px) {
  .contact-info-wrapper {
    justify-content: center;

    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-info-bar {
    display: none;
  }
}
/*==================================================
                MAIN HEADER
==================================================*/

.main-header {
  position: relative;
  z-index: 999;

  width: 100%;

  background: var(--white);

  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.main-header.sticky {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-wrapper {
  display: flex;

  align-items: center;

  min-height: 82px;

  gap: 30px;
}

/*=========================
        LOGO
==========================*/

.logo {
  display: flex;

  align-items: center;

  flex-shrink: 0;
}

.logo img {
  display: block;

  width: auto;

  height: 72px;

  max-height: 72px;
}

/*=========================
        NAVIGATION
==========================*/

.navbar {
  margin-left: auto;
}

.nav-menu {
  display: flex;

  align-items: center;

  gap: 28px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;

  align-items: center;

  gap: 6px;

  padding: 28px 0;

  color: var(--heading);

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1;

  white-space: nowrap;

  transition: color 0.25s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
}

.nav-menu > li > a i {
  font-size: 10px;

  transition: transform 0.25s ease;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

/*=========================
        DROPDOWN
==========================*/

.dropdown-menu {
  position: absolute;

  top: calc(100% - 2px);

  left: 0;

  width: 300px;

  padding: 8px 0;

  background: #ffffff;

  border: 1px solid #eeeeee;

  border-radius: 10px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  overflow: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  width: 100%;

  padding: 13px 18px;

  color: var(--heading);

  font-size: 14px;

  font-weight: 500;

  line-height: 1.4;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #fffaf0;

  color: var(--primary);

  padding-left: 22px;
}

/*=========================
        CTA BUTTON
==========================*/

.header-wrapper .btn {
  margin-left: 35px;
}

/*=========================
        MOBILE MENU
==========================*/

.menu-toggle {
  display: none;

  align-items: center;

  justify-content: center;

  width: 44px;

  height: 44px;

  flex-shrink: 0;

  border-radius: 8px;

  background: var(--primary);

  color: #ffffff;

  font-size: 19px;

  cursor: pointer;
}

/*==================================================
                    MENU BADGE
==================================================*/

.menu-badge {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  padding: 3px 7px;

  background: var(--primary);

  color: #ffffff;

  border-radius: 20px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.5px;

  line-height: 1;
}

/*=========================
        RESPONSIVE
==========================*/

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #fff;

    max-height: 0;

    overflow: hidden;

    transition: 0.35s;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    max-height: 900px;
  }

  .nav-menu {
    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 20px;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-menu li a {
    width: 100%;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;

    width: 100%;

    opacity: 1;

    visibility: visible;

    display: none;

    box-shadow: none;

    border-radius: 0;

    margin-top: 8px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .header-wrapper .btn {
    display: none;
  }

  .hero-content p {
    color: #000000;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    min-height: 80px;
  }

  .logo img {
    max-height: 60px;
  }
}
/*=========================================
            HERO SECTION
=========================================*/

/*==================================
            HERO
===================================*/

.hero {
  position: relative;

  width: 100%;

  min-height: 860px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background-image: url("../images/hero-caregiver.png");

  background-size: cover;

  background-repeat: no-repeat;
  background-position: right center;
}
.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(255, 248, 235, 0.92) 0%,
      rgba(255, 248, 235, 0.72) 30%,
      rgba(255, 248, 235, 0.28) 55%,
      rgba(255, 248, 235, 0) 80%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.55) 25%,
      rgba(255, 255, 255, 0.18) 55%,
      rgba(255, 255, 255, 0) 100%
    );
}
.hero-overlay::before {
  content: "";

  position: absolute;

  width: 900px;

  height: 900px;

  left: -350px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.14) 0%,

    rgba(198, 146, 20, 0.05) 48%,

    transparent 75%
  );
}
.hero-overlay::after {
  content: "";

  position: absolute;

  left: -220px;

  bottom: -180px;

  width: 900px;

  height: 420px;

  border-radius: 50%;

  border: 2px solid rgba(198, 146, 20, 0.08);

  transform: rotate(-10deg);
}
.hero .container {
  position: relative;

  z-index: 10;
}
.hero::before {
  content: "";

  position: absolute;

  right: -220px;

  top: -120px;

  width: 700px;

  height: 700px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.12),
    transparent 70%
  );
}

.hero::before {
  content: "";

  position: absolute;

  right: -220px;

  top: -120px;

  width: 700px;

  height: 700px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.12),
    transparent 70%
  );
}
.hero-content span {
  color: var(--primary-dark);
}
@media (max-width: 768px) {
  .hero-content h1 {
    -webkit-text-stroke: 1px #ffffff;
    text-shadow:
      0 1px 8px rgba(255, 255, 255, 0.75),
      0 0 18px rgba(255, 255, 255, 0.45);
  }
  .hero {
    background-position: 50% 65%;
    min-height: 720px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.68) 45%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }

  .hero-overlay::before,
  .hero-overlay::after {
    display: none;
  }

  .hero-title {
    -webkit-text-stroke: 1px #fff;

    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.7);
  }
  .hero-content span {
    color: #000000;
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: 650px;

    background-position: 72% center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.62) 28%,
      rgba(255, 255, 255, 0.3) 52%,
      rgba(255, 255, 255, 0.08) 72%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .hero-content h1 {
    -webkit-text-stroke: 1px #ffffff;
    text-shadow:
      0 1px 8px rgba(255, 255, 255, 0.75),
      0 0 18px rgba(255, 255, 255, 0.45);
  }
  .hero-content {
    max-width: 100%;

    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 560px;

    background-position: 78% center;
  }
}
/*=========================================
            HERO
=========================================*/

.hero-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 50px;

  min-height: 720px;
}

/*=========================================
            LEFT SIDE
=========================================*/

.hero-content {
  max-width: 620px;

  padding: 100px 0;
}
.hero-content.show {
  opacity: 1;

  transform: translateX(0);
}
@keyframes heroImage {
  from {
    opacity: 0;

    transform: translateX(40px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

/*=========================================
            RIGHT SIDE
=========================================*/

/*=========================================
            HERO IMAGE
=========================================*/

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}

.hero-artwork {
  width: 950px;

  max-width: none;

  animation: heroImage 0.9s ease forwards;
}

.hero-artwork img {
  display: block;

  width: 100%;

  height: auto;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .hero {
    padding: 70px 0 100px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;

    justify-content: center;
  }

  .hero-artwork {
    max-width: 520px;
  }
}
/*=========================================
            HERO TAG
=========================================*/

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  background: var(--primary);
  border-radius: 40px;
  padding: 10px 18px 10px 10px;
}

.tag-dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: var(--primary);
}

.hero-tag p {
  font-size: 14px;

  font-weight: 600;

  letter-spacing: 2px;

  color: white;

  text-transform: uppercase;

  margin: 0;
}

/*=========================================
            HERO TITLE
=========================================*/

.hero-title {
  font-family: "Poppins", sans-serif;

  font-size: 76px;

  line-height: 1.08;

  font-weight: 800;

  color: var(--secondary);

  margin-bottom: 30px;
}

.hero-title span {
  color: var(--primary);
}

/*=========================================
            DESCRIPTION
=========================================*/

.hero-description {
  max-width: 560px;

  font-size: 18px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 40px;
}

/*=========================================
            BUTTONS
=========================================*/

.hero-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 190px;

  height: 58px;

  border-radius: 999px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition: 0.3s ease;
}

/* Primary Button */

.btn-primary {
  background: var(--primary);

  color: #fff;
}

.btn-primary:hover {
  background: #a57b16;

  transform: translateY(-3px);
}

/* Outline Button */

.btn-outline {
  border: 2px solid var(--primary);

  color: var(--primary);

  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);

  color: #fff;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .hero-title {
    font-size: 62px;
    /* White Stroke */
    -webkit-text-stroke: 1.5px #ffffff;

    /* Soft Glow */
    text-shadow:
      0 2px 8px rgba(255, 255, 255, 0.75),
      0 0 18px rgba(255, 255, 255, 0.45);
  }
  .hero {
    min-height: 720px;
  }
  .hero-title .gold {
    color: #c89b2c;

    -webkit-text-stroke: 1.5px #ffffff;

    text-shadow:
      0 2px 8px rgba(255, 255, 255, 0.75),
      0 0 18px rgba(255, 255, 255, 0.45);
  }
}
.hero-buttons .btn-primary {
  background: #b88a1b;

  color: #fff;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
  .hero-content {
    text-align: center;

    align-items: center;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;

    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;

    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;

    min-height: auto;

    gap: 50px;
  }

  .hero-content {
    max-width: 100%;

    text-align: center;

    align-items: center;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-artwork {
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .hero-artwork {
    max-width: 380px;
  }
}

@media (max-width: 576px) {
  .top-announcement-bar p {
    font-size: 8px;
  }
}

/* ===========================
   FEATURE SECTION
=========================== */

.feature-section {
  margin-top: -160px;
  position: relative;
  z-index: 20;
  margin-bottom: -100px;
}

.feature-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.feature-item {
  padding: 35px 30px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  border-right: 1px solid #ececec;

  transition: 0.35s;

  cursor: pointer;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: #fdf9f3;

  transform: translateY(-6px);
}

.feature-icon {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: #fff5e8;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  transition: 0.35s;
}

.feature-icon img {
  width: 30px;
}

.feature-item:hover .feature-icon {
  background: #d18b14;

  transform: rotate(8deg) scale(1.08);
}

.feature-item:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  font-size: 20px;
  color: #0e2242;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-content p {
  color: #6f7480;
  line-height: 1.7;
  font-size: 15px;
}
/* Tablet */

@media (max-width: 992px) {
  .feature-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-bottom: 1px solid #eee;
  }

  .feature-item:nth-child(2) {
    border-right: none;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    padding: 25px;
  }
}
.feature-item {
  opacity: 0;

  transform: translateY(50px);

  transition: 0.6s ease;
}

.feature-item.show {
  opacity: 1;

  transform: translateY(0);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #d18b14;
  transition: 0.3s;
}

.feature-item:hover .feature-icon svg {
  color: #fff;
}
/*=========================
        SERVICES
==========================*/

.services {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 50% 25%,
    rgba(198, 138, 16, 0.12) 0%,
    rgba(198, 138, 16, 0.06) 25%,
    transparent 65%
  );

  pointer-events: none;
  z-index: 0;
}

.sub-title {
  color: var(--primary);

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 58px;
  font-weight: 700; /* 900 → 700 */
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--secondary);
}

.section-title h2 span {
  color: var(--primary);
  font-weight: 700;
}

.section-title p {
  color: #6e7683;

  line-height: 1.8;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}
.service-card {
  position: relative;

  background: #fff;

  padding: 45px 30px;

  border-radius: 22px;

  box-shadow:
    0 8px 18px rgba(16, 35, 60, 0.04),
    0 35px 70px rgba(16, 35, 60, 0.05);

  border: 1px solid rgba(220, 220, 220, 0.55);

  transition: 0.35s;

  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 15px 35px rgba(16, 35, 60, 0.08),
    0 45px 90px rgba(16, 35, 60, 0.1);
}

.service-card h3::after {
  content: "";

  display: block;

  width: 42px;

  height: 3px;

  background: var(--primary);

  margin-top: 14px;

  border-radius: 20px;
}

.service-number {
  position: absolute;

  right: 20px;

  top: 20px;

  width: 46px;

  height: 46px;

  border-radius: 50%;

  background: #efd9a1;

  color: #183153;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;

  font-size: 15px;
}

.service-icon {
  width: 82px;
  height: 82px;

  border-radius: 50%;

  background: linear-gradient(262deg, #efd9a1, #efd9a1);

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 25px;

  transition: 0.35s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 25px rgba(184, 138, 27, 0.08);
}

.service-icon img {
  width: 38px;
}

.service-card:hover .service-icon {
  background: var(--primary);

  transform: rotate(8deg);
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: #c68a10;
}

.service-card:hover .service-icon svg {
  color: #ffffff;
}

.service-card h3 {
  font-size: 19px;

  color: var(--heading);

  margin-bottom: 18px;

  line-height: 1.3;
}

.service-card p {
  color: #6f7480;

  line-height: 1.8;

  margin-bottom: 30px;
  flex: 1;
}

.service-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: var(--primary);

  font-weight: 600;
  margin-top: 24px;
}

.service-link i {
  transition: 0.3s;
}

.service-card:hover .service-link i {
  transform: translateX(6px);
}
.services-btn {
  text-align: center;

  margin-top: 60px;
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  opacity: 1;

  transform: none;

  transition: 0.6s;
  display: flex;
  flex-direction: column;
}

.service-card.show {
  opacity: 1;

  transform: translateY(0);
}
/*======================================
    ABOUT
======================================*/

.about {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -300px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(198, 138, 16, 0.08),
    transparent 70%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  grid-template-columns: 50% 50%;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 108%;
  max-width: none;
  display: block;
  border-radius: 30px 120px 30px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(198, 138, 16, 0.18),
    transparent 70%
  );
  z-index: -1;
}

.about-badge {
  position: absolute;
  left: -20px;
  bottom: 30px;

  background: #fff;
  padding: 18px 26px;
  border-radius: 16px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-badge span {
  color: var(--primary);
  font-weight: 700;
}

.about-content h2 {
  margin: 18px 0 24px;
  max-width: 560px;
}
.about-content h2::after {
  content: "";

  display: block;

  width: 90px;

  height: 5px;

  border-radius: 20px;

  background: var(--secondary);

  margin-top: 22px;
}
.about-content h2 span {
  color: var(--secondary);
}

.about-content p {
  margin-bottom: 22px;
  line-height: 1.9;
  color: #667085;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin: 40px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.about-feature img {
  width: 20px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 50px;
  background: #fff8ea;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: "";

  width: 36px;

  height: 2px;

  background: var(--primary);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    max-width: 100%;
  }
}
/*===========================
SUPPORTED INDEPENDENT LIVING
===========================*/

.sil-section {
  background: #fff;
}

.sil-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  min-height: 520px;

  display: flex;

  align-items: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.sil-bg {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.sil-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(110, 72, 8, 0.88) 0%,
    rgba(110, 72, 8, 0.68) 35%,
    rgba(110, 72, 8, 0.2) 58%,
    transparent 78%
  );
}

.sil-content {
  position: relative;

  z-index: 5;

  max-width: 560px;

  padding: 70px;

  color: #fff;
}

.sil-subtitle {
  display: inline-block;

  margin-bottom: 20px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #ffd87c;

  text-transform: uppercase;
}

.sil-content h2 {
  font-size: 58px;

  line-height: 1.1;

  margin-bottom: 20px;

  color: #fff;
}

.sil-content h2 span {
  color: #fff;
}

.sil-content p {
  font-size: 18px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.92);

  margin-bottom: 35px;
}

.sil-features {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 40px;
}

.feature-pill {
  padding: 12px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  font-size: 15px;
}

.sil-content .btn {
  padding: 16px 34px;

  background: #fff;

  color: #a16a07;

  font-weight: 700;

  border-radius: 60px;

  transition: 0.35s;
}

.sil-content .btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Decorative Circle */

.sil-card::before {
  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  border-radius: 50%;

  border: 2px solid rgba(255, 216, 124, 0.25);

  right: -250px;

  top: -120px;
}

/* Decorative Dots */

.sil-card::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background-image: radial-gradient(
    rgba(255, 216, 124, 0.35) 1.5px,
    transparent 1.5px
  );

  background-size: 16px 16px;

  right: 35px;

  bottom: 30px;

  opacity: 0.45;
}

/*====================
Responsive
====================*/

@media (max-width: 991px) {
  .sil-card {
    min-height: auto;
  }

  .sil-content {
    padding: 45px 30px;

    max-width: 100%;
  }

  .sil-content h2 {
    font-size: 42px;
  }

  .sil-content p {
    font-size: 16px;
  }

  .sil-card::before,
  .sil-card::after {
    display: none;
  }
}
.sil-card {
  opacity: 1;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.sil-card.show {
  opacity: 1;

  transform: translateY(0);
}
.testimonials {
  background: #faf8f3;
  padding: 100px 0 140px;
}

.testimonial-slider {
  display: flex;

  align-items: center;

  margin-top: 60px;

  gap: 25px;
}

.testimonial-track {
  display: flex;

  gap: 30px;

  overflow: hidden;

  flex: 1;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);

  background: #fff;

  border-radius: 24px;

  padding: 35px;

  transition: 0.4s;

  opacity: 0.45;

  transform: scale(0.9);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
  opacity: 1;

  transform: scale(1);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #c69214;

  margin-bottom: 20px;

  font-size: 18px;
}

.testimonial-card p {
  line-height: 1.9;

  color: #555;

  margin-bottom: 30px;

  min-height: 130px;
}

.user {
  display: flex;

  align-items: center;

  gap: 15px;
}

.user img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;
}

.slider-btn {
  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  background: #fff;

  color: #c69214;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.slider-btn:hover {
  background: #c69214;

  color: #fff;
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);

    opacity: 1;

    transform: none;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    display: none;
  }
}
.cta-box {
  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.cta-box.show {
  opacity: 1;

  transform: translateY(0);
}
/*====================================
            FOOTER
====================================*/

.footer {
  background: #111111;

  color: #cfcfcf;

  padding: 90px 0 0;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

  gap: 60px;

  padding-bottom: 60px;
}

.footer-logo img {
  height: 150px;

  margin-bottom: 9px;
}

.footer-about p {
  text-align: justify;

  margin-bottom: 30px;

  color: #a9a9a9;
}

.footer h4 {
  color: #fff;

  font-size: 22px;

  margin-bottom: 25px;

  position: relative;
}

.footer h4::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 45px;

  height: 3px;

  background: #c89b2c;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 16px;
}

.footer a {
  color: #bfbfbf;

  transition: 0.3s;
}

.footer a:hover {
  color: #c89b2c;

  padding-left: 6px;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: #1d1d1d;

  color: #fff;

  font-size: 15px;

  transition: 0.35s;
}

.footer-social a:hover {
  background: #c89b2c;

  color: #fff;

  transform: translateY(-4px);
}

.footer-contact li {
  display: flex;

  align-items: flex-start;

  gap: 15px;
}

.footer-contact i {
  color: #c89b2c;

  margin-top: 4px;

  min-width: 18px;
}

.footer-contact span {
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 25px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: #8c8c8c;
}

.footer-bottom div {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-bottom a {
  color: #8c8c8c;
}

.footer-bottom a:hover {
  color: #c89b2c;

  padding-left: 0;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .footer h4::after {
    left: 50%;

    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/*=========================================
                CTA
=========================================*/

.cta {
  background: #ffffff;
  padding: 0 0 100px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.cta-wrapper {
  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 60px;

  padding: 70px;

  border-radius: 28px;

  background: linear-gradient(135deg, #b98318, #d4a430);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.cta-wrapper::before {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  right: -200px;

  top: -220px;

  background: rgba(255, 255, 255, 0.08);
}

.cta-left {
  display: flex;

  align-items: center;

  gap: 30px;

  z-index: 2;
}

.cta-icon {
  width: 95px;

  height: 95px;

  border-radius: 50%;

  background: #fff;

  color: #b98318;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 34px;
}

.cta-content span {
  color: #fff;

  letter-spacing: 3px;

  font-size: 13px;

  font-weight: 700;
}

.cta-content h2 {
  color: #fff;

  font-size: 46px;

  margin: 12px 0 18px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.92);

  max-width: 650px;

  line-height: 1.9;
}

.cta-buttons {
  display: flex;

  gap: 18px;

  z-index: 2;
}

.btn-white {
  background: #fff;

  color: #b98318;
}

.btn-dark {
  background: #111;

  color: #fff;
}

.cta-buttons .btn {
  padding: 12px 20px;

  border-radius: 60px;

  transition: 0.35s;
}

.cta-buttons .btn:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;

    text-align: center;

    padding: 50px 35px;
  }

  .cta-left {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cta-buttons {
    width: 100%;

    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;

    text-align: center;
  }
}
.mobile-menu {
  position: absolute;

  top: 100%;

  left: 0;

  width: 100%;

  display: none;

  padding: 24px 0 28px;

  background: #ffffff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  z-index: 998;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu > .container > ul {
  margin: 0;

  padding: 0;
}

.mobile-menu li {
  margin: 0;

  border-bottom: 1px solid #eeeeee;
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  padding: 13px 0;

  color: var(--heading);

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

.mobile-referral-btn {
  display: flex;

  justify-content: center;

  align-items: center;

  margin-top: 25px;

  padding: 16px;

  background: #c89b2c;

  color: #fff !important;

  border-radius: 50px;

  font-weight: 700;
}
/*==================================================
            MOBILE SERVICES SUBMENU
==================================================*/

.mobile-services-toggle {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  padding: 13px 0;

  background: transparent;

  color: var(--heading);

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 600;

  text-align: left;
}

.mobile-services-toggle i {
  font-size: 11px;

  transition: transform 0.25s ease;
}

.mobile-services-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-services-menu {
  display: none;

  padding: 4px 0 10px;
}

.mobile-services.active .mobile-services-menu {
  display: block;
}

.mobile-services-menu li {
  border: none;
}

.mobile-services-menu a {
  padding: 10px 15px;

  font-size: 14px;

  font-weight: 500;

  background: #fafafa;
}
