:root {
  /* === ORCURA Health Solutions – Logo-Based Palette === */

  /* Primary Blues (from logo top area) */
  --primary-color: #344a9a;   /* Main deep blue */
  --primary-600: #2e3f86;     /* Darker brand blue */
  --primary-700: #23346d;     /* Navy tone */

  /* Teal Gradient Base (logo bottom area) */
  --secondary-color: #eaf6f8; /* Very light teal background */
  --accent-color: #4aa3b5;    /* Teal highlight */
  --accent-contrast: #ffffff;

  /* Medical Accent (Red Cross) */
  --medical-red: #e53935;

  /* === Text Colors === */
  --text-color: #1f2937;     /* Strong readable text */
  --muted-text: #5f6f7a;     /* Cool gray-blue */

  /* === Neutrals === */
  --white-color: #ffffff;
  --surface-color: #ffffff;
  --divider-color: rgba(52, 74, 154, 0.12);
  --dark-divider-color: rgba(35, 52, 109, 0.18);

  /* === Status === */
  --error-color: #e53935;

  /* === Effects === */
  --focus-ring: 0 0 0 3px rgba(74, 163, 181, 0.35);
  --shadow-sm: 0 6px 18px rgba(35, 52, 109, 0.10);
  --shadow: 0 14px 40px rgba(35, 52, 109, 0.18);

  /* === Typography === */
  --default-font:
    "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: var(--default-font);

  /* === Brand Gradient (EXACT logo feel) === */
  --brand-gradient: linear-gradient(
    180deg,
    #344a9a 0%,
    #3b6fa6 50%,
    #4aa3b5 100%
  );
}


/************************************/
/***         02. General css       ***/
/************************************/
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}


/* ===== HEADER BASE ===== */
.orcura-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width: 1320px;
  margin: auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 72px;
}

/* ===== DESKTOP NAV ===== */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.desktop-nav a {
   color:var(--primary-600);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  width: 265px;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 14px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
}

.dropdown a:hover {
  background: var(--secondary-color);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== RIGHT ACTIONS ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

/* CTA */
.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-600)
  );
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.nav-cta:hover {
  background: linear-gradient(
    135deg,
    var(--primary-600),
    var(--primary-700)
  );
  color: #ffffff;
}
.nav-cta {
  box-shadow: 0 6px 18px rgba(52, 74, 154, 0.35);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(35, 52, 109, 0.45);
}



/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  padding: 10px;
  box-shadow: -20px 0 40px rgba(0,0,0,0.2);
  transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 1100;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  margin-top: 60px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
}

.close-menu {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Dropdown */
.mobile-drop-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-drop-toggle span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted-text);
  border-bottom: 2px solid var(--muted-text);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-dropdown.active span {
  transform: rotate(-135deg);
}

.mobile-drop-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 14px;
  transition: max-height 0.4s ease;
}

.mobile-dropdown.active .mobile-drop-menu {
  max-height: 400px;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}


/* ===== MENU LIST ===== */
.mobile-menu ul {
  list-style: none;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
  border-radius: 14px;
  background: var(--secondary-color);
  padding: 12px 14px;
}

/* Toggle Button */
.mobile-drop-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Arrow */
.mobile-drop-toggle span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-600);
  border-bottom: 2px solid var(--primary-600);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* Rotate arrow */
.mobile-dropdown.active .mobile-drop-toggle span {
  transform: rotate(-135deg);
}

/* Dropdown Menu */
.mobile-drop-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 12px;
  margin-top: 6px;
  transition: max-height 0.45s ease;
}

.mobile-dropdown.active .mobile-drop-menu {
  max-height: 600px;
}

/* Dropdown Links */
.mobile-drop-menu a {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted-text);
  position: relative;
  padding-left: 14px;
}

/* Left Accent Line */
.mobile-drop-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
  border-radius: 2px;
}

/* ===== CTA ===== */
.nav-cta.full {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 12px 0;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ===== SCROLLBAR (OPTIONAL PREMIUM TOUCH) ===== */
.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: var(--divider-color);
  border-radius: 10px;
}
/* ===== MOBILE MENU HEADER ===== */
.mobile-menu-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 18px;
  background: var(--surface-color);
  z-index: 10;
  border-bottom: 1px solid var(--divider-color);
}

/* Logo */
.mobile-logo {
  height: 76px;
}

/* Close Button */
.mobile-menu-header .close-menu {
  position: static;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--primary-700);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-menu-header .close-menu:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Adjust menu spacing */
.mobile-menu ul {
  margin-top: 24px;
}



/* ===== MOBILE MENU LIST RESET ===== */
.mobile-menu ul {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===== ALL NAV ITEMS AS PILLS ===== */
.mobile-menu ul > li {
  background: var(--secondary-color);
  border-radius: 14px;
  padding: 14px 16px;
  transition: background 0.3s ease;
}

/* Hover / Active */
.mobile-menu ul > li:hover {
  background: #e6f3f6;
}

/* ===== SIMPLE LINKS (Home, Doctors, etc.) ===== */
.mobile-menu ul > li > a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-700);
  text-decoration: none;
}

/* ===== DROPDOWN CONTAINER ===== */
.mobile-dropdown {
  padding: 0;
}

/* Dropdown Button */
.mobile-drop-toggle {
  width: 100%;
  padding: 14px 16px;
  background: var(--secondary-color);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Arrow */
.mobile-drop-toggle span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-600);
  border-bottom: 2px solid var(--primary-600);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* Rotate arrow when open */
.mobile-dropdown.active .mobile-drop-toggle span {
  transform: rotate(-135deg);
}

/* ===== DROPDOWN MENU ===== */
.mobile-drop-menu {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: max-height 0.45s ease;
}

/* Open state */
.mobile-dropdown.active .mobile-drop-menu {
  max-height: 600px;
  padding-bottom: 14px;
}

/* Sub Links */
.mobile-drop-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted-text);
  text-decoration: none;
  padding-left: 14px;
  position: relative;
}

/* Accent dash */
.mobile-drop-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
  border-radius: 2px;
}

/* ===== CTA ===== */
.nav-cta.full {
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 999px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Remove pill background from CTA wrapper */
.mobile-menu ul > li:last-child {
  background: transparent;
  padding: 0;
}


@media(max-width:600px){
  .nav-cta{
    display: none !important;
  }
}

/* MAIN DROPDOWN */
.services-dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 100;
}

.has-dropdown:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* FIRST LEVEL ITEM */
.services-item,
.services-link {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-item:hover,
.services-link:hover {
  background: var(--secondary-color);
  color: var(--primary-700);
}

/* Arrow for submenu */
.has-submenu::after {
  content: "›";
  font-size: 18px;
  color: var(--muted-text);
}

/* SUBMENU */
.services-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.35s ease;
}

/* SHOW SUBMENU ON HOVER */
.services-item:hover .services-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* SUB LINKS */
.services-submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14.5px;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.25s ease;
}

.services-submenu a:hover {
  background: var(--secondary-color);
  color: var(--primary-700);
}

/* Direct service links */
.mobile-direct-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-700);
  text-decoration: none;
  border-radius: 12px;
}

.mobile-direct-link:hover {
  background: var(--secondary-color);
}

/* Sub dropdown container */
.mobile-sub-dropdown {
  margin-top: 10px;
}

/* Sub toggle */
.mobile-sub-toggle {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Arrow */
.mobile-sub-toggle span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-600);
  border-bottom: 2px solid var(--primary-600);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Sub menu */
.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
  transition: max-height 0.4s ease;
}

/* Open state */
.mobile-sub-dropdown.active .mobile-sub-menu {
  max-height: 500px;
}

.mobile-sub-dropdown.active .mobile-sub-toggle span {
  transform: rotate(-135deg);
}

/* Sub links */
.mobile-sub-menu a {
  font-size: 14.5px;
  color: var(--muted-text);
  text-decoration: none;
  padding-left: 14px;
  position: relative;
}

/* Accent dash */
.mobile-sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
  border-radius: 2px;
}

/* MAIN SERVICES DROPDOWN */
.services-dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 999;
  overflow: visible; /* ✅ KEY */
}

.has-dropdown:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-link{
  color:#1f2937 !important;
}
/* FIRST LEVEL ITEM */
.services-item {
  position: relative; /* ✅ KEY */
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-item:hover {
  background: var(--secondary-color);
  color: var(--primary-700);
}

/* ARROW */
.services-item::after {
  content: "›";
  font-size: 18px;
  color: var(--muted-text);
}

/* SUBMENU */
.services-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.35s ease;
  z-index: 9999; /* ✅ KEY */
}

/* SHOW SUBMENU */
.services-item:hover .services-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* SUBMENU LINKS */
.services-submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14.5px;
  color: var(--text-color);
  text-decoration: none;
}

.services-submenu a:hover {
  background: var(--secondary-color);
  color: var(--primary-700);
}

/* Mobile Menu Scroll */
.mobile-menu {
  overflow-y: auto;          /* ENABLE SCROLL */
  -webkit-overflow-scrolling: touch; /* Smooth iOS scroll */
}

/* Prevent horizontal scroll */
.mobile-menu {
  overflow-x: hidden;
}
.mobile-sub-menu {
  gap: 20px; /* was tighter */
   
}
.mobile-sub-toggle {
  margin-bottom: 6px;
}



/* ===== HERO SECTION ===== */
.orcura-hero {
  position: relative;
}

/* Swiper Container */
.orcuraSwiper {
  width: 100%;
  height: clamp(520px, 85vh, 760px);
}

/* Slides */
.orcuraSwiper .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 58, 138, 0.85),
    rgba(30, 58, 138, 0.35),
    rgba(30, 58, 138, 0.1)
  );
}

/* Content */
.hero-content {
  position: relative;
  max-width: 620px;
  padding: 0 24px;
  margin-left: clamp(20px, 6vw, 80px);
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 17px;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(30, 58, 138, 0.85),
      rgba(30, 58, 138, 0.55)
    );
  }
}

/* ===== MOBILE SLIDER HEIGHT FIX ===== */
@media (max-width: 768px) {
  .orcuraSwiper {
    height: 420px; /* adjust if needed: 380–450px works best */
  }
}

@media (max-width: 480px) {
  .orcuraSwiper {
    height: 550px; /* compact phones */
  }
}

/* ===== ABOUT V2 BASE ===== */
.about-orcura-v2 {
  background: linear-gradient(180deg, #ffffff, var(--secondary-color));
  padding: 90px 20px 60px;
}

.about-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT STORY ===== */
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--secondary-color);
  color: var(--primary-700);
  font-weight: 600;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.about-story h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 16px;
}

.about-story h2 span {
  color: var(--primary-color);
}

.about-story p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Trust Box */
.trust-box {
  display: flex;
  gap: 14px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.trust-box i {
  font-size: 26px;
  color: var(--accent-color);
}

.trust-box h4 {
  font-size: 16px;
  color: var(--primary-700);
  margin-bottom: 4px;
}

.trust-box p {
  font-size: 14px;
  color: var(--muted-text);
}

/* ===== RIGHT FEATURES ===== */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 16px;
  color: var(--primary-700);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted-text);
}

/* ===== STATS STRIP ===== */
.about-stats {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.stat i {
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.stat h3 {
  font-size: 28px;
  color: var(--primary-700);
}

.stat span {
  font-size: 14px;
  color: var(--muted-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }
}



/* ===== SERVICES SECTION ===== */
.orcura-services-cards {
  background: #fdf6ef;
  padding: 60px 20px;
}

.services-inner {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  max-width: 720px;
  margin: auto auto 60px;
}

.section-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.services-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.services-header p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Image */
/*.service-card img {*/
/*  width: 100%;*/
/*  height: 220px;*/
/*  object-fit: cover;*/
/*}*/

.service-card img {
  width: 100%;
  aspect-ratio: 4 /4;
  object-fit: contain;
  background: #f8f8f8;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .service-card img {
    aspect-ratio: 4 / 4;   /* less height on mobile */
  }
}

/* Title */
.service-card h4 {
  padding: 18px 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* Link Styling */
.service-card h4 a {
  color: var(--primary-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

/* Hover Effect */
.service-card h4 a:hover {
  color: var(--primary-color);
}

/* ===== CARE DIFFERENCE SECTION ===== */
.orcura-care-difference {
  background: #ffffff;
  padding: 60px 20px;
}

.care-container {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.care-header {
  text-align: center;
  max-width: 720px;
  margin: auto auto 70px;
}

.care-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.care-header p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* Timeline */
.care-timeline {
  position: relative;
  padding-left: 40px;
}

/* Vertical Line */
.care-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
}

/* Step */
.care-step {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}

.step-number {
  width: 34px;
  height: 34px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  color: var(--primary-700);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .care-timeline {
    padding-left: 20px;
  }

  .care-step {
    gap: 18px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
/* ===== LAYOUT ===== */
.care-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ===== TIMELINE ===== */
.care-timeline {
  position: relative;
  padding-left: 40px;
}

.care-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
}

/* Step */
.care-step {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 46px;
}

/* Number */
.step-number {
  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

/* Content */
.step-content {
  background: #ffffff;
  padding: 9px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.step-content h4 {
  font-size: 17px;
  color: var(--primary-700);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14.5px;
  color: var(--muted-text);
  line-height: 1.6;
}

/* ===== RIGHT IMAGE ===== */
.care-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .care-layout {
    grid-template-columns: 1fr;
  }

  .care-visual {
    order: -1;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .care-timeline {
    padding-left: 32px;
  }
}

/* ===== APPOINTMENT SECTION ===== */
.orcura-appointment {

    background: #fdf6ef;
  padding: 60px 20px;
}

.appointment-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

/* ===== FORM ===== */
.appointment-form {
  background: #ffffff;
  padding: 50px 42px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.appointment-form h2 {
  font-size: 28px;
  color: var(--primary-700);
  margin-bottom: 6px;
}

.appointment-form p {
  color: var(--muted-text);
  margin-bottom: 28px;
}

/* Inputs */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.appointment-form input,
.appointment-form textarea,
.select-wrapper select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--divider-color);
  font-size: 14.5px;
  outline: none;
  background: #ffffff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form textarea {
  grid-column: span 2;
  margin-top: 18px;
  min-height: 120px;
  resize: none;
}

/* Focus */
.appointment-form input:focus,
.appointment-form textarea:focus,
.select-wrapper select:focus {
  border-color: var(--accent-color);
  box-shadow: var(--focus-ring);
}

/* ===== PREMIUM SELECT ===== */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-600);
  pointer-events: none;
}

/* Remove default arrow */
.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

/* ===== SUBMIT ===== */
.submit-btn {
  margin-top: 26px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== INFO CARD ===== */
.appointment-info {
  background: #ffffff;
  padding: 46px 36px;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.appointment-info h3 {
  font-size: 22px;
  color: var(--primary-700);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.info-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 4px;
}

.info-item p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 14.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .appointment-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .appointment-form,
  .appointment-info {
    padding: 36px 24px;
  }
}

/* ===== BLOG SECTION ===== */
.orcura-blog {
  background: linear-gradient(180deg, #ffffff, var(--secondary-color));
  padding: 90px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.blog-header {
  text-align: center;
  max-width: 760px;
  margin: auto auto 60px;
}

.blog-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.blog-header p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.blog-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Image */
.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Category */
.blog-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Content */
.blog-content {
  padding: 22px 22px 26px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: var(--primary-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  font-size: 14.5px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Read More */
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* CTA */
.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-outline {
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.orcura-footer {
  background: var(--primary-700);
  color: #ffffff;
  padding: 40px 10px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Brand */
.footer-brand img {
  height: 80px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

/* Contact */
.footer-contact .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height:1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 3px;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }
}

.footer-brand p {
  margin-top: 18px;
  line-height: 1.8;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-contact .contact-item {
  margin-bottom: 18px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.footer-bottom {
  margin-top: 30px;
  padding: 6px 0;
}

@media (min-width: 1400px) {
  .footer-container {
    max-width: 1320px;
  }
}

/* Quick Links Column */
.footer-links {
  text-align: left;
}

/* UL reset */
.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* KEY FIX */
  gap: 12px; /* even vertical spacing */
  padding: 0;
  margin: 0;
}

/* List items */
.footer-links ul li {
  width: 100%;
}

/* Anchor */
.footer-links ul li a {
  display: inline-block;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Hover */
.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(4px); /* subtle premium motion */
}

@media(max-width:600px){
  .footer-links {
  text-align: center !important;
}

}

/* ===== WHY CHOOSE ORCURA ===== */
.orcura-why-choose {
  background: linear-gradient(180deg, #ffffff, var(--secondary-color));
  padding: 60px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 780px;
  margin: auto auto 70px;
}

.why-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.why-header p {
  color: var(--muted-text);
  line-height: 1.7;
  font-size: 15.5px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* Icon */
.why-card i {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

/* Title */
.why-card h4 {
  font-size: 18px;
  color: var(--primary-700);
  margin-bottom: 10px;
}

/* Text */
.why-card p {
  font-size: 14.5px;
  color: var(--muted-text);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 30px 24px;
  }
}



/* ===== BREADCRUMB SECTION ===== */
.orcura-breadcrumb {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.85),
      rgba(47, 109, 181, 0.85)
    ),
    url("../images/mm.jpg") center / cover no-repeat;
  padding: 120px 20px;
  color: #ffffff;
}

.geiatric{
   background: 
    url("../images/banner/Geriatric\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}

.geiatric{
   background: 
    url("../images/banner/Geriatric\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}

.ostomy{
   background: 
    url("../images/banner/Ostomy\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}

.post-surgery{
   background: 
    url("../images/banner/Post\ Surgery\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}
.post-transplant{
   background: 
    url("../images/banner/Post\ transplant\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}
.post-stroke{

 background: 
    url("../images/banner/Post\ Stroke\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}
.post-traco{
   background: 
    url("../images/banner/Tracheostomy\ Care\ at\ Home-banner.jpg") center / cover no-repeat;
}

.chronic{
   background: 
    url("../images/banner/Chronic\ Disease\ Management-banner.jpg") center / cover no-repeat;
}
.blood{
  background: 
    url("../images/banner/blood\ sample\ banner.jpg") center / cover no-repeat;
}
.doctor-visit{
   background: 
    url("../images/banner/dr\ visit\ at\ home.jpg") center / cover no-repeat;
}
.icu{
   background: 
    url("../images/banner/ICU\ at\ home\ banner.jpg.jpeg") center / cover no-repeat;
}
.medical{
   background: 
    url("../images/banner/medical\ equipments.jpg") center / cover no-repeat;
}
.mother-care{
   background: 
    url("../images/banner/Mother\ and\ Baby\ Care.jpg") center / cover no-repeat;
}
.physio{
   background: 
    url("../images/banner/physiotherapy\ at\ home.jpg") center / cover no-repeat;
}
.nursing-visit{
  background: 
    url("../images/banner/nursing\ visit\ banner.jpg.jpeg") center / cover no-repeat;
}
.nursing-care{
   background: 
    url("../images/banner/nursing\ care\ banner.jpg.jpeg") center / cover no-repeat;
}

/* Container */
.breadcrumb-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

/* Page Title */
.breadcrumb-container h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

/* Breadcrumb Nav */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* Links */
.breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

/* Current Page */
.breadcrumb-nav .current {
  opacity: 0.75;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .orcura-breadcrumb {
    padding: 64px 16px;
  }

  .breadcrumb-container h1 {
    font-size: 28px;
  }
}

/* ===============================
   SERVICE PAGE – BASE
================================ */
.service-intro,
.service-section,
.service-cta {
  max-width: 1300px;
  margin: auto;
  padding: 40px 40px;
}

.service-section.alt-bg {
  background: var(--secondary-color);
  border-radius: 28px;
  padding: 70px 40px;
}

/* ===============================
   HEADINGS
================================ */
.service-intro h1 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--primary-700);
  margin-bottom: 20px;
}

.service-section h2,
.service-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--primary-700);
  margin-bottom: 18px;
}

/* ===============================
   PARAGRAPHS
================================ */
.service-intro p,
.service-section p,
.service-cta p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 16px;
 
}

/* ===============================
   LISTS (PREMIUM STYLE)
================================ */
.service-list {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--text-color);
  line-height: 1.7;
}

/* Accent check */
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

/* Two-column list (activities) */
.service-list.two-column {
  grid-template-columns: repeat(2, 1fr);
}

/* ===============================
   CTA SECTION
================================ */
.service-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--primary-700),
    var(--primary-color)
  );
  border-radius: 32px;
  color: #ffffff;
  padding: 80px 30px;
}

.service-cta h2 {
  color: #ffffff;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
 
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-700);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .service-section.alt-bg {
    padding: 40px 26px;
  }

  .service-list.two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-intro,
  .service-section,
  .service-cta {
    padding: 20px ;
  }

  .service-intro h1 {
    font-size: 24px;
  }

  .service-section h2,
  .service-cta h2 {
    font-size: 22px;
  }

  .service-intro p,
  .service-section p,
  .service-cta p {
    font-size: 15px;
  }
}

/* ===============================
   SERVICE SPLIT SECTION
================================ */
.service-split-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

/* Text */
.service-split-content h2 {
  margin-bottom: 18px;
}

/* Image Wrapper */
.service-split-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Image */
.service-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .service-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-split-image {
    order: -1; /* Image first on mobile (optional) */
  }
}

/* ===============================
   FAQ SECTION
================================ */
.orcura-faqs {
  background: linear-gradient(180deg, #ffffff, var(--secondary-color));
  padding: 40px 20px;
}

.faq-container {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.faq-header p {
  color: var(--muted-text);
  line-height: 1.7;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: var(--shadow);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--primary-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

/* Arrow */
.faq-question span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-600);
  border-bottom: 2px solid var(--primary-600);
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(-135deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-answer p {
  font-size: 15.5px;
  color: var(--text-color);
  line-height: 1.8;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 15.5px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}


.appointment-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* LEFT: info | RIGHT: form */
  gap: 50px;
}

/* Order control */
.appointment-info {
  order: 1; /* LEFT */
}

.appointment-form {
  order: 2; /* RIGHT */
}

@media (max-width: 992px) {
  .appointment-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .appointment-form {
    order: 1; /* FORM first */
  }

  .appointment-info {
    order: 2; /* INFO below */
  }
}

@media (max-width: 576px) {
  .appointment-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .appointment-form,
  .appointment-info {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}



.appointment-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* LEFT: info | RIGHT: form */
  gap: 50px;
}

/* Order control */
.appointment-info {
  order: 1; /* LEFT */
}

.appointment-form {
  order: 2; /* RIGHT */
}

@media (max-width: 992px) {
  .appointment-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .appointment-form {
    order: 1; /* FORM first */
  }

  .appointment-info {
    order: 2; /* INFO below */
  }
}

@media (max-width: 576px) {
  .appointment-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .appointment-form,
  .appointment-info {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

.service-img-small {
  max-width: 400px;   /* controls image size */
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .service-img-small {
    max-width: 100%;
    margin-top: 20px;
  }
}


/* ===============================
   FLOATING CONTACT BUTTONS
================================ */
.orcura-contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

/* Button Base */
.fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  white-space: nowrap;
}

/* Icon */
.fab-btn i {
  font-size: 18px;
}

/* WhatsApp */
.fab-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

/* Call */
.fab-btn.call {
  background: var(--brand-gradient);
  color: #ffffff;
}

/* Hover */
.fab-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 576px) {
  .orcura-contact-fab {
    right: 16px;
    bottom: 16px;
  }

  .fab-btn span {
    display: none; /* icons only on mobile */
  }

  .fab-btn {
    padding: 14px;
    border-radius: 50%;
  }

  .fab-btn i {
    font-size: 22px;
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(69, 193, 229, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(69, 193, 229, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69, 193, 229, 0); }
}

.fab-btn.call {
  animation: pulse 2.8s infinite;
}


/* ===============================
   ORCURA BLOG PAGE (UNIQUE)
================================ */
.orcura-blog-page {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, var(--secondary-color));
}

.orcura-blog-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.orcura-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.orcura-blog-header h1 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--primary-700);
  margin: 18px 0;
}

.orcura-blog-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-text);
}

/* Content */
.orcura-blog-content h2 {
  font-size: 24px;
  color: var(--primary-700);
  margin: 42px 0 14px;
}

.orcura-blog-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
  .orcura-blog-page {
    padding: 64px 16px;
  }

  .orcura-blog-header h1 {
    font-size: 21px;
  }

  .orcura-blog-content h1,  h2 {
    font-size: 24px;
  }

  .orcura-blog-content p {
    font-size: 15px;
  }
}


/* ===============================
   BLOG PAGE BACKGROUND
================================ */
.orcura-blog-page {
  padding: 90px 20px;
  background:
    linear-gradient(
      180deg,
      var(--secondary-color) 0%,
      #ffffff 100%
    );
}

/* Article Card */
.orcura-blog-wrapper {
  max-width: 1200px;
  margin: auto;
  background: var(--surface-color);
  border-radius: 28px;
  padding: 70px 64px;
  box-shadow: var(--shadow-sm);
}

.orcura-blog-content p {
  font-size: 16.5px;
  line-height: 1.9; /* more breathing space */
  color: var(--text-color);
}

.orcura-blog-header {
  margin-bottom: 54px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider-color);
}

@media (max-width: 576px) {
  .orcura-blog-wrapper {
    padding: 40px 22px;
    border-radius: 18px;
  }

  .orcura-blog-page {
    padding: 60px 14px;
  }
}


/* ===============================
   BLOG SPLIT IMAGE SECTION
================================ */
.orcura-blog-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin: 40px 0 50px;
}

.orcura-blog-split-text p {
  margin: 0;
}

/* Image */
.orcura-blog-split-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-height: 350px;
}

.orcura-blog-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .orcura-blog-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .orcura-blog-split-image {
    max-height: 300px;
  }
}

/* ===============================
   LUXURY ABOUT US
================================ */
.orcura-about-luxury {
  padding: 60px 20px;
  background:
    radial-gradient(
      circle at top right,
      rgba(69, 193, 229, 0.12),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      var(--secondary-color),
      #ffffff
    );
}

.orcura-about-shell {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ===============================
   TEXT
================================ */
.orcura-about-text h2 {
  font-size: clamp(28px, 2.5vw, 48px);
  color: var(--primary-700);
  margin: 18px 0 20px;
  line-height: 1.2;
}

.orcura-about-text .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 18px;
}

.orcura-about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted-text);
}

/* ===============================
   FEATURES
================================ */
.orcura-about-features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(69,193,229,0.15);
}

.feature-item p {
  margin: 0;
  font-weight: 500;
  color: var(--text-color);
}

/* ===============================
   IMAGE
================================ */
.orcura-about-visual {
  position: relative;
}

.image-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,58,138,0.18),
    rgba(69,193,229,0.12)
  );
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .orcura-about-shell {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .orcura-about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .orcura-about-luxury {
    padding: 70px 16px;
  }

  .image-frame {
    border-radius: 22px;
  }
}


/* ===============================
   VALUES / CARE PROMISE
================================ */
/* ===============================
   VALUES / CARE PROMISE – GRADIENT
================================ */
.orcura-values-section {
  padding: 60px 20px;
  background:
    radial-gradient(
      circle at top left,
      rgba(69, 193, 229, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(47, 109, 181, 0.18),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      var(--secondary-color) 100%
    );
}

.orcura-values-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.orcura-values-header {
  
  margin-bottom: 60px;
}

.orcura-values-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--primary-700);
  margin: 16px 0;
}

.orcura-values-header p {
  color: var(--muted-text);
  line-height: 1.8;
}

/* Grid */
.orcura-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.orcura-value-card {
  background: var(--secondary-color);
  border-radius: 26px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orcura-value-card h4 {
  font-size: 18px;
  color: var(--primary-700);
  margin-bottom: 10px;
}

.orcura-value-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-color);
}

/* Hover */
.orcura-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .orcura-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .orcura-values-section {
    padding: 70px 16px;
  }

  .orcura-values-grid {
    grid-template-columns: 1fr;
  }
}

.orcura-value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--divider-color);
}

/* ===============================
   PREMIUM CONTACT SECTION
================================ */
.orcura-contact-premium {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    var(--secondary-color) 0%,
    #ffffff 100%
  );
}

.orcura-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
}

/* LEFT INFO */
.orcura-contact-info h2 {
  font-size: 36px;
  margin: 18px 0 12px;
}

.orcura-contact-info p {
  color: var(--muted-text);
  max-width: 520px;
  margin-bottom: 32px;
}

/* CONTACT ITEMS */
.contact-items {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact-items i {
  font-size: 18px;
  color: var(--primary-color);
  background: rgba(69, 193, 229, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-items h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-color);
}

.contact-items p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* RIGHT CTA CARD */
.orcura-contact-cta {
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  padding: 42px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orcura-contact-cta h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.orcura-contact-cta p {
  opacity: 0.9;
  margin-bottom: 28px;
}

/* CTA BUTTONS */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.cta-btn.call {
  background: #fff;
  color: var(--primary-color);
}

.cta-btn.mail {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .orcura-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .orcura-contact-info h2 {
    font-size: 30px;
  }

  .orcura-contact-cta {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .orcura-contact-premium {
    padding: 70px 16px;
  }

  .orcura-contact-info h2 {
    font-size: 26px;
  }
}

