:root {
  --purple: #9601fd;
  --blue: #01b9ff;
  --green: #00ff01;

  --dark: #17121d;
  --text: #625c68;
  --light: #f8f7fb;
  --white: #ffffff;
}

.navbar-toggler:focus,
.navbar-toggler:hover,
.navbar-toggler {
  box-shadow: none;
  border: none;
}

* {
  scroll-behavior: smooth;
}

.text-blue {
  color: var(--blue);
}

.text-purple {
  color: var(--purple);
}

.text-green {
  color: var(--green);
}
.bg-blue {
  background: var(--blue);
}

.bg-purple {
  background: var(--purple);
}

.bg-green {
  background: var(--green);
}
.btn-white-custom {
  padding: 13px 30px;
  border: 0;
  border-radius: 50px;
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-white-custom:hover {
  transform: translateY(-5px) !important;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-title .small-title {
  color: var(--purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(35px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
           NAVBAR
        ========================== */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--purple) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 30%;
}

.brand-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 10px 25px rgba(150, 1, 253, 0.25);
}

.navbar-nav .nav-link {
  color: #39333f;
  font-weight: 600;
  padding: 10px 16px !important;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--purple);
}

.active-nav-link {
  color: var(--purple) !important;
  font-weight: 700;
}
.nav-btn {
  color: white !important;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 50px;
  padding: 12px 23px !important;
  box-shadow: 0 8px 20px rgba(1, 185, 255, 0.2);
}

/* =========================
           HERO
        ========================== */

.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(1, 185, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(circle at 10% 80%, rgba(150, 1, 253, 0.1), transparent 35%),
    #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 50px;
  background: rgba(150, 1, 253, 0.08);
  color: var(--purple);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 25px;
}

.hero-badge span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 25px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 35px;
}

.btn-primary-custom {
  border: 0;
  padding: 15px 28px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  box-shadow: 0 12px 30px rgba(150, 1, 253, 0.2);
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 17px 35px rgba(150, 1, 253, 0.3);
}

.btn-outline-custom {
  border: 2px solid #e8e3eb;
  color: var(--dark);
  padding: 13px 27px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-image-wrapper {
  position: relative;
  padding: 20px;
}

.hero-image {
  height: 570px;
  border-radius: 40px;
  background:
    linear-gradient(rgba(150, 1, 253, 0.12), rgba(1, 185, 255, 0.12)),
    url("/assets/img/homecare-1.jpg") center/cover;
  box-shadow: 0 35px 80px rgba(25, 20, 35, 0.13);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.floating-card.one {
  left: -20px;
  bottom: 80px;
}

.floating-card.two {
  right: -20px;
  top: 80px;
}

.floating-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.floating-card strong {
  color: var(--dark);
  display: block;
  margin-top: 8px;
}

/* =========================
           TRUST BAR
        ========================== */

.trust-bar {
  padding: 30px 0;
  background: var(--dark);
  color: white;
}

.trust-item {
  padding: 15px;
}

.trust-item i {
  color: var(--green);
  font-size: 25px;
  margin-right: 8px;
}

.trust-item span {
  font-weight: 600;
}

/* =========================
           ABOUT
        ========================== */

.about-image {
  height: 620px;
  border-radius: 35px;
  background: url("/assets/img/about.jpg") center/cover;
  position: relative;
}

.experience-card {
  position: absolute;
  bottom: 30px;
  right: -25px;
  background: white;
  padding: 25px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.experience-card h3 {
  color: var(--purple);
  font-size: 40px;
  margin: 0;
}

.about-content {
  padding-left: 50px;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.about-content p {
  line-height: 1.9;
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.check-list li {
  margin-bottom: 17px;
  font-weight: 600;
  color: var(--dark);
}

.check-list i {
  color: var(--purple);
  margin-right: 10px;
}

/* =========================
           SERVICES
        ========================== */

.services-section {
  background: var(--light);
}

.service-card {
  height: 100%;
  background: white;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid #eee;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(150, 1, 253, 0.2);
  box-shadow: 0 25px 60px rgba(30, 20, 50, 0.1);
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 25px;
  margin-bottom: 15px;
}

.service-card p {
  line-height: 1.8;
}

.service-link {
  color: var(--purple);
  font-weight: 700;
}

/* =========================
           WHY US
        ========================== */

.why-card {
  padding: 25px 0;
  display: flex;
  gap: 20px;
}

.why-number {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  font-weight: 800;
}

.why-card h4 {
  font-size: 23px;
  margin-bottom: 8px;
}

.why-image {
  height: 650px;
  border-radius: 35px;
  background: url("/assets/img/why-choose-us.jpg") center/cover;
}

/* =========================
           STATS
        ========================== */

.stats {
  background: linear-gradient(110deg, var(--purple), var(--blue));
  color: white;
  position: relative;
  overflow: hidden;
}

.stats h2,
.stats p {
  color: white;
}

.stat-item {
  text-align: center;
  padding: 25px;
}

.stat-item h3 {
  color: white;
  font-size: 50px;
  margin-bottom: 5px;
}

.stat-item p {
  margin: 0;
  opacity: 0.9;
}

/* =========================
           PROCESS
        ========================== */

.process-card {
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  font-size: 23px;
  font-weight: 800;
}

.process-card h4 {
  font-size: 24px;
}

/* =========================
           TESTIMONIALS
        ========================== */

.testimonial-card {
  background: white;
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 25px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.client-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: url("/assets/img/person-placeholder.png") center/cover;
}

.client strong {
  color: var(--dark);
}

/* =========================
           FAQ
        ========================== */

.accordion-item {
  border: 0;
  border-bottom: 1px solid #e8e4eb;
}

.accordion-button {
  padding: 25px 5px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  background: white;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--purple);
  background: white;
}

.accordion-body {
  padding: 0 5px 25px;
  line-height: 1.8;
}

/* =========================
           CTA
        ========================== */

.cta-section {
  padding: 100px 0;
}

.cta-box {
  border-radius: 40px;
  padding: 75px;
  text-align: center;
  color: white;
  background: linear-gradient(120deg, var(--purple), var(--blue));
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  color: white;
  font-size: 50px;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.btn-white {
  background: white;
  color: var(--purple);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
}

.btn-white:hover {
  color: var(--blue);
}

/* =========================
           CONTACT
        ========================== */

.contact-section {
  background: var(--light);
}

.contact-info {
  padding-right: 40px;
}

.contact-info h2 {
  font-size: 48px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 15px;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-control,
.form-select {
  border: 1px solid #e6e1e9;
  padding: 14px 18px;
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(150, 1, 253, 0.08);
}

/* =========================
           FOOTER
        ========================== */

footer {
  background: #151018;
  color: #aaa;
  padding-top: 75px;
}

footer h4 {
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  color: white;
  font-weight: 700;
}

footer p {
  line-height: 1.8;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: #aaa;
  transition: 0.3s;
}

footer a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 25px 0;
}

.normal-heading h1,
.normal-heading h2,
.normal-heading h3,
.normal-heading h4,
.normal-heading h5,
.normal-heading h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}

/* =========================
           RESPONSIVE
        ========================== */

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero-image-wrapper {
    margin-top: 60px;
  }

  .about-content,
  .caregiver-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .experience-card {
    right: 20px;
  }

  .why-image {
    margin-bottom: 50px;
  }

  .caregiver-image {
    margin-bottom: 50px;
  }

  .cta-box {
    padding: 55px 30px;
  }
  .navbar-brand {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-image {
    height: 450px;
  }

  .floating-card {
    transform: scale(0.85);
  }

  .floating-card.one {
    left: -30px;
  }

  .floating-card.two {
    right: -30px;
  }

  .about-image,
  .why-image,
  .caregiver-image {
    height: 450px;
  }

  .about-content h2,
  .caregiver-content h2,
  .contact-info h2 {
    font-size: 38px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .contact-form {
    padding: 25px;
  }

  .btn-hero-home {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* ==========================================
   SERVICES - ONE SERVICE PER ROW
   ========================================== */

.services-page .services-section {
  padding: 90px 0;
}

.services-page .services-heading {
  max-width: 700px;
  margin: 0 auto 65px;
  text-align: center;
}

.services-page .services-heading h2 {
  margin-bottom: 15px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
}

.services-page .services-heading p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

/* Individual Service Row */
.services-page .service-row {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee8f4;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(40, 20, 60, 0.07);
  transition: all 0.35s ease;
}

.services-page .service-row:last-child {
  margin-bottom: 0;
}

.services-page .service-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(40, 20, 60, 0.11);
}

/* Service Image */
.services-page .service-row-image {
  width: 50%;
  min-height: 430px;
  overflow: hidden;
}

.services-page .service-row-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-page .service-row:hover .service-row-image img {
  transform: scale(1.04);
}

/* Service Content */
.services-page .service-row-content {
  width: 50%;
  padding: 55px;
}

.services-page .service-number {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.services-page .service-row-content h3 {
  margin-bottom: 18px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
}

.services-page .service-row-content > p {
  margin-bottom: 25px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

/* Service Features */
.services-page .service-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .service-features li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  color: #51495a;
  font-size: 15px;
  line-height: 1.5;
}

.services-page .service-features li::before {
  content: "\F26A";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--purple);
  font-family: "bootstrap-icons";
  font-weight: 700;
}

/* Service Icon */
.services-page .service-row-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  font-size: 24px;
}

/* Different Service Colors */
.services-page .service-row:nth-child(2) .service-row-icon {
  background: rgba(1, 185, 255, 0.1);
  color: var(--blue);
}

.services-page .service-row:nth-child(3) .service-row-icon {
  background: rgba(0, 255, 1, 0.1);
  color: #48a600;
}

/* Alternate Rows */
.services-page .service-row.reverse {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 991px) {
  .services-page .service-row,
  .services-page .service-row.reverse {
    flex-direction: column;
  }

  .services-page .service-row-image {
    width: 100%;
    min-height: 350px;
  }

  .services-page .service-row-image img {
    min-height: 350px;
  }

  .services-page .service-row-content {
    width: 100%;
    padding: 45px;
  }
}

@media (max-width: 767px) {
  .services-page .services-section {
    padding: 60px 15px;
  }

  .services-page .services-heading {
    margin-bottom: 45px;
  }

  .services-page .service-row {
    margin-bottom: 40px;
    border-radius: 20px;
  }

  .services-page .service-row-image,
  .services-page .service-row-image img {
    min-height: 260px;
  }

  .services-page .service-row-content {
    padding: 35px 25px;
  }

  .services-page .service-row-content h3 {
    font-size: 30px;
  }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-page {
  background: var(--white);
  overflow: hidden;
}

/* About Hero */
.about-page .about-hero {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f1ff 0%, #eefaff 100%);
  overflow: hidden;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(150, 1, 253, 0.08);
  top: -100px;
  right: -70px;
}

.about-page .about-hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(1, 185, 255, 0.08);
  bottom: -80px;
  left: -50px;
}

.about-page .about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.about-page .about-label {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-page .about-hero h1 {
  margin-bottom: 18px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
}

.about-page .about-hero h1 span {
  color: var(--purple);
}

.about-page .about-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

/* Who We Are */
.about-page .who-section {
  padding: 100px 0;
}

.about-page .who-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 25px;
}

.about-page .who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .who-content {
  padding-left: 45px;
}

.about-page .section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-page .who-content h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
}

.about-page .who-content h2 span {
  color: var(--purple);
}

.about-page .who-content > p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
}

/* Mission & Vision */
.about-page .mission-section {
  padding: 90px 0;
  background: var(--light);
}

.about-page .mission-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.about-page .mission-heading h2 {
  margin-bottom: 15px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
}

.about-page .mission-heading p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.about-page .mission-card {
  height: 100%;
  padding: 40px 35px;
  background: var(--white);
  border: 1px solid #eee8f4;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(40, 20, 60, 0.06);
}

.about-page .mission-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  font-size: 27px;
}

.about-page .mission-card:nth-child(2) .mission-icon {
  background: rgba(1, 185, 255, 0.1);
  color: var(--blue);
}

.about-page .mission-card h3 {
  margin-bottom: 13px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
}

.about-page .mission-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

/* Core Values */
.about-page .values-section {
  padding: 100px 0;
}

.about-page .values-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.about-page .values-heading h2 {
  margin-bottom: 15px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
}

.about-page .values-heading p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.about-page .value-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: var(--white);
  border: 1px solid #eee8f4;
  border-radius: 20px;
  transition: all 0.35s ease;
}

.about-page .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(40, 20, 60, 0.09);
}

.about-page .value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
  font-size: 25px;
}

.about-page .value-card:nth-child(2) .value-icon {
  background: rgba(1, 185, 255, 0.1);
  color: var(--blue);
}

.about-page .value-card:nth-child(3) .value-icon {
  background: rgba(0, 255, 1, 0.1);
  color: #48a600;
}

.about-page .value-card:nth-child(4) .value-icon {
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
}

.about-page .value-card h4 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}

.about-page .value-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

/* Why Choose Us */
.about-page .why-section {
  padding: 90px 0;
  background: var(--light);
}

.about-page .why-image {
  height: 450px;
  overflow: hidden;
  border-radius: 25px;
}

.about-page .why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .why-content {
  padding-left: 40px;
}

.about-page .why-content h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
}

.about-page .why-content > p {
  margin-bottom: 25px;
  color: var(--text);
  line-height: 1.8;
}

.about-page .why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.about-page .why-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(150, 1, 253, 0.1);
  color: var(--purple);
}

.about-page .why-item h5 {
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
}

.about-page .why-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA */
.about-page .about-cta {
  position: relative;
  padding: 75px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.about-page .about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-page .about-cta h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
}

.about-page .about-cta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .about-page .about-hero {
    padding: 70px 0;
  }

  .about-page .who-section {
    padding: 70px 0;
  }

  .about-page .who-content {
    padding-left: 0;
    padding-top: 35px;
  }

  .about-page .mission-section,
  .about-page .values-section {
    padding: 70px 0;
  }

  .about-page .why-content {
    padding-left: 0;
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .about-page .about-hero {
    padding: 60px 20px;
  }

  .about-page .who-section,
  .about-page .values-section {
    padding: 60px 15px;
  }

  .about-page .who-image {
    height: 320px;
  }

  .about-page .mission-section,
  .about-page .why-section {
    padding: 60px 15px;
  }

  .about-page .why-image {
    height: 300px;
  }

  .about-page .why-content h2 {
    font-size: 34px;
  }

  .about-page .about-cta {
    padding: 60px 20px;
  }

  .about-page .about-cta h2 {
    font-size: 32px;
  }
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
  background: var(--white);
}

/* Contact Hero */

.contact-hero {
  padding: 50px 0 50px;
  background: linear-gradient(135deg, #f6efff 0%, #eefbff 100%);
  text-align: center;
}

.contact-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.contact-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0 0 20px;
  color: var(--dark);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero h1 span,
.contact-info h2 span,
.contact-form-heading h2 span,
.contact-cta h2 span {
  color: var(--purple);
}

.contact-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

/* Contact Section */

.contact-section {
  padding: 50px 0;
}

.contact-info {
  padding-right: 25px;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-info h2,
.contact-form-heading h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-info > p,
.contact-form-heading > p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f1e7ff;
  color: var(--purple);
  font-size: 21px;
}

.contact-info-item h5 {
  margin: 0 0 5px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--purple);
}

/* Contact Form */

.contact-form-box {
  padding: 45px;
  border: 1px solid #eee7f5;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(40, 20, 60, 0.08);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd7e5;
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(150, 1, 253, 0.08);
}

.contact-form-box textarea {
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* Contact CTA */

.contact-cta {
  padding: 70px 0;
  background: var(--dark);
}

.contact-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-cta h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 34px;
  font-weight: 800;
}

.contact-cta p {
  max-width: 650px;
  margin: 0;
  color: #c9c2d0;
  line-height: 1.7;
}

.contact-cta .contact-label {
  color: var(--blue);
}

.contact-cta .btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 14px 25px;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-cta .btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Mobile */

@media (max-width: 991px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-form-box {
    padding: 30px;
  }

  .contact-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    padding: 65px 0;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-info h2,
  .contact-form-heading h2 {
    font-size: 32px;
  }

  .contact-form-box {
    padding: 22px;
    border-radius: 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-cta {
    padding: 55px 0;
  }

  .contact-cta h2 {
    font-size: 29px;
  }
}
