/* ==========================================================================
   NISHTHA HEALTH CARE - PREMIUM CLEAN STYLESHEET
   ========================================================================== */

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #f4a8b4;
  --primary-soft: #fdf0f2;
  --dark: #1a1a1a;
  --gray-dark: #343233;
  --gray: #6b6b6b;
  --gray-light: #a1a1a1;
  --gray-lighter: #e5e5e5;
  --bg-light: #f8f9fa;
  --white: #ffffff;

  --grad-primary: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
  --grad-primary-dark: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  --grad-primary-soft: linear-gradient(
    135deg,
    #ff8a8a 0%,
    #ff6b6b 50%,
    #e63946 100%
  );

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 10px 30px rgba(230, 57, 70, 0.25);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 999px;

  --trans: all 0.3s ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
::selection {
  background: var(--primary);
  color: white;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 24px;
  animation: pulse 1.5s ease infinite;
}
.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gray-lighter);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-left,
.top-right {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
}
.top-item i {
  color: var(--primary-light);
  font-size: 0.9rem;
}
.top-item:hover {
  color: var(--primary-light);
}
.top-social {
  display: flex;
  gap: 8px;
}
.top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}
.top-social a:hover {
  background: var(--primary);
}

/* ===== HEADER ===== */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}
.nav-close {
  display: none;
}
.nav-menu {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-menu > li > a {
  font-weight: 600;
  color: var(--gray-dark);
  padding: 10px 0;
  position: relative;
  font-size: 0.95rem;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  background: var(--primary-soft);
  border-radius: var(--r-full);
  transition: var(--trans);
}
.header-call-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.header-call-btn:hover .hcb-icon {
  background: white;
  color: var(--primary);
}
.header-call-btn:hover .hcb-text span,
.header-call-btn:hover .hcb-text strong {
  color: white;
}
.hcb-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  animation: callPulse 2s infinite;
}
@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }
}
.hcb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hcb-text span {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
}
.hcb-text strong {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-heading);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--trans);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(160deg, #fff 0%, #fff5f6 30%, #fef0f2 100%);
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.07), transparent 70%);
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-shape-2 {
  bottom: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.04), transparent 70%);
  animation: heroFloat 12s ease-in-out infinite reverse;
}
.hero-shape-3 {
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
  animation: heroFloat 10s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.02);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary-soft);
  border: none;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.12);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: callPulse 1.5s infinite;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--dark);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 92%;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 57, 70, 0.08);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}
.trust-item {
  text-align: left;
}
.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-primary-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-lighter);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.hero-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(230, 57, 70, 0.06) 100%
  );
  pointer-events: none;
}
.hero-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image-wrapper:hover .hero-image-main img {
  transform: scale(1.03);
}
.hero-image-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(230, 57, 70, 0.15);
  border-radius: 28px;
  z-index: 0;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(230, 57, 70, 0.06);
  z-index: 2;
}
.hero-float-card-1 {
  bottom: 28px;
  left: -20px;
  animation: floatY 3s ease-in-out infinite;
}
.hero-float-card-2 {
  top: 30px;
  right: -20px;
  animation: floatY 3.5s ease-in-out infinite 0.5s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hfc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.2;
}
.hero-float-card span {
  font-size: 0.75rem;
  color: var(--gray);
}

.hero-wave {
  position: relative;
  margin-top: 60px;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: white;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-lighter);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
}
.feature-icon-wrap {
  position: relative;
}
.feature-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--r-md) + 4px);
  background: var(--primary-soft);
  opacity: 0;
  transition: var(--trans);
}
.feature-item:hover .feature-icon-wrap::before {
  opacity: 1;
  transform: scale(1.1);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--trans);
  position: relative;
  z-index: 1;
}
.feature-item:hover .feature-icon {
  background: var(--grad-primary-soft);
  color: var(--primary);
  transform: scale(1.05);
}
.feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.87rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header-left {
  text-align: left;
  max-width: 640px;
  margin: 0 0 56px;
}
.section-label {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-light);
}
.why-grid-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card-alt {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: white;
  padding: 28px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--trans);
  border: 1px solid var(--gray-lighter);
}
.why-card-alt:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-color: rgba(230, 57, 70, 0.12);
}
.wca-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--trans);
}
.why-card-alt:hover .wca-icon {
  background: var(--grad-primary-soft);
  transform: scale(1.05);
}
.wca-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.wca-content p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--trans);
}
.why-card:hover .why-icon {
  background: var(--grad-primary);
  color: white;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.why-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--grad-primary-dark);
  padding: 70px 0;
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
}
.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: white;
  position: relative;
  overflow: hidden;
}
.how-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(230, 57, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(230, 57, 70, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.how-card {
  background: white;
  padding: 0;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--trans);
  border: 1px solid var(--gray-lighter);
  overflow: hidden;
}
.how-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.15);
}
.how-card-top {
  background: var(--primary-soft);
  padding: 32px 24px 24px;
  position: relative;
}
.how-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.08);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 18px;
}
.how-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: var(--grad-primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--trans);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}
.how-card:hover .how-icon {
  background: var(--grad-primary);
  color: white;
  transform: scale(1.1);
}
.how-card-body {
  padding: 24px 22px 28px;
}
.how-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.how-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.how-connector {
  display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.testi-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.testi-bg-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.04), transparent 70%);
}
.testi-bg-shape-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
}

.testi-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testi-track {
  position: relative;
  min-height: 260px;
}
.testi-card {
  display: none;
}
.testi-card.active {
  display: block;
  animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testi-card-inner {
  background: white;
  padding: 44px 44px 36px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-lighter);
}
.testi-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--grad-primary-soft);
  border-radius: 0 0 4px 4px;
}
.testi-rating {
  color: #ffb400;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.testi-quote-icon {
  color: rgba(230, 57, 70, 0.08);
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 1.02rem;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-lighter);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
.testi-info {
  text-align: left;
}
.testi-info h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.testi-info span {
  color: var(--gray);
  font-size: 0.83rem;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  font-size: 0.9rem;
  border: 1px solid var(--gray-lighter);
}
.testi-btn:hover {
  background: var(--grad-primary-soft);
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-lighter);
  cursor: pointer;
  transition: var(--trans);
}
.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ===== FAQ ===== */
.faq-section {
  background: white;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--trans);
  border: 1px solid var(--gray-lighter);
}
.faq-item.active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(230, 57, 70, 0.12);
}
.faq-question {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question span {
  flex: 1;
}
.faq-question i {
  width: 30px;
  height: 30px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--trans);
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 26px 22px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== EMERGENCY CTA ===== */
.emergency-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.emergency-card {
  background: var(--grad-primary-dark);
  border-radius: var(--r-lg);
  padding: 48px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
  flex-wrap: wrap;
}
.emergency-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.emergency-content {
  flex: 1;
  min-width: 280px;
}
.emergency-content h2 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.emergency-content p {
  opacity: 0.95;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #b8b8b8;
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--primary-light);
  margin-bottom: 18px;
  padding: 10px 14px;
  background: rgba(230, 57, 70, 0.1);
  border-left: 3px solid var(--primary);
  border-radius: var(--r-sm);
}
.footer-tagline i {
  font-size: 0.65rem;
  margin-right: 6px;
  opacity: 0.6;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
}
.footer-links a i {
  color: var(--primary);
  font-size: 0.7rem;
}
.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-contact-list i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background: #0f0f0f;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: #b8b8b8;
}
.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: var(--trans);
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-whatsapp {
  bottom: 24px;
  right: 24px;
  background: #25d366;
}
.float-call {
  bottom: 90px;
  right: 24px;
  background: var(--primary);
  animation: callPulse 2s infinite;
}
.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  z-index: 99;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .header-call-btn {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 70px 26px 26px;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    z-index: 9999;
  }
  .nav.active {
    right: 0;
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-lighter);
  }
  .nav-menu > li > a {
    padding: 14px 0;
    display: block;
  }
  .nav-menu > li > a::after {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 0 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-image-main img {
    height: 420px;
  }
  .hero-image-accent {
    display: none;
  }
  .hero-float-card-2 {
    right: 10px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.78rem;
    padding: 8px 0;
  }
  .top-right {
    display: none;
  }
  .top-left {
    justify-content: center;
    gap: 14px;
  }

  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 40px 0 0;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .logo img {
    height: 45px;
  }
  .hero-trust {
    padding: 16px 20px;
    gap: 18px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item strong {
    font-size: 1.3rem;
  }
  .hero-image-main img {
    height: 350px;
  }
  .hero-image-accent {
    display: none;
  }
  .hero-float-card {
    padding: 10px 14px;
    gap: 10px;
  }
  .hero-float-card-1 {
    left: 10px;
    bottom: 10px;
  }
  .hero-float-card-2 {
    display: none;
  }
  .hfc-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .hero-wave {
    margin-top: 40px;
  }
  .hero-wave svg {
    height: 50px;
  }

  .features-grid {
    gap: 16px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .why-grid-alt {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card-alt {
    padding: 22px 24px;
    gap: 18px;
  }
  .wca-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
  }
  .why-grid {
    gap: 18px;
  }
  .why-card {
    padding: 28px 22px;
  }

  .emergency-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 26px;
    gap: 20px;
  }
  .emergency-content h2 {
    font-size: 1.4rem;
  }

  .testi-card {
    padding: 30px 24px 28px;
  }
  .testi-text {
    font-size: 0.95rem;
  }

  .footer-top {
    padding: 60px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-logo {
    height: 50px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .logo img {
    height: 40px;
  }
  .top-left {
    font-size: 0.72rem;
    gap: 12px;
  }

  .hero-title {
    font-size: 1.7rem;
  }
  .hero-desc {
    font-size: 0.92rem;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
  .hero-trust {
    width: 100%;
  }
  .trust-item {
    flex: 1;
    text-align: center;
  }
  .hero-buttons .btn {
    flex: 1;
    min-width: 130px;
    justify-content: center;
  }
  .hero-wave svg {
    height: 35px;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-aos="fade-up"] {
  transform: translateY(30px);
}
[data-aos="fade-down"] {
  transform: translateY(-30px);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="zoom-in"] {
  transform: scale(0.92);
}
[data-aos].aos-show {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.88) 0%,
      rgba(255, 107, 107, 0.92) 100%
    ),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: white;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%
    );
}
.page-banner-inner {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  font-weight: 800;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 22px;
  border-radius: var(--r-full);
  backdrop-filter: blur(10px);
}
.breadcrumb a {
  color: white;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a:hover {
  opacity: 1;
}
.bc-sep {
  opacity: 0.5;
}
.bc-current {
  color: white;
  font-weight: 500;
}

/* ===== ABOUT INTRO ===== */
.about-intro {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}
.about-intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-bg-shape {
  position: absolute;
  border-radius: 50%;
}
.about-bg-shape-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.04), transparent 70%);
}
.about-bg-shape-2 {
  bottom: -50px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-intro-images {
  position: relative;
}
.aii-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}
.aii-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.aii-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(230, 57, 70, 0.04) 100%
  );
  pointer-events: none;
}
.aii-secondary {
  position: absolute;
  bottom: -35px;
  right: -25px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.aii-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aii-exp-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 3;
}
.aii-exp-inner {
  background: var(--grad-primary-soft);
  backdrop-filter: blur(12px);
  color: var(--primary);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.1);
}
.aii-exp-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aii-exp-inner span {
  font-size: 0.75rem;
  margin-top: 6px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.aii-stats-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(230, 57, 70, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.aii-stat {
  text-align: center;
}
.aii-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.aii-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}
.aii-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-lighter);
}

.about-intro-content {
  padding-left: 10px;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary-soft);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.about-label i {
  font-size: 0.75rem;
}
.about-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.25;
  color: var(--dark);
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 24px;
}
.about-highlight i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  font-style: italic;
}

.about-text {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-point-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--grad-primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}
.about-point-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-point-text span {
  font-size: 0.85rem;
  color: var(--gray);
}
.about-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== MISSION VISION VALUES ===== */
.mvv-section {
  background: var(--bg-light);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
  border-top: 4px solid transparent;
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}
.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--trans);
}
.mvv-card:hover .mvv-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotateY(180deg);
}
.mvv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.mvv-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== STORY SECTION ===== */
.story-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.story-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(230, 57, 70, 0.02) 100%
  );
  pointer-events: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.story-content .section-label {
  margin-bottom: 14px;
}
.story-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.story-lead {
  margin-bottom: 20px;
}
.story-highlight {
  display: block;
  padding: 16px 22px;
  background: white;
  border-radius: var(--r-md);
  border-left: 4px solid var(--primary);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--dark);
  font-style: italic;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.story-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.story-stats-mini {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  padding: 16px 26px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--gray-lighter);
}
.story-stat-mini {
  text-align: center;
}
.story-stat-mini strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad-primary-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.story-stat-mini span {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}

.story-visual {
  position: relative;
}
.story-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
.story-image-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.story-quote-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: white;
  padding: 22px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  max-width: 260px;
  z-index: 2;
  border: 1px solid var(--gray-lighter);
}
.sqc-line {
  width: 36px;
  height: 3px;
  background: var(--grad-primary-soft);
  border-radius: 3px;
  margin-bottom: 12px;
}
.story-quote-card p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--dark);
}
.story-quote-card span {
  font-size: 0.82rem;
  color: var(--gray);
}
.story-deco-1 {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(230, 57, 70, 0.08);
  border-radius: 50%;
  z-index: 0;
}
.story-deco-2 {
  position: absolute;
  bottom: 10%;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(230, 57, 70, 0.06);
  border-radius: 50%;
  z-index: 0;
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: var(--bg-light);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gray-lighter);
  transform: translateX(-50%);
}
.timeline-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 20px;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-marker {
  position: absolute;
  top: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.timeline-item:hover .timeline-marker {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.timeline-item:nth-child(odd) .timeline-marker {
  right: -25px;
}
.timeline-item:nth-child(even) .timeline-marker {
  left: -25px;
}
.timeline-content {
  background: white;
  padding: 26px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border: 1px solid var(--gray-lighter);
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.timeline-year {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border-bottom: 4px solid transparent;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.team-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.08);
}
.team-social {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  transition: bottom 0.4s ease;
}
.team-card:hover .team-social {
  bottom: 18px;
}
.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.team-info {
  padding: 24px 22px 26px;
  text-align: center;
}
.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.team-info p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-intro {
    padding: 70px 0;
  }
  .about-intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-intro-content {
    padding-left: 0;
  }
  .aii-main img {
    height: 420px;
  }
  .aii-secondary {
    width: 160px;
    height: 160px;
    right: -10px;
    bottom: -25px;
  }
  .aii-stats-row {
    margin-top: 50px;
    padding: 14px 22px;
  }
  .story-image-main img {
    height: 400px;
  }
  .story-stats-mini {
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Timeline mobile */
  .timeline-line {
    left: 25px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 70px;
    padding-right: 10px;
  }
  .timeline-item .timeline-marker {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 70px 0;
  }
  .page-banner h1 {
    font-size: 1.8rem;
  }

  .about-intro {
    padding: 50px 0;
  }
  .about-intro-grid {
    gap: 50px;
  }
  .aii-main img {
    height: 350px;
  }
  .aii-secondary {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -8px;
    border-width: 5px;
  }
  .aii-exp-inner {
    padding: 16px 20px;
  }
  .aii-exp-inner strong {
    font-size: 1.6rem;
  }
  .aii-stats-row {
    margin-top: 40px;
    padding: 12px 18px;
    gap: 16px;
  }
  .aii-stat-num {
    font-size: 1.1rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
  .about-cta .btn {
    flex: 1;
    min-width: 140px;
  }

  .mvv-card {
    padding: 32px 24px;
  }
  .mvv-icon {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .story-image-main img {
    height: 320px;
  }
  .story-quote-card {
    bottom: -18px;
    left: 10px;
    padding: 18px 22px;
    max-width: 220px;
  }
  .story-quote-card p {
    font-size: 1rem;
  }
  .story-deco-1,
  .story-deco-2 {
    display: none;
  }

  .timeline-content {
    padding: 20px 22px;
  }
  .timeline-marker {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline-line {
    left: 21px;
  }
  .timeline-item .timeline-marker {
    left: 0 !important;
  }

  .team-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .aii-stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 12px 16px;
  }
  .aii-stat-divider {
    display: none;
  }

  .about-highlight {
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .story-stats-mini {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 14px 18px;
  }
  .story-stat-mini strong {
    font-size: 1rem;
  }
  .story-deco-1,
  .story-deco-2 {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-img-wrap {
    height: 260px;
  }
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* ===== SERVICES INTRO ===== */
.services-intro {
  background: white;
}

.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sqg-card {
  background: var(--bg-light);
  padding: 24px 12px;
  border-radius: var(--r-md);
  text-align: center;
  transition: var(--trans);
  border: 2px solid transparent;
  display: block;
}
.sqg-card:hover {
  background: white;
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.sqg-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--trans);
}
.sqg-card:hover .sqg-icon {
  transform: rotate(-8deg) scale(1.1);
}
.sqg-card h4 {
  font-size: 0.85rem;
  margin: 0;
  color: var(--dark);
  font-weight: 600;
}

/* ===== DETAILED SERVICE BLOCKS ===== */
.services-detail {
  background: var(--bg-light);
  padding-top: 80px;
}
.service-block {
  margin-bottom: 70px;
  scroll-margin-top: 100px;
}
.service-block:last-child {
  margin-bottom: 0;
}

.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  border-radius: var(--r-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-block-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--grad-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}
.service-block:hover .service-block-grid::before {
  transform: scaleY(1);
}
.service-block.reverse .service-block-grid {
  direction: rtl;
}
.service-block.reverse .service-block-content {
  direction: ltr;
}
.service-block.reverse .service-block-image {
  direction: ltr;
}

.service-block-content {
  position: relative;
}
.sb-num {
  position: absolute;
  top: -10px;
  right: 0;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-soft);
  line-height: 1;
  z-index: 0;
}
.sb-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-primary);
  position: relative;
  z-index: 1;
}
.service-block-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--dark);
}
.sb-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  font-style: italic;
}
.service-block-content > p {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.sb-features-title {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}
.sb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}
.sb-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.sb-features li i {
  width: 18px;
  height: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.sb-cta {
  margin-top: 10px;
}

.service-block-image {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-block:hover .service-block-image img {
  transform: scale(1.05);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  border: 2px solid transparent;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad-primary);
  color: white;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-primary);
}
.price-header {
  padding: 32px 30px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-lighter);
}
.price-card.featured .price-header {
  background: var(--primary-soft);
}
.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.price-header p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}
.price-body {
  padding: 28px 30px 32px;
}
.price-features {
  margin-bottom: 26px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--gray-dark);
  border-bottom: 1px dashed var(--gray-lighter);
}
.price-features li:last-child {
  border-bottom: none;
}
.price-features li i {
  color: var(--primary);
  font-size: 0.95rem;
  width: 18px;
  flex-shrink: 0;
}
.price-features li.muted {
  color: var(--gray-light);
  text-decoration: line-through;
}
.price-features li.muted i {
  color: var(--gray-light);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 22px 26px;
  background: var(--primary-soft);
  border-radius: var(--r-md);
  border-left: 4px solid var(--primary);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pricing-note i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.pricing-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-dark);
}
.pricing-note strong {
  color: var(--primary);
}
.pricing-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== SERVICES PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-block-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px;
  }
  .service-block.reverse .service-block-grid {
    direction: ltr;
  }
  .service-block-image {
    min-height: 320px;
    order: -1;
  }
  .service-block.reverse .service-block-image {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .services-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .sqg-card {
    padding: 18px 10px;
  }
  .sqg-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .sqg-card h4 {
    font-size: 0.78rem;
  }

  .service-block {
    margin-bottom: 50px;
  }
  .service-block-grid {
    padding: 28px 22px;
    gap: 24px;
  }
  .sb-num {
    font-size: 2.8rem;
  }
  .sb-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .sb-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-block-image {
    min-height: 250px;
  }

  .pricing-note {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .services-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: white;
}

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.gal-btn {
  padding: 10px 22px;
  background: var(--bg-light);
  color: var(--gray-dark);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.gal-btn i {
  font-size: 0.85rem;
  color: var(--primary);
}
.gal-btn:hover {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.gal-btn.active {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.gal-btn.active i {
  color: white;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  background: var(--bg-light);
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-info {
  width: 100%;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.gal-item:hover .gal-info {
  transform: translateY(0);
}
.gal-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gal-info h4 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}
.gal-zoom {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.gal-item:hover .gal-zoom {
  transform: rotate(360deg);
}

/* Hidden state for filtered items */
.gal-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  display: none;
}

/* ===== NO IMAGES FOUND ===== */
.no-images-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-dark);
}
.no-images-found i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.5;
}
.no-images-found h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.no-images-found p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 400px;
  margin: 0 auto;
}

/* ===== GALLERY CTA ===== */
.gallery-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: var(--r-lg);
}
.gallery-cta p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.lightbox.active {
  display: flex;
  animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lb-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lbZoomIn 0.4s ease;
}
@keyframes lbZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lb-caption {
  color: white;
  text-align: center;
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  backdrop-filter: blur(5px);
}

.lb-counter {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.lb-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100000;
  transition: var(--trans);
}
.lb-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--trans);
  backdrop-filter: blur(10px);
  z-index: 100000;
}
.lb-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}
.lb-prev {
  left: 24px;
}
.lb-next {
  right: 24px;
}

/* ===== GALLERY RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-filters {
    gap: 8px;
  }
  .gal-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .gal-info h4 {
    font-size: 0.95rem;
  }
  .gal-zoom {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .gallery-cta {
    padding: 30px 20px;
  }
  .gallery-cta p {
    font-size: 1rem;
  }

  .lightbox {
    padding: 20px;
  }
  .lb-close {
    width: 42px;
    height: 42px;
    top: 16px;
    right: 16px;
  }
  .lb-nav {
    width: 44px;
    height: 44px;
  }
  .lb-prev {
    left: 12px;
  }
  .lb-next {
    right: 12px;
  }
  .lb-content img {
    max-height: 70vh;
  }
  .lb-counter {
    top: -40px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gal-item.tall {
    grid-row: span 1;
  }

  .gal-btn i {
    display: none;
  }
  .gal-btn {
    padding: 8px 14px;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
  background: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ci-card {
  background: var(--bg-light);
  padding: 36px 28px;
  border-radius: var(--r-md);
  text-align: center;
  transition: var(--trans);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.ci-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ci-card:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}
.ci-card:hover::before {
  transform: scaleX(1);
}

.ci-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: var(--trans);
}
.ci-card:hover .ci-icon-wrap {
  background: var(--grad-primary);
  color: white;
  transform: rotateY(180deg);
}
.ci-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.ci-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.ci-card p strong {
  color: var(--primary);
  font-weight: 600;
}
.ci-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.ci-link:hover {
  gap: 12px;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  background: var(--bg-light);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: white;
  padding: 45px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary);
}
.cf-header {
  margin-bottom: 32px;
}
.cf-header .section-label {
  margin-bottom: 12px;
}
.cf-header .section-title {
  margin-bottom: 12px;
  font-size: 1.7rem;
}
.cf-header p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}
.cf-header p strong {
  color: var(--primary);
  font-weight: 700;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form label span {
  color: var(--primary);
}

.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
  transition: var(--trans);
}
.textarea-wrap .input-icon {
  top: 18px;
  transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--gray-lighter);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  background: white;
  transition: var(--trans);
  color: var(--dark);
  font-family: var(--font-body);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}
.contact-form input:focus + .input-icon,
.contact-form select:focus + .input-icon,
.contact-form textarea:focus + .input-icon {
  color: var(--primary);
}
.input-wrap:focus-within .input-icon {
  color: var(--primary);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 15px;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A1A1A1' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-error {
  color: var(--primary);
  font-size: 0.8rem;
  display: none;
  margin-top: 6px;
  font-weight: 500;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.form-group.error .form-error {
  display: block;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--r-sm);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-dark);
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border-radius: var(--r-sm);
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  border-left: 4px solid #28a745;
}
.form-success.show {
  display: block;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.form-success i {
  margin-right: 8px;
  color: #28a745;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-card {
  background: white;
  padding: 28px 26px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.cs-card:hover {
  box-shadow: var(--shadow-md);
}
.cs-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-card h3 i {
  color: var(--primary);
}
.cs-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Emergency Card */
.cs-emergency {
  background: var(--grad-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cs-emergency::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
}
.cs-emergency h3 {
  color: white;
  justify-content: center;
  font-size: 1.3rem;
}
.cs-emergency p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}
.cs-emergency-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}
.emergency-pulse-ring {
  position: absolute;
  inset: -8px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.cs-emergency-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--trans);
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}
.cs-emergency-num:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}
.cs-emergency-num:last-child {
  margin-bottom: 0;
}

/* Features Card */
.cs-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.6;
}
.cs-features li i {
  width: 18px;
  height: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social Card */
.cs-social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cs-social-btn {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: white;
  font-size: 1.1rem;
  transition: var(--trans);
}
.cs-fb {
  background: #1877f2;
}
.cs-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.cs-wa {
  background: #25d366;
}
.cs-li {
  background: #0a66c2;
}
.cs-social-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 90px 0;
  background: white;
}
.map-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.map-header .section-label {
  display: inline-block;
  margin-bottom: 16px;
}
.map-header .section-title {
  margin-bottom: 16px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrapper iframe {
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}
.map-wrapper:hover iframe {
  filter: grayscale(0);
}

.map-info-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 22px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 380px;
  border-left: 4px solid var(--primary);
}
.mic-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mic-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.mic-content p {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
.mic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}
.mic-link:hover {
  gap: 10px;
}

/* ===== CONTACT PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form-wrap {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ci-card {
    padding: 30px 24px;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }
  .cf-header .section-title {
    font-size: 1.4rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cs-card {
    padding: 24px 22px;
  }

  .map-section {
    padding: 60px 0;
  }
  .map-wrapper iframe {
    height: 380px;
  }
  .map-info-card {
    position: static;
    margin: -50px 16px 16px;
    max-width: none;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 24px 18px;
  }
  .input-icon {
    left: 14px;
    font-size: 0.88rem;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding-left: 38px;
    font-size: 0.9rem;
  }

  .cs-emergency-icon {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  .cs-social-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .cs-social-btn {
    height: 44px;
    font-size: 1rem;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}

.logo img {
  height: 75px; /* increased from 56px */
  width: auto;
  object-fit: contain;
  max-width: 220px;
}

.header-inner {
  padding: 10px 24px; /* reduce padding if needed */
}

/* HEADER LOGO */
.logo img {
  height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* FOOTER LOGO */
.footer-logo {
  height: 90px;
  width: auto;
  max-width: 280px;
  margin-bottom: 18px;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo img {
    height: 70px;
  }
  .footer-logo {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }
  .footer-logo {
    height: 60px;
  }
}

/* ==========================================================================
   LOGO SIZE OVERRIDE - FORCED
   ========================================================================== */

/* HEADER LOGO - Larger Size */
.logo img,
.header .logo img,
.header-inner .logo img {
  height: 120px !important;
  width: auto !important;
  max-width: 340px !important;
  object-fit: contain !important;
}

/* Adjust header padding so it doesn't get too tall */
.header-inner {
  padding: 8px 24px !important;
}

/* FOOTER LOGO - Same Large Size */
.footer-logo,
.footer .footer-logo,
.footer-col .footer-logo {
  height: 120px !important;
  width: auto !important;
  max-width: 340px !important;
  margin-bottom: 20px !important;
  background: white !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  display: inline-block !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
  .logo img,
  .header .logo img {
    height: 95px !important;
    max-width: 280px !important;
  }
  .footer-logo {
    height: 95px !important;
    max-width: 280px !important;
    padding: 12px 16px !important;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .logo img,
  .header .logo img {
    height: 75px !important;
    max-width: 230px !important;
  }
  .footer-logo {
    height: 75px !important;
    max-width: 230px !important;
    padding: 10px 14px !important;
  }
  .header-inner {
    padding: 8px 16px !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img,
  .header .logo img {
    height: 60px !important;
    max-width: 190px !important;
  }
  .footer-logo {
    height: 60px !important;
    max-width: 190px !important;
    padding: 8px 12px !important;
  }
}

/* ==========================================================================
   LOGO SIZE OVERRIDE - FINAL
   ========================================================================== */

/* HEADER LOGO - Large Size */
.logo img,
.header .logo img,
.header-inner .logo img {
  height: 90px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain !important;
}

.header-inner {
  padding: 8px 24px !important;
}

/* FOOTER LOGO - Rectangle, Balanced */
.footer-logo,
.footer .footer-logo,
.footer-col .footer-logo {
  height: 70px !important;
  width: auto !important;
  max-width: 240px !important;
  margin-bottom: 20px !important;
  background: white !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* TABLET */
@media (max-width: 1024px) {
  .logo img,
  .header .logo img {
    height: 75px !important;
    max-width: 240px !important;
  }
  .footer-logo {
    height: 65px !important;
    max-width: 220px !important;
    padding: 8px 12px !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo img,
  .header .logo img {
    height: 60px !important;
    max-width: 200px !important;
  }
  .footer-logo {
    height: 60px !important;
    max-width: 200px !important;
    padding: 6px 10px !important;
  }
  .header-inner {
    padding: 8px 16px !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img,
  .header .logo img {
    height: 50px !important;
    max-width: 170px !important;
  }
  .footer-logo {
    height: 55px !important;
    max-width: 180px !important;
    padding: 6px 10px !important;
  }
}

/* ==========================================================================
   LOGO SIZE OVERRIDE - WITH FIXED MOBILE VIEW
   ========================================================================== */

/* HEADER LOGO */
.logo img,
.header .logo img,
.header-inner .logo img {
  height: 90px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain !important;
}

.header-inner {
  padding: 8px 24px !important;
}

/* FOOTER LOGO */
.footer-logo,
.footer .footer-logo,
.footer-col .footer-logo {
  height: 70px !important;
  width: auto !important;
  max-width: 240px !important;
  margin-bottom: 20px !important;
  background: white !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* TABLET (1024px) */
@media (max-width: 1024px) {
  .logo img,
  .header .logo img {
    height: 75px !important;
    max-width: 240px !important;
  }
  .footer-logo {
    height: 65px !important;
    max-width: 220px !important;
  }
}

/* MOBILE (768px) */
@media (max-width: 768px) {
  .logo img,
  .header .logo img {
    height: 65px !important;
    max-width: 210px !important;
  }
  .footer-logo {
    height: 60px !important;
    max-width: 200px !important;
    padding: 8px 12px !important;
  }
  .header-inner {
    padding: 10px 16px !important;
  }
}

/* SMALL MOBILE (480px) */
@media (max-width: 480px) {
  .logo img,
  .header .logo img {
    height: 55px !important;
    max-width: 180px !important;
  }
  .footer-logo {
    height: 55px !important;
    max-width: 180px !important;
    padding: 6px 10px !important;
  }
  .header-inner {
    padding: 10px 14px !important;
  }
}

/* EXTRA SMALL (360px - your screen is 320px) */
@media (max-width: 380px) {
  .logo img,
  .header .logo img {
    height: 48px !important;
    max-width: 160px !important;
  }
  .footer-logo {
    height: 50px !important;
    max-width: 170px !important;
    padding: 6px 10px !important;
  }
  .header-inner {
    padding: 8px 12px !important;
  }
}

/* ==========================================================================
   LOGO & FLOATING BUTTONS - FINAL CLEAN VERSION
   ========================================================================== */

/* ===== HEADER LOGO ===== */
.header-inner {
  padding: 5px 24px !important;
  min-height: 110px;
}

.logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0;
  height: auto;
  max-width: 380px;
}

.logo img {
  height: 130px !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: 130px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  height: 90px !important;
  width: auto !important;
  max-width: 280px !important;
  margin-bottom: 20px !important;
  background: white !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  display: inline-block !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* ===== TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .header-inner {
    min-height: 90px;
  }
  .logo img {
    height: 100px !important;
    max-height: 100px !important;
  }
  .footer-logo {
    height: 80px !important;
    max-width: 250px !important;
  }
}

/* ===== MOBILE (768px) ===== */
@media (max-width: 768px) {
  .header-inner {
    padding: 5px 16px !important;
    min-height: 80px;
  }
  .logo img {
    height: 85px !important;
    max-height: 85px !important;
  }
  .footer-logo {
    height: 70px !important;
    max-width: 220px !important;
    padding: 10px 14px !important;
  }
}

/* ===== SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .header-inner {
    padding: 5px 12px !important;
    min-height: 70px;
  }
  .logo img {
    height: 70px !important;
    max-height: 70px !important;
  }
  .footer-logo {
    height: 60px !important;
    max-width: 200px !important;
    padding: 8px 12px !important;
  }
}

/* ==========================================================================
   FLOATING BUTTONS - ALL ON RIGHT SIDE (SAME STYLE)
   ========================================================================== */

.float-whatsapp {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  width: 54px !important;
  height: 54px !important;
  background: #25d366 !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  z-index: 99 !important;
  transition: all 0.3s ease !important;
}

.float-call {
  position: fixed !important;
  bottom: 90px !important;
  right: 24px !important;
  left: auto !important;
  width: 54px !important;
  height: 54px !important;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  z-index: 99 !important;
  animation: callPulse 2s infinite;
}

.back-top {
  position: fixed !important;
  bottom: 156px !important;
  right: 24px !important;
  left: auto !important;
  width: 54px !important;
  height: 54px !important;
  background: var(--dark) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  z-index: 99 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease !important;
}

.back-top.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.float-whatsapp:hover,
.float-call:hover,
.back-top:hover {
  transform: scale(1.1) !important;
}

.back-top:hover {
  background: var(--primary) !important;
}

/* Mobile floating buttons */
@media (max-width: 768px) {
  .float-whatsapp,
  .float-call,
  .back-top {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
    right: 16px !important;
  }
  .float-whatsapp {
    bottom: 16px !important;
  }
  .float-call {
    bottom: 76px !important;
  }
  .back-top {
    bottom: 136px !important;
  }
}

/* ==========================================================================
   LOGO - FORCE LARGE SIZE WITH SCALE TRANSFORM
   ========================================================================== */

/* HEADER LOGO - Make it visibly larger */
.header-inner {
  padding: 5px 24px !important;
  min-height: 100px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
  flex-shrink: 0;
}

.logo img {
  height: 80px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  transform: scale(2) !important;
  transform-origin: left center !important;
  margin-left: 30px !important;
}

/* FOOTER LOGO - Make it visibly larger */
.footer-col .footer-logo {
  height: 60px !important;
  width: auto !important;
  max-width: none !important;
  margin-bottom: 30px !important;
  margin-left: 30px !important;
  background: white !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.8) !important;
  transform-origin: left center !important;
}

/* TABLET */
@media (max-width: 1024px) {
  .logo img {
    transform: scale(1.7) !important;
    height: 70px !important;
    margin-left: 25px !important;
  }
  .footer-col .footer-logo {
    transform: scale(1.5) !important;
    margin-left: 25px !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo img {
    transform: scale(1.5) !important;
    height: 55px !important;
    margin-left: 20px !important;
  }
  .footer-col .footer-logo {
    transform: scale(1.4) !important;
    margin-left: 22px !important;
  }
  .header-inner {
    min-height: 75px !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img {
    transform: scale(1.3) !important;
    height: 50px !important;
    margin-left: 15px !important;
  }
  .footer-col .footer-logo {
    transform: scale(1.3) !important;
    margin-left: 20px !important;
  }
}

/* ==========================================================================
   FLOATING BUTTONS - SAME STYLE, ALL ON RIGHT
   ========================================================================== */

.back-top {
  position: fixed !important;
  bottom: 156px !important;
  right: 24px !important;
  left: auto !important;
  width: 54px !important;
  height: 54px !important;
  background: #3f7fd2 !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  z-index: 99 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease !important;
}

.back-top.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-top:hover {
  background: var(--primary) !important;
  transform: scale(1.1) !important;
}

@media (max-width: 768px) {
  .back-top {
    width: 48px !important;
    height: 48px !important;
    right: 16px !important;
    bottom: 136px !important;
  }
}

/* ==========================================================================
   MOBILE LOGO + BUTTON FIXES
   ========================================================================== */

/* Mobile - Make logo bigger */
@media (max-width: 768px) {
  .logo img {
    transform: scale(1.8) !important;
    height: 50px !important;
    margin-left: 25px !important;
  }
  .footer-col .footer-logo {
    transform: scale(1.5) !important;
    margin-left: 25px !important;
  }
  .header-inner {
    min-height: 80px !important;
    padding: 5px 12px !important;
  }

  /* Fix Book Appointment button text cut off */
  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .logo img {
    transform: scale(1.7) !important;
    height: 45px !important;
    margin-left: 20px !important;
  }
  .footer-col .footer-logo {
    transform: scale(1.4) !important;
    margin-left: 22px !important;
  }
  .header-inner {
    min-height: 70px !important;
    padding: 5px 10px !important;
  }

  .hero-buttons .btn {
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
  }
}

/* Extra Small (320px - 380px) */
@media (max-width: 380px) {
  .logo img {
    transform: scale(1.6) !important;
    height: 42px !important;
    margin-left: 18px !important;
  }
  .header-inner {
    padding: 5px 8px !important;
  }

  .hero-buttons .btn {
    padding: 12px 14px !important;
    font-size: 0.8rem !important;
  }
  .hero-buttons .btn i {
    font-size: 0.85rem !important;
  }
}
/* ==========================================================================
   HERO SECTION - NEW DESIGN
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 100px;
  background: linear-gradient(135deg, #fff8f9 0%, #fef0f2 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.1);
}
.hero-badge i {
  color: var(--primary);
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.hero-title-underline {
  position: relative;
  display: inline-block;
  color: var(--primary);
}
.underline-svg {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 14px;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.8;
}

/* Call Card */
.hero-call-card {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 420px;
}
.hcc-line {
  width: 4px;
  background: var(--primary);
  border-radius: 4px;
  flex-shrink: 0;
}
.hcc-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.hcc-content a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: var(--trans);
}
.hcc-content a:hover {
  color: var(--primary);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--dark);
  color: white;
}
.btn-dark:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 100%
  );
  z-index: 2;
}
.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Doctor Floating Stack */
.hero-doctor-stack {
  position: absolute;
  right: -20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.hd-card {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: var(--trans);
  cursor: pointer;
}
.hd-card:hover {
  transform: scale(1.1) translateX(-5px);
}
.hd-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding: 50px 0 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    height: 500px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 60px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-call-card {
    max-width: 100%;
  }
  .hcc-content h4 {
    font-size: 1rem;
  }
  .hero-visual {
    height: 420px;
  }
  .hero-main-image {
    border-radius: 18px;
  }
  .hd-card {
    width: 56px;
    height: 56px;
  }
  .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-visual {
    height: 360px;
  }
  .hero-main-image {
    border-radius: 160px 160px 18px 18px;
  }
  .hero-doctor-stack {
    right: -10px;
    bottom: 20px;
  }
  .hd-card {
    width: 48px;
    height: 48px;
    border-width: 3px;
  }
}

/* ==========================================================================
   HOW IT WORKS - NEW TIMELINE DESIGN
   ========================================================================== */
.how-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.how-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.how-bg-circle-1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
}
.how-bg-circle-2 {
  bottom: -100px;
  left: -150px;
  width: 350px;
  height: 350px;
}

/* Section Label with icon */
.section-label i {
  margin-right: 4px;
  font-size: 0.75rem;
}

/* TIMELINE LAYOUT */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

/* Progress Line connecting all steps */
.how-progress-line {
  position: absolute;
  top: 70px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: var(--gray-lighter);
  z-index: 0;
  border-radius: 4px;
}
.how-progress-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 4px;
  animation: lineGrow 2s ease forwards;
  transform-origin: left;
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* INDIVIDUAL STEP */
.how-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

/* Circle with icon */
.how-step-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.12);
  border: 4px solid white;
  transition: var(--trans);
  z-index: 2;
}
.how-step:hover .how-step-circle {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.25);
}

.how-step-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--trans);
}
.how-step:hover .how-step-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotateY(180deg);
}

/* Number Badge */
.how-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  border: 3px solid white;
  z-index: 3;
}

/* Step Content */
.how-step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}
.how-step-content p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTTOM CTA */
.how-cta {
  margin-top: 70px;
  text-align: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px dashed rgba(230, 57, 70, 0.2);
}
.how-cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .how-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
  .how-progress-line {
    display: none;
  }
  .how-step-circle {
    width: 120px;
    height: 120px;
  }
  .how-step-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .how-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .how-step-circle {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }
  .how-step-icon {
    font-size: 2rem;
  }
  .how-step-number {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .how-step-content h3 {
    font-size: 1.15rem;
  }
  .how-cta {
    padding: 28px 24px;
    gap: 18px;
    margin-top: 50px;
  }
  .how-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .how-step-circle {
    width: 100px;
    height: 100px;
  }
  .how-step-icon {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   ABOUT INTRO - NEW MEDILO STYLE
   ========================================================================== */
.about-intro-new {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

/* Decorative Half Ring */
.ain-ring {
  position: absolute;
  top: 80px;
  left: -180px;
  width: 380px;
  height: 380px;
  border: 35px solid var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

/* Decorative Dots Pattern */
.ain-dots {
  position: absolute;
  bottom: 120px;
  left: 30%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(
    circle,
    var(--primary) 1.5px,
    transparent 1.5px
  );
  background-size: 14px 14px;
  opacity: 0.2;
  z-index: 0;
}

/* GRID LAYOUT */
.ain-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ============ LEFT: STACKED IMAGES ============ */
.ain-images {
  position: relative;
  padding-bottom: 40px;
}

.ain-img-top {
  position: relative;
  width: 90%;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  margin-left: auto;
  z-index: 2;
}
.ain-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ain-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 8px solid white;
  z-index: 3;
}
.ain-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience Badge - Big Circle */
.ain-exp-badge {
  position: absolute;
  bottom: 200px;
  left: 45%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  background: var(--grad-primary-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
  z-index: 4;
  border: 5px solid white;
}
.ain-exp-badge strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}
.ain-exp-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============ RIGHT: CONTENT ============ */
.ain-content {
  padding-left: 10px;
}

.ain-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
}
.ain-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-right: 4px;
}
.ain-label i {
  color: var(--primary);
}

.ain-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.ain-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* TWO SUPPORT CARDS */
.ain-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.ain-support-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ainsc-icon {
  width: 64px;
  height: 64px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-lighter);
  transition: var(--trans);
}
.ain-support-card:hover .ainsc-icon {
  background: var(--grad-primary);
  color: white;
  transform: translateY(-4px);
}

.ainsc-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.ainsc-divider {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 10px;
}
.ainsc-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* HIGHLIGHT BOX */
.ain-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-lighter);
  margin-bottom: 30px;
}
.ain-highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ain-highlight p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.ain-read-more {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  transition: var(--trans);
}
.ain-read-more:hover {
  gap: 10px;
}
.ain-read-more i {
  font-size: 0.7rem;
}

/* CTA BUTTON */
.ain-cta-btn {
  margin-top: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-intro-new {
    padding: 70px 0;
  }
  .ain-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .ain-content {
    padding-left: 0;
  }
  .ain-images {
    max-width: 600px;
    margin: 0 auto;
  }
  .ain-ring {
    width: 280px;
    height: 280px;
    border-width: 25px;
    left: -140px;
  }
}

@media (max-width: 768px) {
  .about-intro-new {
    padding: 50px 0;
  }
  .ain-img-top {
    height: 360px;
    width: 100%;
  }
  .ain-img-bottom {
    width: 55%;
    height: 200px;
    bottom: -10px;
    border-width: 6px;
  }
  .ain-exp-badge {
    width: 100px;
    height: 100px;
    bottom: 170px;
    left: auto;
    right: 10px;
    transform: none;
  }
  .ain-exp-badge strong {
    font-size: 1.7rem;
  }
  .ain-exp-badge span {
    font-size: 0.72rem;
  }
  .ain-support-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ain-ring {
    width: 200px;
    height: 200px;
    border-width: 18px;
    left: -100px;
    top: 40px;
  }
  .ain-dots {
    width: 80px;
    height: 80px;
    background-size: 10px 10px;
  }
}

@media (max-width: 480px) {
  .ain-img-top {
    height: 300px;
  }
  .ain-img-bottom {
    height: 170px;
    width: 60%;
  }
  .ain-exp-badge {
    width: 90px;
    height: 90px;
    bottom: 150px;
  }
  .ainsc-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US - NEW MEDILO HOVER STYLE
   ========================================================================== */
.why-new-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* SPLIT HEADER */
.why-new-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.why-new-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
}
.why-new-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.why-new-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.why-new-header-right p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* CARDS GRID */
.why-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* INDIVIDUAL CARD */
.why-new-card {
  position: relative;
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  z-index: 1;
  min-height: 240px;
}

/* Background Image (hidden by default) */
.why-new-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Overlay (hidden by default) */
.wnc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(193, 18, 31, 0.92) 0%,
    rgba(230, 57, 70, 0.88) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* HOVER EFFECT */
.why-new-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.25);
}
.why-new-card:hover::before {
  opacity: 1;
}
.why-new-card:hover .wnc-overlay {
  opacity: 1;
}

/* Number Badge */
.wnc-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.15);
  z-index: 2;
  transition: color 0.5s ease;
}
.why-new-card:hover .wnc-number {
  color: rgba(255, 255, 255, 0.4);
}

/* Icon Wrap */
.wnc-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  z-index: 2;
  transition: all 0.5s ease;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}
.wnc-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--primary);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: all 0.5s ease;
}
.why-new-card:hover .wnc-icon-wrap {
  background: white;
  color: var(--primary);
}
.why-new-card:hover .wnc-icon-wrap::after {
  border-left-color: white;
}

/* Card Content */
.why-new-card h3 {
  position: relative;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
  z-index: 2;
  transition: color 0.5s ease;
  font-weight: 700;
}
.why-new-card p {
  position: relative;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  z-index: 2;
  transition: color 0.5s ease;
}
.why-new-card:hover h3,
.why-new-card:hover p {
  color: white;
}

/* BOTTOM CTA */
.why-new-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}
.why-new-cta i {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-new-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-new-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-new-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-new-card {
    padding: 28px 22px;
    min-height: 220px;
  }
  .wnc-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  .why-new-card h3 {
    font-size: 1.1rem;
  }
  .why-new-cta {
    font-size: 0.95rem;
    margin-top: 40px;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .why-new-grid {
    grid-template-columns: 1fr;
  }
  .why-new-card {
    min-height: auto;
  }
}

/* ==========================================================================
   OUR JOURNEY - MODERN ROADMAP DESIGN
   ========================================================================== */
.journey-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle Grid Background */
.journey-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

/* ROADMAP CONTAINER */
.journey-roadmap {
  position: relative;
  margin-top: 70px;
  padding: 60px 0 40px;
}

/* Dotted SVG Path */
.journey-path {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* CARDS GRID */
.journey-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* INDIVIDUAL CARD */
.journey-card {
  position: relative;
  text-align: center;
  padding-top: 40px;
}
.journey-card.jc-up {
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.journey-card.jc-up .jc-content {
  order: 1;
}
.journey-card.jc-up .jc-marker {
  order: 2;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Year as Big Background Number */
.jc-year-bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(230, 57, 70, 0.06);
  line-height: 1;
  letter-spacing: -3px;
  z-index: 0;
  pointer-events: none;
  transition: var(--trans);
}
.journey-card.jc-up .jc-year-bg {
  top: auto;
  bottom: -30px;
}
.journey-card:hover .jc-year-bg {
  color: rgba(230, 57, 70, 0.12);
  transform: translateX(-50%) scale(1.05);
}

/* Marker on Path */
.jc-marker {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.jc-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--primary);
  display: block;
  position: relative;
  transition: var(--trans);
}
.jc-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: all 0.4s ease;
}
.journey-card:hover .jc-dot {
  background: var(--primary);
  transform: scale(1.2);
}
.journey-card:hover .jc-dot::after {
  opacity: 0.4;
  inset: -12px;
}
.jc-dot-active {
  background: var(--primary) !important;
}
.jc-dot-active::after {
  opacity: 0.5;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* CARD CONTENT */
.jc-content {
  background: white;
  padding: 28px 22px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: var(--trans);
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}
.journey-card:hover .jc-content {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.18);
  border-color: rgba(230, 57, 70, 0.15);
}
.jc-content-active {
  background: linear-gradient(135deg, #fff5f6 0%, #ffe8eb 100%);
  border-color: var(--primary) !important;
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

/* Icon Inside Card */
.jc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--grad-primary);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
  transition: var(--trans);
}
.journey-card:hover .jc-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Year Tag */
.jc-year-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Card Heading & Text */
.jc-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 700;
}
.jc-content p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ============ BOTTOM STATS BAR ============ */
.journey-bottom {
  margin-top: 60px;
  background: white;
  border-radius: 20px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.08);
}

.jb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.jb-item i {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.jb-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.jb-item span {
  font-size: 0.82rem;
  color: var(--gray);
}
.jb-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-lighter);
  flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .journey-cards {
    gap: 14px;
  }
  .jc-content {
    padding: 24px 18px 22px;
  }
  .jc-year-bg {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .journey-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
  }
  .journey-path {
    display: none;
  }
  .journey-card.jc-up {
    padding-top: 40px;
    padding-bottom: 0;
    flex-direction: column;
  }
  .journey-card.jc-up .jc-content {
    order: 0;
  }
  .journey-card.jc-up .jc-marker {
    order: 0;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .journey-card.jc-up .jc-year-bg {
    top: -30px;
    bottom: auto;
  }

  .journey-bottom {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 28px;
  }
  .jb-item {
    flex: 0 0 calc(50% - 12px);
  }
  .jb-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .journey-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .jc-year-bg {
    font-size: 3.5rem;
  }
  .jc-content {
    padding: 22px 16px 20px;
  }
  .jc-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .jc-content h3 {
    font-size: 1rem;
  }

  .journey-bottom {
    padding: 22px 20px;
  }
  .jb-item strong {
    font-size: 1rem;
  }
  .jb-item span {
    font-size: 0.78rem;
  }
  .jb-item i {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .journey-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .journey-roadmap {
    padding: 40px 0 20px;
  }
  .jb-item {
    flex: 0 0 100%;
  }
}
/* ==========================================================================
   OUR JOURNEY - CIRCULAR ORBIT (BALANCED & COMPACT)
   ========================================================================== */
.journey-orbit-section {
  background: linear-gradient(180deg, #ffffff 0%, #fef0f2 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

/* Background Decoration */
.jo-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.jo-bg-shape-1 {
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.08) 0%,
    transparent 70%
  );
}
.jo-bg-shape-2 {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.06) 0%,
    transparent 70%
  );
}

/* ============ ORBIT CONTAINER - BALANCED SIZE ============ */
.journey-orbit {
  position: relative;
  width: 720px;
  height: 720px;
  margin: 50px auto 0;
  max-width: 100%;
}

/* Decorative Dashed Rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px dashed rgba(230, 57, 70, 0.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbitRotate 60s linear infinite;
}
.orbit-ring-outer {
  width: 700px;
  height: 700px;
}
.orbit-ring-inner {
  width: 400px;
  height: 400px;
  border-color: rgba(230, 57, 70, 0.18);
  animation-duration: 40s;
  animation-direction: reverse;
}
@keyframes orbitRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ============ CENTER LOGO - BALANCED ============ */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  z-index: 10;
}

.orbit-center-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.4) 0%,
    transparent 70%
  );
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.orbit-center-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f6 100%);
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 7px solid white;
  z-index: 2;
}

.orbit-center-inner img {
  width: 130px;
  height: auto;
  max-height: 85px;
  object-fit: contain;
  margin-bottom: 10px;
}

.orbit-center-text {
  text-align: center;
}
.orbit-center-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 3px;
}
.orbit-center-text span {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============ ORBIT CARDS - COMPACT ============ */
.orbit-card {
  position: absolute;
  width: 185px;
  z-index: 5;
}

/* TOP CARD (12 o'clock) */
.orbit-card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* TOP RIGHT (2 o'clock) */
.orbit-card-2 {
  top: 26%;
  right: -10px;
}

/* BOTTOM RIGHT (5 o'clock) */
.orbit-card-3 {
  bottom: 0;
  right: 6%;
}

/* BOTTOM LEFT (7 o'clock) */
.orbit-card-4 {
  bottom: 0;
  left: 6%;
}

/* TOP LEFT (10 o'clock) */
.orbit-card-5 {
  top: 26%;
  left: -10px;
}

/* Hide connection lines - looks cleaner */
.oc-line {
  display: none;
}

/* Card Inner - Compact */
.oc-inner {
  background: white;
  padding: 20px 16px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  z-index: 1;
}
.orbit-card:hover .oc-inner {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(230, 57, 70, 0.25);
  border-color: var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, #fff5f6 100%);
}

.oc-year {
  display: inline-block;
  background: var(--grad-primary);
  color: white;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.oc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--trans);
}
.orbit-card:hover .oc-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotateY(180deg);
}

.oc-inner h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark);
  font-weight: 700;
}
.oc-inner p {
  color: var(--gray);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .journey-orbit {
    width: 640px;
    height: 640px;
  }
  .orbit-ring-outer {
    width: 620px;
    height: 620px;
  }
  .orbit-ring-inner {
    width: 360px;
    height: 360px;
  }
  .orbit-center {
    width: 200px;
    height: 200px;
  }
  .orbit-center-inner img {
    width: 110px;
    max-height: 75px;
  }
  .orbit-center-text strong {
    font-size: 1.05rem;
  }
  .orbit-card {
    width: 170px;
  }
  .oc-inner {
    padding: 18px 14px;
  }
}

/* TABLET & MOBILE - Convert to clean vertical list */
@media (max-width: 900px) {
  .journey-orbit {
    width: 100%;
    height: auto;
    max-width: 520px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .orbit-ring {
    display: none;
  }

  /* Center logo at top */
  .orbit-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
  }
  .orbit-center-inner {
    padding: 26px;
  }
  .orbit-center-inner img {
    width: 120px;
    max-height: 80px;
    margin-bottom: 8px;
  }
  .orbit-center-text strong {
    font-size: 1.15rem;
  }

  /* All cards become a vertical stack */
  .orbit-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  .oc-inner {
    padding: 22px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
  }

  .oc-year {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin-bottom: 4px;
  }

  .oc-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .oc-inner h4 {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 4px;
    font-size: 1.05rem;
  }

  .oc-inner p {
    grid-column: 1 / 3;
    grid-row: 3;
    font-size: 0.85rem;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .journey-orbit-section {
    padding: 50px 0 60px;
  }
  .orbit-center {
    width: 160px;
    height: 160px;
  }
  .orbit-center-inner {
    padding: 20px;
    border-width: 5px;
  }
  .orbit-center-inner img {
    width: 95px;
    max-height: 65px;
    margin-bottom: 6px;
  }
  .orbit-center-text strong {
    font-size: 0.95rem;
  }
  .orbit-center-text span {
    font-size: 0.65rem;
  }
  .oc-inner {
    padding: 18px;
    gap: 12px;
  }
  .oc-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .oc-inner h4 {
    font-size: 0.95rem;
  }
  .oc-inner p {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   SERVICES OVERVIEW - MODERN HOVER GRID (No Cards)
   ========================================================================== */
.services-overview {
  position: relative;
  background: white;
  padding: 100px 0;
  overflow: hidden;
}

.so-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.so-bg-shape-1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.06) 0%,
    transparent 70%
  );
}
.so-bg-shape-2 {
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 70%
  );
}

/* HEADER */
.so-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.so-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 9px 22px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.so-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.so-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============ MODERN HOVER GRID ============ */
.so-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-lighter);
  border-left: 1px solid var(--gray-lighter);
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.so-item {
  position: relative;
  padding: 50px 36px;
  border-right: 1px solid var(--gray-lighter);
  border-bottom: 1px solid var(--gray-lighter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 240px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

/* Hover Fill Effect */
.so-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.so-item:hover::before {
  transform: translateY(0);
}

.so-item > * {
  position: relative;
  z-index: 1;
}

/* Number */
.so-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  transition: color 0.4s ease;
  display: inline-block;
  width: fit-content;
}
.so-item:hover .so-num {
  color: white;
}

/* Title */
.so-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.so-item:hover h3 {
  color: white;
}

/* Arrow */
.so-arrow {
  align-self: flex-start;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-45deg);
}
.so-item:hover .so-arrow {
  background: white;
  color: var(--primary);
  transform: rotate(0deg) translateX(8px);
}

/* Remove right border on last column */
.so-item:nth-child(3n) {
  border-right: none;
}
/* Remove bottom border on last row */
.so-item:nth-last-child(-n + 3) {
  border-bottom: none;
}

/* ==========================================================================
   DETAILED SERVICES - ALTERNATING ROWS
   ========================================================================== */
.services-detailed {
  background: var(--bg-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sd-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

/* ALTERNATING ROW LAYOUT */
.sd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  scroll-margin-top: 100px;
}
.sd-row:last-child {
  margin-bottom: 0;
}

/* CONTENT SIDE */
.sd-content {
  position: relative;
}

.sd-tag {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.sd-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sd-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
  font-style: italic;
}

.sd-desc {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 26px;
}

.sd-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.sd-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-dark);
  font-size: 0.93rem;
  font-weight: 500;
}
.sd-features li i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* IMAGE SIDE */
.sd-image {
  position: relative;
  height: 480px;
}
.sd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}
.sd-row:hover .sd-image img {
  transform: scale(1.02);
}

/* Decorative shape behind image */
.sd-image-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 24px;
  opacity: 0.15;
  z-index: 1;
  transition: all 0.5s ease;
}
.sd-row:hover .sd-image-deco {
  top: -15px;
  right: -15px;
  opacity: 0.25;
}

/* Reversed Row - Image Left, Content Right */
.sd-reverse .sd-image-deco {
  right: auto;
  left: -20px;
}
.sd-reverse:hover .sd-image-deco {
  left: -15px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-overview {
    padding: 70px 0;
  }
  .so-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .so-item {
    padding: 40px 30px;
    min-height: 200px;
  }
  /* Re-add borders since 3n no longer applies */
  .so-item:nth-child(3n) {
    border-right: 1px solid var(--gray-lighter);
  }
  .so-item:nth-child(2n) {
    border-right: none;
  }
  .so-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--gray-lighter);
  }
  .so-item:nth-last-child(-n + 1) {
    border-bottom: none;
  }
  .so-item h3 {
    font-size: 1.5rem;
  }

  .services-detailed {
    padding: 70px 0;
  }
  .sd-row {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 80px;
  }
  /* On mobile/tablet, image always shows after content */
  .sd-reverse {
    direction: ltr;
  }
  .sd-reverse .sd-content {
    order: 1;
  }
  .sd-reverse .sd-image {
    order: 2;
  }
  .sd-image {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-overview {
    padding: 50px 0;
  }
  .so-header {
    margin-bottom: 50px;
  }
  .so-item {
    padding: 32px 26px;
    min-height: 180px;
  }
  .so-num {
    font-size: 1.25rem;
  }
  .so-item h3 {
    font-size: 1.3rem;
  }
  .so-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .services-detailed {
    padding: 50px 0;
  }
  .sd-header {
    margin-bottom: 60px;
  }
  .sd-row {
    gap: 40px;
    margin-bottom: 70px;
  }
  .sd-content h2 {
    font-size: 1.6rem;
  }
  .sd-image {
    height: 320px;
  }
  .sd-image-deco {
    top: -12px;
    right: -12px;
  }
  .sd-reverse .sd-image-deco {
    left: -12px;
  }
}

@media (max-width: 480px) {
  .so-grid {
    grid-template-columns: 1fr;
  }
  .so-item {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-lighter) !important;
    padding: 28px 24px;
    min-height: 160px;
  }
  .so-item:last-child {
    border-bottom: none !important;
  }
  .so-item h3 {
    font-size: 1.2rem;
  }

  .sd-content h2 {
    font-size: 1.4rem;
  }
  .sd-tag {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
  .sd-desc {
    font-size: 0.92rem;
  }
  .sd-features li {
    font-size: 0.88rem;
  }
  .sd-image {
    height: 260px;
  }
}

/* ==========================================================================
   SERVICES BUTTONS - SIMPLE CLEAN NAVIGATION
   ========================================================================== */
.services-buttons-section {
  position: relative;
  background: white;
  padding: 80px 0 70px;
  overflow: hidden;
}

.sb-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* BUTTONS CONTAINER */
.services-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

/* INDIVIDUAL BUTTON */
.serv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: white;
  color: var(--dark);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Number Badge inside button */
.serv-btn-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

/* Hover Effect */
.serv-btn:hover {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}
.serv-btn:hover .serv-btn-num {
  background: white;
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-buttons-section {
    padding: 60px 0 50px;
  }
  .sb-header {
    margin-bottom: 40px;
  }
  .services-buttons {
    gap: 10px;
  }
  .serv-btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  .serv-btn-num {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .serv-btn {
    padding: 11px 18px;
    font-size: 0.82rem;
    gap: 8px;
  }
}

/* ==========================================================================
   SERVICES PREVIEW - BENTO BOX DESIGN (HOME PAGE)
   ========================================================================== */
.services-preview {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
  position: relative;
  overflow: hidden;
}

/* Background Blobs */
.sp-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.sp-bg-blob-1 {
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(230, 57, 70, 0.15);
}
.sp-bg-blob-2 {
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(230, 57, 70, 0.1);
}

/* ============ BENTO BOX GRID ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  height: 720px;
  position: relative;
  z-index: 1;
}

/* GENERAL CARD STYLES */
.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
}

/* ============ FEATURED CARD (Big Doctor Visit) ============ */
.bento-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--dark);
}

.bento-featured .bento-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bento-featured .bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-featured:hover .bento-img img {
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(193, 18, 31, 0.85) 100%
  );
  z-index: 2;
}

.bento-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 3;
  color: white;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.bento-tag i {
  color: #ffb400;
}

.bento-featured-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bento-featured-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 90%;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--trans);
}
.bento-cta i {
  transition: var(--trans);
}
.bento-featured:hover .bento-cta {
  gap: 14px;
  padding-right: 28px;
}
.bento-featured:hover .bento-cta i {
  transform: translateX(4px);
}

/* ============ SMALL ICON CARDS ============ */
.bento-small {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 220px;
}

/* Color Variants for Small Cards */
.bento-color-1 {
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 100%);
}
.bento-color-2 {
  background: linear-gradient(135deg, #fff0f2 0%, #ffd5da 100%);
}
.bento-color-3 {
  background: linear-gradient(135deg, #fef0f2 0%, #ffe0e4 100%);
}
.bento-color-4 {
  background: linear-gradient(135deg, #fff5f7 0%, #ffd8de 100%);
}

.bento-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.bento-small:hover::before {
  opacity: 1;
}

.bento-small > * {
  position: relative;
  z-index: 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: white;
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.15);
  transition: var(--trans);
}
.bento-card:hover .bento-icon {
  transform: rotate(-10deg) scale(1.1);
}

.bento-small h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
  transition: color 0.4s ease;
}
.bento-small:hover h4 {
  color: white;
}

.bento-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.4s ease;
}
.bento-mini-cta i {
  font-size: 0.7rem;
  transition: var(--trans);
}
.bento-small:hover .bento-mini-cta {
  color: white;
}
.bento-small:hover .bento-mini-cta i {
  transform: translateX(4px);
}

/* ============ MEDIUM IMAGE CARDS ============ */
.bento-medium {
  position: relative;
  background: var(--dark);
  min-height: 220px;
}

.bento-medium .bento-img {
  position: absolute;
  inset: 0;
}
.bento-medium .bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bento-medium:hover .bento-img img {
  transform: scale(1.1);
}

.bento-medium-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  color: white;
  z-index: 2;
}

.bento-icon-mini {
  width: 42px;
  height: 42px;
  background: var(--grad-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  transition: var(--trans);
}
.bento-medium:hover .bento-icon-mini {
  transform: rotate(-10deg) scale(1.1);
}

.bento-medium-content h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento-medium-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin: 0;
}

/* ============ WIDE BOTTOM CARD (2 services) ============ */
.bento-wide {
  grid-column: span 2;
  background: white;
  border: 2px solid var(--gray-lighter);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.bento-wide-left,
.bento-wide-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bento-wide-right {
  border-left: 2px dashed var(--gray-lighter);
  padding-left: 24px;
}

.bento-wide h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.bento-wide:hover {
  border-color: var(--primary);
}
.bento-wide:hover .bento-icon {
  background: var(--grad-primary);
  color: white;
}

/* ============ CTA BUTTON ============ */
.services-preview-cta {
  text-align: center;
  margin-top: 50px;
}
.services-preview-cta .btn {
  margin-bottom: 14px;
}
.services-preview-cta p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }
  .bento-featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 380px;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-featured-content h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-featured,
  .bento-wide {
    grid-column: span 1;
  }
  .bento-featured {
    min-height: 340px;
  }
  .bento-featured-content {
    padding: 28px;
  }
  .bento-featured-content h3 {
    font-size: 1.5rem;
  }
  .bento-wide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bento-wide-right {
    border-left: none;
    border-top: 2px dashed var(--gray-lighter);
    padding-left: 0;
    padding-top: 20px;
  }
  .bento-small {
    min-height: 180px;
    padding: 24px 22px;
  }
}

@media (max-width: 480px) {
  .bento-featured-content {
    padding: 24px;
  }
  .bento-featured-content h3 {
    font-size: 1.35rem;
  }
  .bento-featured-content p {
    font-size: 0.9rem;
  }
  .bento-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .bento-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .bento-small h4 {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   PORTFOLIO PAGE STYLES
   ========================================================================== */

/* PAGE BANNER OVERRIDE FOR PORTFOLIO */
.portfolio-banner {
  background:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

/* ============ PORTFOLIO INTRO ============ */
.pf-intro {
  background: white;
  position: relative;
}

/* FILTER BUTTONS */
.pf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.pf-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--bg-light);
  color: var(--gray-dark);
  border: 2px solid transparent;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.pf-filter-btn i {
  font-size: 0.85rem;
  color: var(--primary);
}
.pf-filter-btn:hover {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.pf-filter-btn.active {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.pf-filter-btn.active i {
  color: white;
}

/* PORTFOLIO GRID */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* PORTFOLIO CARD */
.pf-card {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 1;
  transform: scale(1);
}
.pf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(230, 57, 70, 0.25);
}

/* Image */
.pf-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pf-card:hover .pf-card-img img {
  transform: scale(1.12);
}

/* Overlay */
.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

/* Content */
.pf-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 3;
  color: white;
}

.pf-card-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pf-card-content h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pf-card-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 80%;
}

/* Arrow Button - Bottom Right */
.pf-card-btn {
  position: absolute;
  right: 24px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}
.pf-card:hover .pf-card-btn {
  transform: rotate(-45deg) scale(1.1);
}

/* ============ BEFORE / AFTER SECTION ============ */
.ba-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.ba-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.ba-story:last-child {
  margin-bottom: 0;
}

/* Reversed Order */
.ba-reverse .ba-images {
  order: 2;
}
.ba-reverse .ba-content {
  order: 1;
}

/* BEFORE / AFTER IMAGES */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.ba-image-block {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ba-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ba-image-block:hover img {
  transform: scale(1.08);
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ba-label-before {
  background: var(--dark);
  color: white;
}
.ba-label-after {
  background: var(--grad-primary);
  color: white;
}

/* BEFORE / AFTER CONTENT */
.ba-content {
  padding: 10px;
}

.ba-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.ba-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* STATS Row */
.ba-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 26px;
  padding: 18px 24px;
  background: var(--bg-light);
  border-radius: 14px;
  border-left: 4px solid var(--primary);
}
.ba-stat {
  flex: 1;
  text-align: center;
}
.ba-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.ba-stat span {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

/* QUOTE */
.ba-quote {
  position: relative;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-style: italic;
  padding-left: 24px;
  border-left: 3px solid var(--primary);
  margin-bottom: 24px;
}
.ba-quote i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 6px;
  opacity: 0.6;
}

/* AUTHOR */
.ba-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-lighter);
}

.ba-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.ba-author-info {
  display: flex;
  flex-direction: column;
}
.ba-author-info strong {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.ba-author-info span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-card {
    height: 380px;
  }

  .ba-story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px;
  }
  /* On mobile, content always after images */
  .ba-reverse .ba-images {
    order: 1;
  }
  .ba-reverse .ba-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .pf-filters {
    gap: 8px;
    margin-bottom: 36px;
  }
  .pf-filter-btn {
    padding: 9px 18px;
    font-size: 0.82rem;
  }
  .pf-filter-btn i {
    display: none;
  }
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pf-card {
    height: 360px;
  }
  .pf-card-content h3 {
    font-size: 1.25rem;
  }

  .ba-story {
    padding: 28px 22px;
    gap: 30px;
  }
  .ba-image-block {
    height: 280px;
  }
  .ba-stats {
    flex-wrap: wrap;
    gap: 18px;
    padding: 14px 18px;
  }
  .ba-stat strong {
    font-size: 1.25rem;
  }
  .ba-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pf-card {
    height: 320px;
  }
  .pf-card-content {
    padding: 24px;
  }
  .pf-card-content p {
    font-size: 0.85rem;
    max-width: 100%;
  }
  .pf-card-btn {
    width: 42px;
    height: 42px;
    right: 18px;
    bottom: 24px;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }
  .ba-image-block {
    height: 240px;
  }
  .ba-quote {
    font-size: 0.92rem;
    padding-left: 18px;
  }
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */

/* PAGE BANNER */
.careers-banner {
  background:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

/* ============ CAREERS INTRO ============ */
.careers-intro {
  background: white;
  position: relative;
  overflow: hidden;
}

.cr-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cr-bg-shape-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.07) 0%,
    transparent 70%
  );
}
.cr-bg-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 70%
  );
}

.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ci-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.ci-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 16px;
}

.ci-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ci-highlight-item i {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-highlight-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.ci-highlight-item span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* VISUAL */
.ci-visual {
  position: relative;
  height: 500px;
}

.ci-img-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.ci-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-img-deco {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 24px;
  opacity: 0.15;
  z-index: 1;
}

.ci-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
  border: 1px solid var(--gray-lighter);
}

.cfc-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.ci-floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.2;
}
.ci-floating-card span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============ WHY WORK WITH US ============ */
.why-work-section {
  background: var(--bg-light);
}

.ww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ww-card {
  background: white;
  padding: 32px 26px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
.ww-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
  border-color: var(--primary);
}

.ww-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: var(--trans);
}
.ww-card:hover .ww-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotate(-8deg) scale(1.1);
}

.ww-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}
.ww-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ============ OPEN POSITIONS ============ */
.openings-section {
  background: white;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.job-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--gray-lighter);
  transition: all 0.4s ease;
  position: relative;
}
.job-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
  transform: translateY(-6px);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.job-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  transition: var(--trans);
}
.job-card:hover .job-icon {
  transform: rotate(-10deg) scale(1.05);
}

.job-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urgency-high {
  background: #ffe5e8;
  color: var(--primary-dark);
}
.urgency-high i {
  color: #ff6b35;
}
.urgency-medium {
  background: #fff3cd;
  color: #856404;
}
.urgency-medium i {
  color: #ffc107;
}
.urgency-low {
  background: #d4edda;
  color: #155724;
}
.urgency-low i {
  color: #28a745;
  font-size: 0.5rem;
}

.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--dark);
  font-weight: 700;
}

.job-tagline {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--gray-lighter);
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.job-meta-item i {
  color: var(--primary);
  font-size: 0.75rem;
}

.job-requirements h4 {
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.job-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.job-requirements ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-dark);
  padding: 6px 0;
  line-height: 1.5;
}
.job-requirements ul li i {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--trans);
  width: 100%;
  justify-content: center;
}
.job-apply-btn:hover {
  background: var(--grad-primary);
  color: white;
  gap: 14px;
}

/* HIRING NOTE */
.hiring-note {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 24px 28px;
  background: var(--primary-soft);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hiring-note i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.hiring-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-dark);
}
.hiring-note strong {
  color: var(--primary);
}
.hiring-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* ============ HIRING PROCESS ============ */
.process-section {
  background: var(--bg-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.proc-step {
  background: white;
  padding: 36px 26px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.proc-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.proc-step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.12);
  letter-spacing: -1px;
}

.proc-step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--grad-primary);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  transition: var(--trans);
}
.proc-step:hover .proc-step-icon {
  transform: rotate(-8deg) scale(1.05);
}

.proc-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}
.proc-step p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ============ APPLY SECTION ============ */
.apply-section {
  background: white;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* APPLY INFO */
.apply-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.apply-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.apply-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.aci-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.apply-contact-item:hover .aci-icon {
  background: var(--grad-primary);
  color: white;
}

.apply-contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.apply-contact-item a,
.apply-contact-item span {
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: var(--trans);
}
.apply-contact-item a:hover {
  color: var(--primary);
}

/* APPLY FORM */
.apply-form-wrap {
  background: var(--bg-light);
  padding: 36px;
  border-radius: 20px;
  border-top: 5px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-heading {
  font-size: 1.4rem;
  margin-bottom: 26px;
  color: var(--dark);
  font-weight: 700;
}

.apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-form .form-group {
  margin-bottom: 18px;
}

.apply-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.apply-form label span {
  color: var(--primary);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--gray-lighter);
  border-radius: 10px;
  font-size: 0.95rem;
  background: white;
  transition: var(--trans);
  color: var(--dark);
  font-family: var(--font-body);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
}

.apply-form .input-wrap {
  position: relative;
}
.apply-form .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--trans);
}
.apply-form .textarea-wrap .input-icon {
  top: 18px;
  transform: none;
}
.apply-form .input-wrap:focus-within .input-icon {
  color: var(--primary);
}

.apply-form textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
}

.apply-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A1A1A1' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* FILE UPLOAD */
.file-upload-wrap {
  position: relative;
}
.file-upload-wrap input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.file-upload-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 2px dashed var(--gray-lighter);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--trans);
  margin: 0 !important;
  font-weight: 500 !important;
  color: var(--gray) !important;
  font-size: 0.9rem !important;
}
.file-upload-label:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary) !important;
}
.file-upload-label i {
  font-size: 1.3rem;
  color: var(--primary);
}

/* ============ EMPLOYEE TESTIMONIALS ============ */
.emp-testimonial-section {
  background: var(--bg-light);
}

.emp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.emp-testi-card {
  background: white;
  padding: 36px 30px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
.emp-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
  border-color: var(--primary);
}

.etc-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(230, 57, 70, 0.12);
  font-size: 3rem;
}

.etc-text {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.etc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-lighter);
}

.etc-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.etc-author strong {
  display: block;
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.etc-author span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .careers-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ci-visual {
    height: 420px;
    max-width: 600px;
    margin: 0 auto;
  }
  .ww-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .emp-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ci-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ci-visual {
    height: 350px;
  }
  .ci-floating-card {
    padding: 14px 18px;
    left: -10px;
    bottom: 20px;
  }
  .ww-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .job-card {
    padding: 26px 22px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .apply-form-wrap {
    padding: 28px 22px;
  }
  .apply-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .emp-testi-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .emp-testi-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .ci-img-deco {
    display: none;
  }
  .form-heading {
    font-size: 1.25rem;
  }
  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    font-size: 0.9rem;
    padding-left: 40px;
  }
}

/* ==========================================================================
   MINIMAL MOBILE OVERFLOW FIX (Desktop completely untouched)
   ========================================================================== */

/* Only hide horizontal scroll - NOTHING else */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Decorative shapes - just make them non-interactive */
.hero-bg-shape,
.cr-bg-shape,
.jo-bg-shape,
.sp-bg-blob,
.about-bg-shape,
.so-bg-shape,
.testi-bg-shape-1,
.testi-bg-shape-2,
.story-bg-accent,
.how-bg-circle {
  pointer-events: none;
}

/* Mobile only - fix parallax bug */
@media (max-width: 1024px) {
  .sin-header,
  .page-banner,
  .portfolio-banner,
  .careers-banner {
    background-attachment: scroll;
  }
}

/* ==========================================================================
   MOBILE FIXES - HEADER STICKY + IMAGE SHAPE
   ========================================================================== */

/* ============ FIX 1: HERO IMAGE SHAPE - RECTANGLE ON MOBILE ============ */
@media (max-width: 1024px) {
  .hero-main-image {
    border-radius: 24px !important;
  }
}

@media (max-width: 768px) {
  .hero-main-image {
    border-radius: 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-main-image {
    border-radius: 18px !important;
  }
}

/* ============ FIX 2: STICKY HEADER ON MOBILE ============ */
@media (max-width: 1024px) {
  /* Make header truly sticky on mobile */
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  /* Hide top-bar on mobile (saves space) */
  .top-bar {
    display: none;
  }

  /* Add padding to body so content doesn't go behind fixed header */
  body {
    padding-top: 75px;
  }

  /* Make sure hero starts below the fixed header */
  .hero,
  .page-banner {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
}

/* ============ ENSURE LOGO + HAMBURGER STAY VISIBLE ============ */
@media (max-width: 1024px) {
  .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px !important;
    min-height: 65px;
  }

  .logo {
    flex-shrink: 0;
  }

  .header-right {
    flex-shrink: 0;
  }

  .hamburger {
    display: flex !important;
    z-index: 1000;
    background: var(--primary-soft);
    padding: 10px;
    border-radius: 10px;
  }

  .hamburger span {
    background: var(--primary);
  }
}

/* ==========================================================================
   TEXT-BASED LOGO - NISHTHA RED, REST BLACK
   ========================================================================== */

.logo-text {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

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

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #e63946;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Mobile sizes */
@media (max-width: 768px) {
  .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .logo-brand {
    font-size: 1.5rem;
  }
  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
  .logo-brand {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   LOGO - PROPER SIZE (Final & Clean)
   ========================================================================== */

/* Reset any old transforms or margins */
.logo,
.header .logo,
.header-inner .logo,
a.logo {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  flex-shrink: 0;
}

.logo img,
.header .logo img,
.header-inner .logo img,
a.logo img {
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  scale: 1 !important;
  object-fit: contain !important;
  display: block !important;
}

/* DESKTOP (1025px and above) */
@media (min-width: 1025px) {
  .logo img,
  .header .logo img,
  .header-inner .logo img,
  a.logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 70px !important;
  }

  .header-inner {
    padding: 12px 24px !important;
    min-height: auto !important;
  }
}

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .logo img,
  .header .logo img,
  .header-inner .logo img,
  a.logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 190px !important;
    max-height: 60px !important;
  }

  .header-inner {
    padding: 10px 16px !important;
    min-height: auto !important;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .logo img,
  .header .logo img,
  .header-inner .logo img,
  a.logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 175px !important;
    max-height: 55px !important;
  }

  .header-inner {
    padding: 8px 14px !important;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .logo img,
  .header .logo img,
  .header-inner .logo img,
  a.logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 155px !important;
    max-height: 48px !important;
  }

  .header-inner {
    padding: 7px 12px !important;
  }
}

/* EXTRA SMALL (360px and below) */
@media (max-width: 360px) {
  .logo img,
  .header .logo img,
  .header-inner .logo img,
  a.logo img {
    height: 42px !important;
    width: auto !important;
    max-width: 135px !important;
    max-height: 42px !important;
  }
}

/* ==========================================================================
   FOOTER LOGO - Match Header Size, Clean Look
   ========================================================================== */

/* DESKTOP */
.footer-logo,
.footer .footer-logo,
.footer-col .footer-logo {
  height: 70px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 70px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 18px !important;

  /* Clean white background with subtle styling */
  background: white !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;

  /* Remove any old transforms */
  transform: none !important;
  scale: 1 !important;
}

/* TABLET (1024px) */
@media (max-width: 1024px) {
  .footer-logo,
  .footer .footer-logo,
  .footer-col .footer-logo {
    height: 60px !important;
    max-width: 190px !important;
    max-height: 60px !important;
    padding: 8px 14px !important;
  }
}

/* MOBILE (768px) */
@media (max-width: 768px) {
  .footer-logo,
  .footer .footer-logo,
  .footer-col .footer-logo {
    height: 55px !important;
    max-width: 175px !important;
    max-height: 55px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
  }
}

/* SMALL MOBILE (480px) */
@media (max-width: 480px) {
  .footer-logo,
  .footer .footer-logo,
  .footer-col .footer-logo {
    height: 48px !important;
    max-width: 155px !important;
    max-height: 48px !important;
    padding: 7px 10px !important;
  }
}
@media (min-width: 1025px) {
  .top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9998 !important;
  }

  .header,
  header.header,
  #header {
    position: fixed !important;
    top: 45px !important; /* Adjust based on your top-bar height */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
  }

  body {
    padding-top: 145px !important; /* top-bar + header height */
  }
}

/* ==========================================================================
   NEW INNER PAGE BANNER - Modern, Compact, Premium
   ========================================================================== */

.inner-banner {
  position: relative;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 50%, #ffd5da 100%);
  padding: 70px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(230, 57, 70, 0.08);
}

/* Decorative Shapes */
.ib-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ib-shape-1 {
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.15) 0%,
    transparent 70%
  );
}

.ib-shape-2 {
  bottom: -80px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 70%
  );
}

.ib-shape-3 {
  top: 30%;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.08) 0%,
    transparent 70%
  );
}

/* Inner Container */
.ib-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

/* Icon Badge */
.ib-icon-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: white;
  color: var(--primary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
  position: relative;
  animation: ib-float 3s ease-in-out infinite;
}

.ib-icon-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(230, 57, 70, 0.3);
  border-radius: 26px;
  animation: ib-rotate 20s linear infinite;
}

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

@keyframes ib-rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Title */
.ib-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Description */
.ib-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 600px;
}

/* Breadcrumb */
.ib-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.ib-breadcrumb a {
  color: var(--gray-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.ib-breadcrumb a:hover {
  color: var(--primary);
}

.ib-breadcrumb a i {
  color: var(--primary);
  font-size: 0.85rem;
}

.ib-sep {
  color: var(--gray-light);
  font-weight: 600;
}

.ib-current {
  color: var(--primary);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inner-banner {
    padding: 50px 0 45px;
  }

  .ib-icon-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .ib-title {
    font-size: 1.8rem;
  }

  .ib-desc {
    font-size: 0.92rem;
  }

  .ib-breadcrumb {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    padding: 40px 0 35px;
  }

  .ib-icon-badge {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .ib-title {
    font-size: 1.5rem;
  }

  .ib-desc {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   FOOTER - DESIGNED BY SPRINTOFY CREDIT
   ========================================================================== */

.designed-by {
  font-size: 0.88rem;
  color: #b8b8b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.sprintofy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-weight: 700;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
  margin-left: 4px;
}

.sprintofy-link i {
  font-size: 0.78rem;
  color: var(--primary-light);
  transition: var(--trans);
}

.sprintofy-link:hover {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.sprintofy-link:hover i {
  color: white;
  transform: rotate(360deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .designed-by {
    font-size: 0.82rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sprintofy-link {
    padding: 3px 10px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   FOOTER BOTTOM BAR - PREMIUM ATTRACTIVE DESIGN
   ========================================================================== */

/* Footer bottom container */
.footer-bottom {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0509 100%) !important;
  padding: 22px 0 !important;
  border-top: 1px solid rgba(230, 57, 70, 0.2) !important;
  position: relative;
  overflow: hidden;
}

/* Subtle red glow line at top */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.footer-bottom-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 16px;
}

/* Copyright Text */
.footer-bottom p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

.footer-bottom p strong,
.footer-bottom p .company-name {
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Designed By Section */
.designed-by {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

/* Heart Animation between text and SPrintofy */
.designed-by::before {
  content: "❤";
  color: var(--primary);
  font-size: 1rem;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* SPrintofy Premium Pill Button */
.sprintofy-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: white !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  padding: 8px 18px !important;
  border-radius: var(--r-full) !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%) !important;
  border: 1px solid transparent !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  margin-left: 4px !important;
  position: relative;
  overflow: hidden;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
  font-family: var(--font-heading);
}

/* Shimmer effect on hover */
.sprintofy-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.sprintofy-link:hover::before {
  left: 100%;
}

.sprintofy-link i {
  font-size: 0.85rem !important;
  color: white !important;
  transition: transform 0.4s ease;
}

.sprintofy-link:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffe5e8 100%) !important;
  color: var(--primary) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
  border-color: rgba(230, 57, 70, 0.3) !important;
}

.sprintofy-link:hover i {
  color: var(--primary) !important;
  transform: rotate(360deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 20px 0 !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom p {
    font-size: 0.85rem !important;
  }

  .designed-by {
    font-size: 0.85rem !important;
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .sprintofy-link {
    padding: 7px 16px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .footer-bottom p {
    font-size: 0.78rem !important;
  }

  .designed-by {
    font-size: 0.78rem !important;
    gap: 6px !important;
  }

  .sprintofy-link {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
  }
}

/* ==========================================================================
   COMPACT SOCIAL CARD - Clean & Minimal
   ========================================================================== */

.cs-social-card {
  padding: 24px 26px !important;
}

/* Header with icon and title in one line */
.cs-social-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--gray-lighter);
}

.cs-social-header i {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}

.cs-social-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Social Icons Row */
.cs-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cs-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 44px;
}

/* Shimmer effect on hover */
.cs-social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cs-social-icon:hover::before {
  left: 100%;
}

/* Brand Colors */
.cs-icon-fb {
  background: #1877f2;
}

.cs-icon-ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.cs-icon-wa {
  background: #25d366;
}

.cs-icon-li {
  background: #0a66c2;
}

.cs-icon-yt {
  background: #ff0000;
}

/* Hover Effects */
.cs-social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-social-card {
    padding: 20px 22px !important;
  }

  .cs-social-header h4 {
    font-size: 0.98rem;
  }

  .cs-social-icons {
    gap: 8px;
  }

  .cs-social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cs-social-header {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .cs-social-header i {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .cs-social-header h4 {
    font-size: 0.92rem;
  }

  .cs-social-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   BENTO CARDS - BACKGROUND IMAGES WITH GRADIENT OVERLAY
   ========================================================================== */

/* ============ SMALL CARDS WITH BG IMAGE ============ */
.bento-small {
  position: relative;
  overflow: hidden;
}

/* Image Layer */
.bento-small-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card.bento-small:hover .bento-small-img img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.bento-small-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 245, 246, 0.85) 50%,
    rgba(230, 57, 70, 0.75) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

/* Hover: Darker red overlay reveals image */
.bento-card.bento-small:hover .bento-small-overlay {
  background: linear-gradient(
    180deg,
    rgba(230, 57, 70, 0.4) 0%,
    rgba(193, 18, 31, 0.85) 100%
  );
}

/* Content Layer */
.bento-small-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* Update icon styling for new background */
.bento-small .bento-icon {
  width: 56px;
  height: 56px;
  background: white;
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: var(--trans);
}

.bento-card.bento-small:hover .bento-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotate(-10deg) scale(1.1);
}

/* Heading & CTA */
.bento-small h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
  transition: color 0.4s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.bento-card.bento-small:hover h4 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bento-small .bento-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.4s ease;
}

.bento-card.bento-small:hover .bento-mini-cta {
  color: white;
}

.bento-card.bento-small:hover .bento-mini-cta i {
  transform: translateX(5px);
}

/* ============ WIDE CARD WITH BG IMAGE ============ */
.bento-wide {
  position: relative;
  overflow: hidden;
  border: none !important;
  padding: 0 !important;
}

.bento-wide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-wide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bento-wide:hover .bento-wide-img img {
  transform: scale(1.08);
}

.bento-wide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 245, 246, 0.92) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

.bento-wide:hover .bento-wide-overlay {
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.85) 0%,
    rgba(193, 18, 31, 0.9) 100%
  );
}

/* Wide Content Wrapper */
.bento-wide-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px;
  gap: 24px;
}

.bento-wide-left,
.bento-wide-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Divider between left and right */
.bento-wide-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.bento-wide:hover .bento-wide-divider {
  background: linear-gradient(180deg, transparent, white, transparent);
  opacity: 0.6;
}

/* Wide card icons */
.bento-wide .bento-icon {
  width: 56px;
  height: 56px;
  background: white;
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: var(--trans);
}

.bento-wide:hover .bento-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotate(-10deg);
}

.bento-wide h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
  transition: color 0.4s ease;
}

.bento-wide:hover h4 {
  color: white;
}

.bento-wide .bento-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.4s ease;
}

.bento-wide:hover .bento-mini-cta {
  color: white;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .bento-wide-content-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .bento-wide-divider {
    width: 100%;
    height: 1px;
  }
}

/* ==========================================================================
   BENTO SMALL CARDS - BACKGROUND IMAGES (FIXED HOVER)
   ========================================================================== */

/* ===== NURSING CARE ===== */
.bento-color-1 {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 245, 246, 0.88) 0%,
      rgba(255, 229, 232, 0.85) 100%
    ),
    url("assets/images/nursing.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.5s ease !important;
}

.bento-color-1:hover {
  background-image:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("assets/images/nursing.jpg") !important;
}

/* ===== PHYSIOTHERAPY ===== */
.bento-color-2 {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 240, 242, 0.88) 0%,
      rgba(255, 213, 218, 0.85) 100%
    ),
    url("assets/images/physio.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.5s ease !important;
}

.bento-color-2:hover {
  background-image:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("assets/images/physio.jpg") !important;
}

/* ===== PATIENT ATTENDANTS ===== */
.bento-color-3 {
  background-image:
    linear-gradient(
      135deg,
      rgba(254, 240, 242, 0.88) 0%,
      rgba(255, 224, 228, 0.85) 100%
    ),
    url("assets/images/attendants.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.5s ease !important;
}

.bento-color-3:hover {
  background-image:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("assets/images/attendants.jpg") !important;
}

/* ===== COUNSELLING ===== */
.bento-color-4 {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 245, 247, 0.88) 0%,
      rgba(255, 216, 222, 0.85) 100%
    ),
    url("assets/images/counselling.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.5s ease !important;
}

.bento-color-4:hover {
  background-image:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("assets/images/counselling.jpg") !important;
}

/* ===== WIDE CARD (Conveyance + Research) ===== */
.bento-wide {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 245, 246, 0.85) 100%
    ),
    url("assets/images/conveyance.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.5s ease !important;
}

.bento-wide:hover {
  background-image:
    linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.85) 0%,
      rgba(193, 18, 31, 0.9) 100%
    ),
    url("assets/images/conveyance.jpg") !important;
}

/* ===== TEXT COLOR ON HOVER ===== */
.bento-color-1:hover h4,
.bento-color-2:hover h4,
.bento-color-3:hover h4,
.bento-color-4:hover h4,
.bento-wide:hover h4 {
  color: white !important;
}

.bento-color-1:hover .bento-mini-cta,
.bento-color-2:hover .bento-mini-cta,
.bento-color-3:hover .bento-mini-cta,
.bento-color-4:hover .bento-mini-cta,
.bento-wide:hover .bento-mini-cta {
  color: white !important;
}

/* ===== ICON ON HOVER ===== */
.bento-color-1:hover .bento-icon,
.bento-color-2:hover .bento-icon,
.bento-color-3:hover .bento-icon,
.bento-color-4:hover .bento-icon,
.bento-wide:hover .bento-icon {
  background: white !important;
  color: var(--primary) !important;
}

/* ==========================================================================
   FIX WIDE CARD - Text Visible on Light Background
   ========================================================================== */

/* Default state - DARK text on light background */
.bento-wide h4 {
  color: var(--dark) !important;
}

.bento-wide .bento-mini-cta {
  color: var(--primary) !important;
}

.bento-wide .bento-icon {
  background: white !important;
  color: var(--primary) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
}

/* Hover state - WHITE text on red overlay */
.bento-wide:hover h4 {
  color: white !important;
}

.bento-wide:hover .bento-mini-cta {
  color: white !important;
}

.bento-wide:hover .bento-icon {
  background: white !important;
  color: var(--primary) !important;
  transform: rotate(-10deg) scale(1.05);
}

/* Make sure the dashed divider is visible */
.bento-wide-right {
  border-left: 1px dashed rgba(230, 57, 70, 0.3) !important;
}

.bento-wide:hover .bento-wide-right {
  border-left: 1px dashed rgba(255, 255, 255, 0.5) !important;
}

/* Mobile - top divider instead of left */
@media (max-width: 768px) {
  .bento-wide-right {
    border-left: none !important;
    border-top: 1px dashed rgba(230, 57, 70, 0.3) !important;
  }

  .bento-wide:hover .bento-wide-right {
    border-left: none !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.5) !important;
  }
}

/* ==========================================================================
   REMOVE HEART FROM SPRINTOFY CREDIT
   ========================================================================== */

.designed-by::before {
  content: none !important;
  display: none !important;
}

/* ===========================
   LANGUAGE SWITCHER
=========================== */
.lang-switcher {
  position: relative;
  z-index: 999;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lang-trigger:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.lang-trigger i {
  font-size: 0.8rem;
}

.lang-arrow {
  transition: transform 0.3s ease;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown.open ~ .lang-trigger .lang-arrow,
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: var(--primary-light, #f0f4ff);
  color: var(--primary);
}

.lang-option.active {
  background: var(--primary);
  color: #fff;
}

.lang-flag {
  font-size: 1rem;
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .lang-selected-text {
    display: none;
  }
  .lang-trigger {
    padding: 8px 10px;
  }
}

/* ===================================
   HERO SLIDER
=================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Slide Caption */
.hero-slide-caption {
  position: absolute;
  bottom: 60px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-slide-caption i {
  font-size: 0.9rem;
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 10px;
}

/* Arrows */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--primary);
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.hero-slider-prev {
  left: 12px;
}

.hero-slider-next {
  right: 12px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Verified Badge */
.hero-slider-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hsb-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.hsb-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.hsb-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 300px;
    border-radius: 16px;
    margin-top: 30px;
  }

  .hero-slide-caption {
    bottom: 50px;
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .hero-slider-badge {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
  }

  .hsb-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 250px;
  }
}

/* ===================================
   HERO SLIDER MOBILE FIX
=================================== */

/* Make sure hero-visual shows on mobile */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    order: 1;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    order: 2;
    min-height: 280px;
  }

  .hero-slider {
    width: 100% !important;
    height: 280px !important;
    display: block !important;
    border-radius: 16px;
    overflow: hidden;
  }

  .hero-slides {
    width: 100% !important;
    height: 100% !important;
  }

  .hero-slide {
    width: 100% !important;
    height: 100% !important;
  }

  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 240px;
  }

  .hero-slider {
    height: 240px !important;
  }

  .hero-slide-caption {
    display: none; /* hide caption on very small screens */
  }
}
/* ===================================
   HERO SLIDER — LARGER SIZE
=================================== */

/* Desktop */
.hero-slider {
  height: 550px; /* was 480px */
  border-radius: 24px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-slider {
    height: 450px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-visual {
    min-height: 380px; /* was 280px */
  }

  .hero-slider {
    height: 380px !important; /* was 280px */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-visual {
    min-height: 320px; /* was 240px */
  }

  .hero-slider {
    height: 320px !important; /* was 240px */
  }
}

/* ===================================
   SERVICES PREVIEW — NUMBERED GRID
=================================== */
.services-preview-new {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.spn-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.spn-bg-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -100px;
}

.spn-bg-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  bottom: -100px;
  left: -100px;
}

/* Grid */
.spn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Card */
.spn-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.spn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

/* Background decoration on hover */
.spn-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: 16px;
}

.spn-card:hover .spn-card-bg {
  opacity: 1;
}

/* Card Inner */
.spn-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Number */
.spn-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.spn-card:hover .spn-num {
  color: rgba(255, 255, 255, 0.2);
}

/* Icon */
.spn-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.spn-card:hover .spn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Title */
.spn-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.spn-card:hover h3 {
  color: #ffffff;
}

/* Description */
.spn-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  transition: color 0.4s ease;
}

.spn-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* CTA */
.spn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: color 0.4s ease;
}

.spn-cta i {
  transition: transform 0.3s ease;
}

.spn-card:hover .spn-cta {
  color: #ffffff;
}

.spn-card:hover .spn-cta i {
  transform: translateX(4px);
}

/* ===== HIGHLIGHT CARD (Nishtha Mitra) ===== */
.spn-highlight {
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  border: none;
}

.spn-highlight .spn-num {
  color: rgba(255, 255, 255, 0.15);
}

.spn-highlight .spn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.spn-highlight h3 {
  color: #ffffff;
}

.spn-highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.spn-highlight .spn-cta {
  color: #ffffff;
}

.spn-highlight .spn-card-bg {
  display: none;
}

.spn-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1200px) {
  .spn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .spn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .spn-card {
    min-height: 240px;
    padding: 24px 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .spn-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .spn-card {
    min-height: auto;
    padding: 22px 18px;
    flex-direction: row;
    align-items: flex-start;
  }

  .spn-card-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .spn-num {
    font-size: 1.5rem;
    margin-bottom: 0;
    min-width: 40px;
  }

  .spn-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .spn-card h3 {
    width: calc(100% - 100px);
    font-size: 0.95rem;
  }

  .spn-card p {
    width: 100%;
    font-size: 0.82rem;
    margin-bottom: 8px;
  }

  .spn-cta {
    width: 100%;
  }
}

/* ===================================
   VIDEO SECTION
=================================== */
.video-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
}

.video-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  z-index: 0;
}

.video-bg-shape-1 {
  width: 450px;
  height: 450px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.video-bg-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--primary);
  bottom: -80px;
  right: -80px;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content */
.video-content .section-title {
  text-align: left;
}

.video-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Highlights */
.video-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.video-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vhi-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}

.video-highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.video-highlight-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Video Player */
.video-player-wrap {
  position: relative;
}

.video-player {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
}

/* Thumbnail */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.vpb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: vpbPulse 2s ease infinite;
}

@keyframes vpbPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.vpb-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 8px 30px rgba(var(--primary-rgb, 59, 130, 246), 0.4);
  transition: all 0.3s ease;
  padding-left: 4px;
}

.video-play-btn:hover .vpb-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb, 59, 130, 246), 0.5);
}

/* Video Badge */
.video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-badge i {
  font-size: 0.9rem;
}

/* Iframe */
.video-iframe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

/* Stats Bar */
.video-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.vsb-item {
  text-align: center;
}

.vsb-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

.vsb-item span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.vsb-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-content .section-title {
    text-align: center;
  }

  .video-content .section-label {
    justify-content: center;
  }

  .video-desc {
    text-align: center;
  }

  .video-content .btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .video-highlights {
    gap: 16px;
  }

  .vhi-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
  }

  .vpb-icon {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .vpb-ring {
    width: 80px;
    height: 80px;
  }

  .video-stats-bar {
    gap: 16px;
    padding: 14px 16px;
  }

  .vsb-item strong {
    font-size: 1.1rem;
  }

  .video-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* ===================================
   TEAM HOME SECTION
=================================== */
.team-home-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.team-home-bg-1,
.team-home-bg-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  background: var(--primary);
  z-index: 0;
}

.team-home-bg-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.team-home-bg-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

/* Grid */
.team-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Card */
.thm-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.thm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

/* Image Wrap */
.thm-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.thm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.thm-card:hover .thm-img-wrap img {
  transform: scale(1.08);
}

.thm-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.thm-card:hover .thm-img-overlay {
  opacity: 1;
}

/* Social Icons */
.thm-socials {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 5;
}

.thm-card:hover .thm-socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.thm-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.thm-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Experience Badge */
.thm-exp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  text-align: center;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.thm-exp-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.thm-exp-badge span {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Info */
.thm-info {
  padding: 22px 20px;
}

.thm-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.thm-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.thm-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Speciality Tags */
.thm-speciality {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thm-speciality span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
  padding: 5px 10px;
  border-radius: 50px;
}

.thm-speciality i {
  font-size: 0.7rem;
}

/* CTA */
.team-home-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .team-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .thm-img-wrap {
    height: 220px;
  }

  .thm-info {
    padding: 16px 14px;
  }

  .thm-info h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .team-home-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .thm-img-wrap {
    height: 280px;
  }
}

/* ==========================================================================
   WELCOME AUDIO BUTTON — Inside Preloader
   ========================================================================== */

.audio-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

/* Show class added by JS */
.audio-prompt.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Hide class added by JS after click */
.audio-prompt.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* ── Button wrapper ── */
.audio-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

/* ── Pulsing rings ── */
.audio-btn-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(226, 11, 26, 0.5);
  animation: ringPulse 2s ease-out infinite;
}

.ring-1 {
  width: 64px;
  height: 64px;
  animation-delay: 0s;
}

.ring-2 {
  width: 80px;
  height: 80px;
  animation-delay: 0.4s;
}

.ring-3 {
  width: 96px;
  height: 96px;
  animation-delay: 0.8s;
}

@keyframes ringPulse {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

/* ── Center icon circle ── */
.audio-btn-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e20b1a, #c00818);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(226, 11, 26, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.audio-btn:hover .audio-btn-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(226, 11, 26, 0.6);
}

.audio-btn:active .audio-btn-icon {
  transform: scale(0.95);
}

/* ── Label ── */
.audio-btn-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.3px;
  margin: 0;
  white-space: nowrap;
}

/* ── Playing state — icon changes ── */
.audio-btn.playing .audio-btn-icon {
  background: linear-gradient(135deg, #28a745, #1e8c3a);
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.45);
}

/* ── Hide audio element visually ── */
#welcomeAudio {
  display: none;
}

/* ==========================================================================
   PRELOADER — BASE
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  width: 100px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

/* ==========================================================================
   PRELOADER AUDIO SECTION
   ========================================================================== */

/* Hidden by default — shown by JS */
.preloader-audio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

/* JS adds this class to show it */
.preloader-audio.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ==========================================================================
   PULSE BUTTON
   ========================================================================== */
.pulse-btn {
  position: relative;
  width: 72px;
  height: 72px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0;
}

/* Pulsing rings */
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid rgba(226, 11, 26, 0.6);
  animation: pulseRing 2.2s ease-out infinite;
}

.pulse-ring-1 {
  width: 72px;
  height: 72px;
  animation-delay: 0s;
}

.pulse-ring-2 {
  width: 90px;
  height: 90px;
  animation-delay: 0.5s;
}

.pulse-ring-3 {
  width: 108px;
  height: 108px;
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Center icon */
.pulse-icon {
  position: relative;
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e20b1a 0%, #c00818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(226, 11, 26, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pulse-btn:hover .pulse-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(226, 11, 26, 0.6);
}

.pulse-btn:active .pulse-icon {
  transform: scale(0.95);
}

/* Playing state — green */
.pulse-btn.playing .pulse-icon {
  background: linear-gradient(135deg, #28a745 0%, #1d7a34 100%);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.pulse-btn.playing .pulse-ring {
  border-color: rgba(40, 167, 69, 0.6);
}

/* Label */
.pulse-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin: 0;
  text-align: center;
  letter-spacing: 0.2px;
}

/* Skip button */
.pulse-skip {
  background: transparent;
  border: 1px solid #ddd;
  color: #888;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.pulse-skip:hover {
  border-color: #e20b1a;
  color: #e20b1a;
  background: rgba(226, 11, 26, 0.05);
}

/* Hide audio element */
#welcomeAudio {
  display: none;
}

/* ==========================================================================
   SERVICES CARDS — WITH BACKGROUND IMAGES
   ========================================================================== */

.spn-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.spn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ── Background Image ── */
.spn-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.spn-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.spn-card:hover .spn-card-img img {
  transform: scale(1.08);
}

/* ── Transparent Overlay ── */
.spn-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: background 0.4s ease;
}

.spn-card:hover .spn-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(226, 11, 26, 0.2) 0%,
    rgba(226, 11, 26, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* ── Highlight card (Nishtha Mitra) — slightly different overlay ── */
.spn-card.spn-highlight .spn-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(226, 11, 26, 0.1) 0%,
    rgba(226, 11, 26, 0.4) 50%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.spn-card.spn-highlight:hover .spn-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(226, 11, 26, 0.25) 0%,
    rgba(226, 11, 26, 0.55) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

/* ── Content ── */
.spn-card-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  width: 100%;
  height: 100%;
}

/* ── Number ── */
.spn-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  transition: color 0.3s ease;
}

.spn-card:hover .spn-num {
  color: rgba(255, 255, 255, 0.2);
}

/* ── Icon ── */
.spn-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.spn-card:hover .spn-icon {
  background: rgba(226, 11, 26, 0.8);
  transform: scale(1.08);
  border-color: rgba(226, 11, 26, 0.6);
}

.spn-card.spn-highlight .spn-icon {
  background: rgba(226, 11, 26, 0.7);
  border-color: rgba(226, 11, 26, 0.5);
}

/* ── Title ── */
.spn-card-inner h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* ── Description ── */
.spn-card-inner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 14px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA ── */
.spn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    gap 0.3s ease;
}

.spn-card:hover .spn-cta {
  opacity: 1;
  transform: translateX(0);
}

.spn-cta i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.spn-card:hover .spn-cta i {
  transform: translateX(4px);
}

/* ── Remove old .spn-card-bg if exists ── */
.spn-card-bg {
  display: none;
}

/* ==========================================================================
   SERVICES GRID LAYOUT
   ========================================================================== */
.spn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Make highlight card span 2 columns on large screens */
@media (min-width: 768px) {
  .spn-card.spn-highlight {
    grid-column: span 2;
    min-height: 360px;
  }
}

@media (min-width: 1024px) {
  .spn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .spn-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .spn-card.spn-highlight {
    grid-column: span 2;
    min-height: 380px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .spn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .spn-card {
    min-height: 260px;
  }

  .spn-card.spn-highlight {
    min-height: 280px;
  }

  .spn-cta {
    opacity: 1;
    transform: translateX(0);
  }

  .spn-num {
    font-size: 32px;
  }
}
/* ── Number — OUTLINED STROKE STYLE ── */
.spn-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  text-shadow: none;
  transition: -webkit-text-stroke 0.3s ease;
}

.spn-card:hover .spn-num {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .services-buttons-section {
    padding: 60px 0 50px;
  }

  .sb-header {
    margin-bottom: 36px;
  }

  .services-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .serv-btn {
    width: 100%;
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 18px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-size: 0.82rem;
    line-height: 1.35;
    white-space: normal;
    gap: 8px;
  }

  .serv-btn-num {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .serv-btn span:last-child {
    display: block;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .services-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .serv-btn {
    min-height: 60px;
    padding: 11px 12px;
    font-size: 0.76rem;
    border-radius: 16px;
    gap: 7px;
  }

  .serv-btn-num {
    width: 22px;
    height: 22px;
    font-size: 0.66rem;
  }
}
@media (max-width: 768px) {
  .serv-btn {
    min-height: 68px;
    overflow: visible;
  }

  .serv-btn span:last-child {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
    overflow: visible;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .serv-btn {
    min-height: 66px;
    overflow: visible;
  }

  .serv-btn span:last-child {
    line-height: 1.45;
  }
}
.spn-card-inner {
  align-items: flex-start;
  text-align: left;
}

.spn-card-inner h3 {
  text-align: left;
  width: 100%;
  display: block;
}
.spn-card {
  position: relative;
}

.spn-card::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f94c66;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  z-index: 4;
  box-shadow: 0 6px 16px rgba(255, 79, 109, 0.28);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.spn-card:hover::after {
  transform: translateX(4px);
  background: #ff5c78;
}

/* HOW TO BOOK - make icons clearly white */
.how-card .how-icon i {
  color: #fff !important;
  opacity: 1 !important;
}

/* optional: if icon container is also too light */
.how-card .how-icon {
  color: #fff !important;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.how-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(230, 57, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(230, 57, 70, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.how-card {
  background: white;
  min-height: 300px; /* make cards larger */
  padding: 34px 24px 28px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--trans);
  border: 1px solid var(--gray-lighter);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.how-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.15);
}

.how-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.08);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 18px;
}

.how-icon {
  width: 64px;
  height: 64px;
  margin: 18px auto 18px;
  background: var(--grad-primary-soft);
  color: #fff; /* white icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--trans);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
  flex-shrink: 0;
}

.how-card:hover .how-icon {
  background: var(--grad-primary);
  color: white;
  transform: scale(1.1);
}

.how-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.how-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.how-connector {
  display: none;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-card {
    min-height: 270px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how-card {
    min-height: 240px;
    padding: 30px 20px 24px;
  }

  .how-icon {
    margin: 16px auto 16px;
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .how-card h3 {
    margin-bottom: 8px;
  }
}
.how-card {
  min-height: 300px;
  padding: 22px 24px 24px;
}

.how-icon {
  margin: 10px auto 12px;
}

.how-card h3 {
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .how-card {
    min-height: 240px;
    padding: 18px 20px 20px;
  }

  .how-icon {
    margin: 8px auto 10px;
  }
}

/* ==========================================================================
   NEW INNER PAGE BANNER - Modern, Compact, Premium
   ========================================================================== */

.inner-banner {
  position: relative;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 50%, #ffd5da 100%);
  padding: 70px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(230, 57, 70, 0.08);
}

/* Decorative Shapes */
.ib-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ib-shape-1 {
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.15) 0%,
    transparent 70%
  );
}

.ib-shape-2 {
  bottom: -80px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 70%
  );
}

.ib-shape-3 {
  top: 30%;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.08) 0%,
    transparent 70%
  );
}

/* Inner Container */
.ib-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

/* Icon Badge */
.ib-icon-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: white;
  color: var(--primary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
  position: relative;
  animation: ib-float 3s ease-in-out infinite;
}

.ib-icon-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(230, 57, 70, 0.3);
  border-radius: 26px;
  animation: ib-rotate 20s linear infinite;
}

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

@keyframes ib-rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Title */
.ib-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Description */
.ib-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 600px;
}

/* Breadcrumb */
.ib-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.ib-breadcrumb a {
  color: var(--gray-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.ib-breadcrumb a:hover {
  color: var(--primary);
}

.ib-breadcrumb a i {
  color: var(--primary);
  font-size: 0.85rem;
}

.ib-sep {
  color: var(--gray-light);
  font-weight: 600;
}

.ib-current {
  color: var(--primary);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inner-banner {
    padding: 50px 0 45px;
  }

  .ib-icon-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .ib-title {
    font-size: 1.8rem;
  }

  .ib-desc {
    font-size: 0.92rem;
  }

  .ib-breadcrumb {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    padding: 40px 0 35px;
  }

  .ib-icon-badge {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .ib-title {
    font-size: 1.5rem;
  }

  .ib-desc {
    font-size: 0.88rem;
  }
}
/* ── Stats Strip ── */
.gal-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px 32px;
  margin: 0 0 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.gal-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.gal-stat-item i {
  color: #e20b1a;
  font-size: 16px;
}

.gal-stat-sep {
  width: 1px;
  height: 32px;
  background: #eee;
}
/* ── Gallery CTA ── */
.gallery-cta {
  margin-top: 20px;
}

.gal-cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1.5px solid rgba(226, 11, 26, 0.12);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 8px 30px rgba(226, 11, 26, 0.07);
}

.gal-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e20b1a, #c00818);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.gal-cta-content {
  flex: 1;
}

.gal-cta-content h3 {
  font-size: 1.15rem;
  margin: 0 0 4px;
  color: #1a1a1a;
}

.gal-cta-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lb-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lb-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-top: 12px;
}

.lb-counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 6px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.lb-close:hover {
  background: #e20b1a;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}

.lb-nav:hover {
  background: #e20b1a;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 2;
  }

  .gal-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .gal-stats-strip {
    gap: 0;
    padding: 16px 20px;
  }

  .gal-stat-item {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 2;
    column-gap: 10px;
  }

  .gal-item {
    margin-bottom: 10px;
  }

  .gallery-filters {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gal-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 12.5px;
  }

  .gal-stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .gal-stat-sep {
    display: none;
  }

  .gal-stat-item {
    padding: 10px 12px;
    font-size: 12px;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* ===== STATS ===== */
.stats-section {
  background: #f8f9fa;
  padding: 70px 0;
  color: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
}
.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(226, 11, 26, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span {
  font-size: 0.95rem;
  color: var(--gray);
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .stat-card span {
    font-size: 0.85rem;
  }
  .stats-section {
    padding: 50px 0;
  }
}

@media (max-width: 380px) {
  .stats-grid {
    gap: 14px;
  }
  .stat-num {
    font-size: 1.7rem;
  }
}
/* ===== STATS ===== */
.stats-section {
  background: #f8f9fa;
  padding: 70px 0;
  color: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: var(--r-md);
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--trans);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(226, 11, 26, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
}

/* ===== STATS RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .stat-card span {
    font-size: 0.85rem;
  }
  .stats-section {
    padding: 50px 0;
  }
}

@media (max-width: 380px) {
  .stats-grid {
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-num {
    font-size: 1.7rem;
  }
}
/* HIRING NOTE */
.hiring-note {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 24px 28px;
  background: var(--primary-soft);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hiring-note i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.hiring-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-dark);
  min-width: 0; /* important */
}

.hiring-note strong {
  color: var(--primary);
}

.hiring-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* MOBILE */
@media (max-width: 768px) {
  .hiring-note {
    padding: 18px 16px;
    gap: 12px;
  }

  .hiring-note p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hiring-note a {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hiring-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px;
    gap: 10px;
  }

  .hiring-note i {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .hiring-note p {
    font-size: 0.88rem;
    line-height: 1.6;
    width: 100%;
  }

  .hiring-note a {
    display: block;
    width: 100%;
  }
}


/* ── Submit button faded by default ─────────────────── */
.apply-form button[type="submit"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

/* ── Submit button full color when consent checked ───── */
.apply-form button[type="submit"].btn-ready {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.apply-form button[type="submit"].btn-ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.apply-form button[type="submit"].btn-ready:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── During submission ───────────────────────────────── */
.apply-form button[type="submit"]:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
}


/* ════════════════════════════════════════════════════════════
   APPLICATION FORM — Compact single-screen layout
   ════════════════════════════════════════════════════════════ */

/* ── Section padding reduced ────────────────────────────── */
.apply-section {
  padding: 50px 0 !important;
}

/* ── Grid - tighter gap ─────────────────────────────────── */
.apply-grid {
  gap: 30px !important;
  align-items: start;
}

/* ── Form wrapper - compact padding ─────────────────────── */
.apply-form-wrap {
  padding: 25px 28px !important;
}

/* ── Form heading - smaller ─────────────────────────────── */
.apply-form .form-heading {
  font-size: 22px !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
}

/* ── Form rows - tighter spacing ────────────────────────── */
.apply-form .form-row {
  gap: 14px !important;
  margin-bottom: 12px !important;
}

.apply-form .form-group {
  margin-bottom: 12px !important;
}

/* ── Labels - smaller & tighter ─────────────────────────── */
.apply-form label {
  font-size: 13px !important;
  margin-bottom: 5px !important;
}

/* ── Inputs - reduced height ────────────────────────────── */
.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 10px 14px 10px 38px !important;
  font-size: 14px !important;
  height: auto !important;
}

.apply-form textarea {
  min-height: 70px !important;
  resize: vertical;
}

.apply-form .input-icon {
  font-size: 14px !important;
  top: 12px !important;
}

/* ── File upload - compact ──────────────────────────────── */
.apply-form .file-upload-label {
  padding: 10px 14px !important;
  font-size: 13px !important;
}

/* ── Checkbox compact ───────────────────────────────────── */
.apply-form .form-check {
  margin: 12px 0 !important;
}

.apply-form .form-check label {
  font-size: 12.5px !important;
  line-height: 1.4;
}

/* ── Submit button compact ──────────────────────────────── */
.apply-form button[type="submit"] {
  padding: 12px 24px !important;
  font-size: 15px !important;
  margin-top: 5px;

  /* Faded by default */
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.apply-form button[type="submit"].btn-ready {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.apply-form button[type="submit"].btn-ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.apply-form button[type="submit"]:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── Hide inline success (we use modal instead) ─────────── */
.apply-form .form-success {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════
   SUCCESS POPUP MODAL
   ════════════════════════════════════════════════════════════ */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.success-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.success-modal.show .success-modal-box {
  transform: scale(1);
}

.success-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  animation: bounceIn 0.6s ease;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

@keyframes bounceIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-modal-box h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
}

.success-modal-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.success-modal-btn {
  background: linear-gradient(135deg, var(--primary, #e63946), #c1121f);
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.success-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.success-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  transition: all 0.2s ease;
}

.success-modal-close:hover {
  background: #e63946;
  color: #fff;
  transform: rotate(90deg);
}

/* ── Mobile responsive ──────────────────────────────────── */
@media (max-width: 992px) {
  .apply-section {
    padding: 60px 0 !important;
  }
  .apply-form-wrap {
    padding: 25px 20px !important;
  }
}


/* ════════════════════════════════════════════════════════════
   APPLICATION FORM — Single screen compact view
   ════════════════════════════════════════════════════════════ */

/* ── Section — reduced top/bottom padding ───────────────── */
.apply-section {
  padding: 30px 0 40px !important;
}

/* ── Grid — tighter gap, align top ──────────────────────── */
.apply-grid {
  gap: 25px !important;
  align-items: start;
}

/* ── LEFT side — compact ────────────────────────────────── */
.apply-info .section-label {
  margin-bottom: 8px !important;
  font-size: 12px !important;
  padding: 5px 14px !important;
}

.apply-title {
  font-size: 28px !important;
  margin-bottom: 10px !important;
  line-height: 1.2 !important;
}

.apply-desc {
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

.apply-contact-list {
  gap: 12px !important;
}

.apply-contact-item {
  padding: 10px 12px !important;
  gap: 10px !important;
}

.aci-icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 14px !important;
}

.apply-contact-item strong {
  font-size: 13px !important;
  margin-bottom: 1px !important;
}

.apply-contact-item a,
.apply-contact-item span {
  font-size: 12px !important;
}

/* ── RIGHT side — compact form ──────────────────────────── */
.apply-form-wrap {
  padding: 20px 22px !important;
}

.apply-form .form-heading {
  font-size: 20px !important;
  margin-bottom: 14px !important;
  padding-bottom: 10px !important;
}

.apply-form .form-row {
  gap: 12px !important;
  margin-bottom: 0 !important;
}

.apply-form .form-group {
  margin-bottom: 10px !important;
}

.apply-form label {
  font-size: 12px !important;
  margin-bottom: 4px !important;
  font-weight: 600;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 9px 12px 9px 36px !important;
  font-size: 13px !important;
  height: auto !important;
  min-height: 38px !important;
}

.apply-form textarea {
  min-height: 60px !important;
  max-height: 80px;
  resize: vertical;
}

.apply-form .input-icon {
  font-size: 13px !important;
  top: 11px !important;
  left: 12px !important;
}

/* File upload compact */
.apply-form .file-upload-wrap {
  margin-top: 2px;
}

.apply-form .file-upload-label {
  padding: 9px 14px !important;
  font-size: 12px !important;
}

.apply-form .file-upload-label i {
  font-size: 14px !important;
}

/* Checkbox compact */
.apply-form .form-check {
  margin: 10px 0 12px !important;
  gap: 8px;
}

.apply-form .form-check label {
  font-size: 12px !important;
  line-height: 1.4;
}

/* Submit button compact */
.apply-form button[type="submit"] {
  padding: 11px 24px !important;
  font-size: 14px !important;
  margin-top: 0 !important;

  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.apply-form button[type="submit"].btn-ready {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.apply-form button[type="submit"].btn-ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.apply-form button[type="submit"]:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Hide inline success - using popup */
.apply-form .form-success {
  display: none !important;
}

/* ── Mobile responsive — back to normal size ────────────── */
@media (max-width: 992px) {
  .apply-section {
    padding: 50px 0 !important;
  }
  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    font-size: 14px !important;
    padding: 11px 14px 11px 38px !important;
  }
  .apply-title {
    font-size: 26px !important;
  }
}


/* ==========================================================================
   SUCCESS POPUP MODAL
   ========================================================================== */

.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.success-popup-overlay.active {
  display: flex;
}

/* ── Popup Card ── */
.success-popup {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: popupSlideIn 0.4s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Check Icon ── */
.success-popup-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popupIconBounce 0.6s ease 0.2s both;
}

.success-popup-icon i {
  font-size: 2.4rem;
  color: #059669;
}

@keyframes popupIconBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ── Title ── */
.success-popup-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

/* ── Message ── */
.success-popup-msg {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.success-popup-sub {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 28px;
  line-height: 1.5;
}

.success-popup-sub strong {
  color: #059669;
  font-weight: 600;
}

/* ── Close Button ── */
.success-popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #e20b1a, #c5091a);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(226, 11, 26, 0.3);
}

.success-popup-close:hover {
  background: linear-gradient(135deg, #c5091a, #a00815);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 11, 26, 0.4);
}

.success-popup-close:active {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .success-popup {
    padding: 36px 24px 28px;
    margin: 0 16px;
  }

  .success-popup-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .success-popup-icon i {
    font-size: 1.8rem;
  }

  .success-popup-title {
    font-size: 1.5rem;
  }

  .success-popup-msg {
    font-size: 0.95rem;
  }

  .success-popup-sub {
    font-size: 0.88rem;
  }

  .success-popup-close {
    padding: 10px 32px;
    font-size: 0.92rem;
  }
}


/* SUCCESS POPUP */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
}

.success-popup-overlay.active {
  display: flex;
}

.success-popup {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  animation: popupSlideIn 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.success-popup-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popupIconBounce 0.6s ease 0.2s both;
}

.success-popup-icon i {
  font-size: 2.4rem;
  color: #059669;
}

@keyframes popupIconBounce {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-popup-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.success-popup-msg {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.success-popup-sub {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 28px;
  line-height: 1.5;
}

.success-popup-sub strong {
  color: #059669;
  font-weight: 600;
}

.success-popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #e20b1a, #c5091a);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(226, 11, 26, 0.3);
}

.success-popup-close:hover {
  background: linear-gradient(135deg, #c5091a, #a00815);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .success-popup {
    padding: 36px 24px 28px;
    margin: 0 16px;
  }
  .success-popup-title {
    font-size: 1.5rem;
  }
}


/* ==========================================================================
   FORM INPUT ICONS — UNIVERSAL ALIGNMENT FIX
   Works for both <i> before OR after the input
   ========================================================================== */

/* Wrapper — relative positioning for icon */
.input-wrap {
  position: relative;
  display: block;
  width: 100%;
}

/* Icon — absolutely positioned, perfectly centered */
.input-wrap .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
  width: 18px;
  text-align: center;
  transition: color 0.3s ease;
}

/* All inputs — proper left padding for icon space */
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 13px 16px 13px 46px;     /* 46px left for icon */
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

/* Focus state */
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: #e20b1a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(226, 11, 26, 0.08);
}

/* Icon color changes on focus */
.input-wrap:focus-within .input-icon {
  color: #e20b1a;
}

/* Placeholder styling */
.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #94a3b8;
  font-size: 0.92rem;
}

/* ── TEXTAREA — icon at top-left ── */
.input-wrap.textarea-wrap .input-icon {
  top: 18px;
  transform: none;
}

.input-wrap.textarea-wrap textarea {
  padding-top: 14px;
  resize: vertical;
  min-height: 100px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

/* ── SELECT — remove default arrow + add custom ── */
.input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* ── LABEL ── */
.form-group > label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  font-family: "Poppins", sans-serif;
}

.form-group > label span {
  color: #e20b1a;
  margin-left: 2px;
}

/* ── FORM ROW (2 columns) ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 18px;
}

/* ── FILE UPLOAD ── */
.file-upload-wrap {
  position: relative;
}

.file-upload-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #e20b1a;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: #e20b1a;
  background: #fef2f2;
}

.file-upload-label i {
  font-size: 1.1rem;
}

/* ── CHECKBOX ── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #e20b1a;
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}

/* ── FORM ERROR TEXT ── */
.form-error {
  display: block;
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 16px;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    padding: 12px 14px 12px 42px;
    font-size: 0.92rem;
  }

  .input-wrap .input-icon {
    left: 14px;
    font-size: 0.9rem;
  }
}

/* FORCE icon to center — override any conflicting styles */
.form-group .input-wrap .input-icon,
.apply-form .input-wrap .input-icon,
.contact-form .input-wrap .input-icon {
  position: absolute !important;
  top: 50% !important;
  left: 16px !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* But keep textarea icon at top */
.form-group .input-wrap.textarea-wrap .input-icon,
.apply-form .input-wrap.textarea-wrap .input-icon,
.contact-form .input-wrap.textarea-wrap .input-icon {
  top: 18px !important;
  transform: none !important;
}