
/* =========================================================
   INSPIREPLAY GLOBAL STYLE SHEET
   Clean merged version from homepage, about, services, and contact styles.
   Duplicates removed, conflicts resolved, important shared sections retained.
   ========================================================= */

/* =========================
   1) ROOT VARIABLES
   ========================= */
:root {
  --primary: #11bfd3;
  --primary-dark: #0e6a74;
  --dark: #181d38;
  --dark-alt: #111a45;
  --white: #ffffff;
  --text-soft: #667085;
  --text-body: #52565b;
  --border-soft: #eaf0f4;
  --bg-soft: #f9fcfd;
  --bg-soft-alt: #f8fbfd;
  --footer-icon-bg: rgba(255, 255, 255, 0.08);
  --footer-border: rgba(255, 255, 255, 0.08);
  --booking-orange: #ef6c00;
  --booking-orange-dark: #d95f00;
  --shadow-soft: 0 10px 24px rgba(17, 24, 39, 0.08);
  --shadow-card: 0 16px 34px rgba(17, 24, 39, 0.08);
  --shadow-card-lg: 0 24px 60px rgba(0, 0, 0, 0.16);
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-xxl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  color: var(--text-body);
  overflow-x: hidden;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold {
  font-family: "Nunito", sans-serif;
}

p {
  color: var(--text-soft);
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

/* =========================
   2) GLOBAL UTILITIES
   ========================= */
.section-space {
  padding: 110px 0;
}

.bg-light-soft {
  background: linear-gradient(180deg, #f9fcfd 0%, #ffffff 100%);
}

.section-title,
.inspire-section-kicker,
.inspire-page-kicker,
.inspire-contact-panel-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
}

.inspire-section-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.inspire-section-heading h2,
.inspire-section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.18;
}

.inspire-section-heading p,
.inspire-section-intro p {
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 0;
}

.inspire-section-intro p + p {
  margin-top: 18px;
}

/* =========================
   3) SPINNER + DEFAULT BUTTONS
   Keep these for shared Bootstrap/UI behaviors
   ========================= */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  transition: .3s ease;
  border-radius: 12px;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 12px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

/* =========================
   4) SHARED CTA BUTTON FAMILY
   Main rounded buttons used across pages
   ========================= */
.inspire-section-btn,
.inspire-section-btn-outline,
.inspire-hero-btn-primary,
.inspire-hero-btn-secondary,
.inspire-nav-cta,
.inspire-band-btn,
.inspire-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  outline: none;
  box-shadow: none;
}

.inspire-section-btn,
.inspire-hero-btn-primary {
  background: var(--primary);
  color: var(--white);
}

.inspire-section-btn:hover,
.inspire-hero-btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.inspire-section-btn-outline,
.inspire-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark);
  border: 1px solid rgba(24, 29, 56, 0.1);
}

.inspire-section-btn-outline:hover,
.inspire-hero-btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.inspire-band-btn {
  background: var(--booking-orange);
  color: #fff;
  min-width: 210px;
}

.inspire-band-btn:hover {
  background: var(--booking-orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   5) NAVBAR
   Site-wide approved dark navbar + solid mobile dropdown
   ========================= */
.inspire-navbar {
  background: #181d38;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0;
  transition: all 0.25s ease;
  z-index: 9999;
}

.inspire-navbar.scrolled,
.inspire-navbar.nav-scrolled {
  background: linear-gradient(90deg, #131c4a 0%, #0f1b4c 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inspire-navbar.scrolled .inspire-nav-cta,
.inspire-navbar.nav-scrolled .inspire-nav-cta {
  background: #e65a00;
  box-shadow: 0 12px 28px rgba(230, 90, 0, 0.25);
}

.inspire-navbar.scrolled .inspire-nav-cta:hover,
.inspire-navbar.nav-scrolled .inspire-nav-cta:hover {
  background: #c94d00;
}

.inspire-nav-shell {
  min-height: 100px;
  display: flex;
  align-items: center;
}

.inspire-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.inspire-brand img {
  max-height: 66px;
  width: auto;
  display: block;
}

.inspire-nav-collapse {
  align-items: center;
}

.inspire-nav-links {
  gap: 22px;
  align-items: center;
}

.inspire-navbar .nav-link,
.inspire-nav-links .nav-link {
  position: relative;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0 !important;
  margin: 0 8px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.inspire-navbar .nav-link:hover,
.inspire-navbar .nav-link.active,
.inspire-nav-links .nav-link:hover,
.inspire-nav-links .nav-link.active {
  color: var(--primary) !important;
  opacity: 1;
}

.inspire-nav-cta {
  background: var(--booking-orange);
  color: #fff !important;
  padding: 14px 24px;
  min-width: 200px;
  margin-left: 28px;
  box-shadow: 0 14px 28px rgba(239, 108, 0, 0.2);
  font-size: 14px;
}

.inspire-nav-cta:hover {
  background: var(--booking-orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile toggler */
.navbar-toggler.inspire-toggler,
.inspire-toggler {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
}

.navbar-toggler.inspire-toggler:focus,
.inspire-toggler:focus {
  box-shadow: none !important;
}

.inspire-toggler-icon-custom {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inspire-toggler-icon-custom span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #ffffff;
  border-radius: 999px;
}

/* Legacy toggler structure support */
.inspire-toggler-box {
  width: 24px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.inspire-toggler-line {
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #ffffff;
  transition: all 0.25s ease;
}

/* =========================
   6) HOME HERO
   Bright approved homepage hero with preserved video background
   ========================= */
.hero-inspire {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-inspire-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inspire-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 20%,
      rgba(255, 255, 255, 0.65) 40%,
      rgba(255, 255, 255, 0.2) 60%
    );
  z-index: 1;
}

.hero-inspire-container {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-inspire-slider {
  max-width: 760px;
}

.hero-inspire-copy {
  color: #1d2d37;
  padding: 20px 0;
}

.hero-inspire-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-inspire-title {
  font-size: 54px;
  line-height: 1.02;
  font-weight: 800;
  color: #1d2d37;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-inspire-text {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.9;
  color: #5a6b7b;
  margin-bottom: 28px;
}

.hero-inspire-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-inspire-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.25s ease;
  background: var(--primary);
  color: #fff;
}

.hero-inspire-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-inspire-slider .carousel-control-prev,
.hero-inspire-slider .carousel-control-next,
.hero-inspire-slider .carousel-control-prev-icon,
.hero-inspire-slider .carousel-control-next-icon {
  display: none !important;
}

.hero-inspire-slider .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.hero-inspire-indicators {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-inspire-indicators button {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(29, 45, 55, 0.25);
}

.hero-inspire-indicators button.active {
  width: 52px;
  background: var(--primary);
}

/* =========================
   7) INNER PAGE HERO
   Used by about, services, and contact pages
   ========================= */
.inspire-inner-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 155px 0 80px;
  overflow: hidden;
  background: #eef9fb;
}

.inspire-inner-hero-bg,
.inspire-inner-hero-bg img,
.inspire-inner-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inspire-inner-hero-bg img {
  object-fit: cover;
  filter: brightness(1.05) saturate(1.02);
}

.inspire-inner-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 35%,
    rgba(255, 255, 255, 0.54) 70%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

.inspire-inner-hero .container,
.inspire-inner-hero .row {
  position: relative;
  z-index: 2;
}

.inspire-inner-hero-content h1 {
  font-size: 54px;
  line-height: 1.02;
  font-weight: 800;
  color: var(--dark);
  margin: 16px 0 18px;
  max-width: 760px;
}

.inspire-inner-hero-content p {
  max-width: 760px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 30px;
}

.inspire-inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.inspire-breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #475467;
  font-size: 17px;
}

.inspire-breadcrumb-wrap a {
  color: #475467;
  text-decoration: none;
}

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

/* =========================
   8) HOMEPAGE SERVICES + MODALS
   ========================= */
.inspire-services-home,
.inspire-service-page {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
}

.inspire-service-grid {
  margin-top: 48px;
}

.service-card-modern,
.inspire-service-card {
  background: #fff;
  border: 1px solid #eaf0f4;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
  height: 100%;
}

.service-card-modern:hover,
.inspire-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 191, 211, 0.2);
}

.service-card-image,
.inspire-service-card-media {
  height: 240px;
  overflow: hidden;
  background: #f5fafb;
  position: relative;
}

.inspire-service-card-media {
  height: 250px;
}

.service-card-image img,
.inspire-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card-modern:hover .service-card-image img,
.inspire-service-card:hover .inspire-service-card-media img {
  transform: scale(1.03);
}

.service-card-body,
.inspire-service-card-body {
  padding: 28px 24px 26px;
}

.service-card-body {
  text-align: center;
}

.service-card-icon,
.inspire-service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(17, 191, 211, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.inspire-service-icon {
  margin: 0 0 18px;
  width: 62px;
  height: 62px;
}

.service-card-body h3,
.inspire-service-card-body h3 {
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.inspire-service-card-body h3 {
  font-size: 26px;
  font-weight: 800;
}

.service-card-body p,
.inspire-service-card-body p {
  color: var(--text-soft);
  line-height: 1.85;
}

.service-card-body p {
  margin-bottom: 22px;
}

.inspire-service-card-body p {
  margin-bottom: 18px;
}

.service-card-actions,
.inspire-service-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.service-card-actions .btn,
.inspire-service-actions .btn,
.inspire-service-actions .inspire-section-btn-outline {
  border-radius: 999px;
  min-height: 52px;
  min-width: 138px;
  font-weight: 800;
  box-shadow: none !important;
}

.inspire-service-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #181d38;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inspire-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.inspire-service-list li {
  position: relative;
  padding-left: 24px;
  color: #475467;
  line-height: 1.75;
}

.inspire-service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
  font-size: 14px;
}

/* Shared service modal */
.service-modal {
  border: 1px solid #eaf0f4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}

.service-modal-close,
.service-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
}

.service-modal-image-wrap {
  min-height: 100%;
  background: #f7fbfc;
}

.service-modal-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.service-modal-content {
  padding: 38px 32px;
}

.service-modal-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-modal-content h2 {
  color: var(--dark);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
}

.service-modal-content p,
.service-modal-content ul li {
  color: var(--text-soft);
  line-height: 1.85;
}

.service-modal-content h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin: 22px 0 12px;
}

.service-modal-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.modal-book-box {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--bg-soft);
}

/* =========================
   9) CAFE / ABOUT / SOCIAL HOME BLOCKS
   Shared homepage content cards
   ========================= */
.cafe-section,
.about-section,
.social-section,
.inspire-gallery-section,
.testimonial-wrap-home {
  background: #fff;
}

.cafe-shell,
.about-shell,
.social-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  padding: 38px;
}

.cafe-content h2,
.about-content h2 {
  color: var(--dark);
  font-weight: 900;
  line-height: 1.2;
}

.cafe-lead,
.about-lead,
.social-intro {
  color: var(--text-soft);
  line-height: 1.9;
}

.cafe-features .cafe-card,
.about-highlight-strip,
.social-info-card,
.social-feed-card,
.footer-info-card {
  border: 1px solid var(--border-soft);
}

.cafe-card {
  height: 100%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cafe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  border-color: rgba(17, 191, 211, 0.2);
}

.cafe-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(17, 191, 211, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cafe-card-text h3,
.social-info-card h3 {
  color: var(--dark);
  font-weight: 900;
}

.cafe-card-text p,
.social-info-card p,
.footer-text,
.footer-about,
.footer-note,
.social-note {
  color: var(--text-soft);
  line-height: 1.85;
}

.cafe-actions,
.about-actions,
.social-actions,
.inspire-gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cafe-actions .btn,
.about-actions .btn,
.social-actions .btn,
.inspire-gallery-btn {
  min-height: 54px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: none !important;
}

/* =========================================================
   SHARED ACTION BUTTONS
   Clean professional button sizing across sections
========================================================= */
.cafe-actions .btn,
.about-actions .btn,
.social-actions .btn,
.inspire-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: none !important;
  white-space: nowrap;
  width: auto;
}

/* Section action wrappers */
.cafe-actions,
.about-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Cafe section buttons */
.cafe-actions .btn {
  min-width: 160px;
}

/* Outline buttons cleaner look */
.cafe-actions .btn-outline-primary,
.about-actions .btn-outline-primary,
.social-actions .btn-outline-primary {
  border-width: 1.5px;
}

/* =========================================================
   FULL-WIDTH BUTTONS ONLY WHERE NEEDED
   Keep mobile stacking only for selected CTA sections
========================================================= */
.hero-inspire-links a,
.inspire-inner-hero-actions .btn,
.inspire-cta-actions a,
.inspire-service-cta-actions a,
.inspire-contact-cta-actions a {
  width: auto;
}

/* =========================================================
   MOBILE RESPONSIVE BUTTON STACKING
   Only stack where layout is narrow
========================================================= */
@media (max-width: 767.98px) {
  .hero-inspire-links a,
  .inspire-inner-hero-actions .btn,
  .inspire-cta-actions a,
  .inspire-service-cta-actions a,
  .inspire-contact-cta-actions a,
  .cafe-actions .btn,
  .about-actions .btn,
  .social-actions .btn {
    width: 100%;
  }

  .cafe-actions,
  .about-actions,
  .social-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.cafe-image-wrap,
.about-image-soft {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
  min-height: 420px;
  background: #f4fafb;
}

.cafe-image-wrap img,
.about-image-soft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cafe-image-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 9px 14px;
}

.about-media {
  position: relative;
  padding-bottom: 22px;
}

.about-badge-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.about-badge-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-badge-card strong {
  color: var(--dark);
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.about-points p {
  color: var(--dark);
  font-weight: 600;
  line-height: 1.7;
}

.about-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
}

.about-highlight-strip span {
  background: #f9fcfd;
  border: 1px solid #ecf3f5;
  color: var(--dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}

.social-shell .row {
  align-items: flex-start !important;
}

.social-info-card,
.social-feed-card {
  height: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 28px 24px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(17, 191, 211, 0.10);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.social-feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.social-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.75;
}

.social-feature-item i {
  color: var(--primary);
  margin-top: 3px;
}

.social-feed-head {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ecf2f4;
}

.social-feed-head h4 {
  color: var(--dark);
  font-weight: 900;
}

.social-feed-embed {
  border-radius: 20px;
  overflow: hidden;
  background: #f7fbfc;
}

.social-feed-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  max-width: 100%;
}

/* =========================
   10) GALLERY + LIGHTBOX
   ========================= */
.inspire-gallery-section {
  position: relative;
  padding: 110px 0;
  background: #f8fbfd;
  overflow: hidden;
}

.inspire-gallery-head {
  max-width: 820px;
  margin: 0 auto 44px;
}

.inspire-gallery-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #06bbcc;
}

.inspire-gallery-kicker::before,
.inspire-gallery-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #06bbcc;
}

.inspire-gallery-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  color: #181d38;
}

.inspire-gallery-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
}

.inspire-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #e9eef3;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-photo {
  grid-column: span 4;
  aspect-ratio: 3 / 2;
}

.gallery-reel {
  grid-column: span 3;
  aspect-ratio: 9 / 16;
}

.gallery-video {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 29, 56, 0.05) 0%,
    rgba(24, 29, 56, 0.16) 60%,
    rgba(24, 29, 56, 0.34) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-item-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #181d38;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.gallery-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #06bbcc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.18);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-play-icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.inspire-gallery-cta {
  margin-top: 38px;
}

.inspire-gallery-btn {
  padding: 16px 34px;
  background: #06bbcc;
  color: #ffffff;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(6, 187, 204, 0.22);
}

.inspire-gallery-btn:hover {
  background: #181d38;
  color: #ffffff;
  transform: translateY(-2px);
}

.inspire-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 25, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.inspire-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 92vw;
  max-height: 88vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 22px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  font-size: 28px;
  line-height: 1;
}

/* =========================
   11) TESTIMONIALS
   ========================= */
.testimonial-wrap-home {
  padding: 0 0 110px;
}

.testimonial-item img {
  object-fit: cover;
}

.testimonial-item h3 {
  color: var(--dark);
  font-weight: 900;
}

.testimonial-text,
.testimonial-item .testimonial-text {
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%) !important;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 0;
  z-index: 1;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #fff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #d7dee5;
  transition: .3s;
  border-radius: 50%;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* =========================
   12) ABOUT PAGE
   ========================= */
.inspire-about-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
}

.inspire-about-image-wrap {
  position: relative;
  padding-right: 36px;
  padding-bottom: 36px;
}

.inspire-about-image-main {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
}

.inspire-about-image-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.inspire-about-badge {
  position: absolute;
  left: 28px;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 22px 24px;
  min-width: 230px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.inspire-about-badge span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.inspire-about-badge strong {
  font-size: 22px;
  line-height: 1.35;
  color: var(--dark);
  font-family: "Nunito", sans-serif;
}

.inspire-about-points {
  margin: 26px 0 30px;
}

.inspire-point-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 18px 18px;
  height: 100%;
}

.inspire-point-card i {
  color: var(--primary);
  font-size: 18px;
}

.inspire-point-card span {
  color: var(--dark);
  font-weight: 700;
}

.inspire-info-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
}

.inspire-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 191, 211, 0.2);
}

.inspire-info-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: rgba(17, 191, 211, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.inspire-info-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}

.inspire-info-card p {
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 0;
}

.inspire-why {
  background: #ffffff;
}

.inspire-feature-box {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s ease;
}

.inspire-feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 191, 211, 0.22);
}

.inspire-feature-box i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(17, 191, 211, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.inspire-feature-box h4 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.inspire-feature-box p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0;
}

.inspire-values {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
}

.inspire-value-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 28px 22px;
  height: 100%;
}

.inspire-value-card h4 {
  font-size: 21px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.inspire-value-card p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0;
}

.inspire-experience-band {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: linear-gradient(rgba(24, 29, 56, 0.78), rgba(14, 106, 116, 0.72)), url("img/home/about11.jpg") center center / cover no-repeat;
}

.inspire-experience-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin: 16px 0 16px;
  line-height: 1.18;
}

.inspire-experience-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  margin-bottom: 0;
}

.inspire-about-cta {
  background: #ffffff;
}

.inspire-cta-panel {
  background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  padding: 54px 36px;
  text-align: center;
}

.inspire-cta-panel h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--dark);
}

.inspire-cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.9;
}

.inspire-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   13) SERVICES PAGE
   ========================= */
.inspire-service-highlight,
.inspire-contact-intro {
  margin-top: -55px;
  position: relative;
  z-index: 5;
}

.inspire-highlight-shell,
.inspire-contact-intro-shell {
  background: #ffffff;
  border: 1px solid rgba(24, 29, 56, 0.06);
  border-radius: 30px;
  padding: 24px;
}

.inspire-highlight-grid,
.inspire-contact-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.inspire-highlight-card,
.inspire-contact-intro-card {
  background: #f9fcfd;
  border: 1px solid #eaf2f4;
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  height: 100%;
}

.inspire-highlight-card:hover,
.inspire-contact-intro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 187, 204, 0.24);
  background: #ffffff;
}

.inspire-highlight-icon,
.inspire-contact-intro-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(6, 187, 204, 0.10);
  color: var(--primary);
  font-size: 22px;
}

.inspire-highlight-card h4,
.inspire-contact-intro-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.inspire-highlight-card p,
.inspire-contact-intro-card p,
.inspire-contact-intro-card a {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
  text-decoration: none;
}

.inspire-contact-intro-card a:hover {
  color: var(--primary);
}

.inspire-service-overview {
  padding: 110px 0 40px;
}

/* =========================================================
   SERVICES GRID
   Keep Bootstrap row/column layout for homepage + service page
   This prevents the 2-column conflict caused by custom CSS grid
========================================================= */
.inspire-service-grid {
  margin-top: 50px;
}

/* Remove forced CSS grid behavior from service wrapper */
.inspire-service-grid.row {
  display: flex;
  flex-wrap: wrap;
}

/* =========================================================
   SERVICE CARD
   Standard service card layout matching approved screenshot
========================================================= */
.service-card-modern {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #dfe7ef;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

/* Top image */
.service-card-image {
  position: relative;
  height: 295px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.service-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 45px 18px 22px;
  text-align: center;
}

/* Floating icon */
.service-card-icon {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: #eef9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 187, 204, 0.12);
}

.service-card-icon i {
  font-size: 34px;
  color: #11b5c9;
}

/* Title */
.service-card-modern h3,
.service-card-modern .h4 {
  margin-bottom: 20px;
  color: #181d38;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

/* Description */
.service-card-modern p {
  margin: 0 0 28px;
  color: #5f6f86;
  font-size: 16px;
  line-height: 2;
}

/* Buttons area */
.service-card-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}

.service-card-actions .btn {
  min-width: 175px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: none;
}

.service-card-actions .btn-primary {
  background: #16b8cc;
  border-color: #16b8cc;
  color: #ffffff;
}

.service-card-actions .btn-primary:hover {
  background: #0f9fb1;
  border-color: #0f9fb1;
  color: #ffffff;
}

.service-card-actions .btn-outline-primary {
  background: transparent;
  border: 1.5px solid #16b8cc;
  color: #16b8cc;
}

.service-card-actions .btn-outline-primary:hover {
  background: #16b8cc;
  border-color: #16b8cc;
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE TUNING
========================================================= */
@media (max-width: 991.98px) {
  .service-card-image {
    height: 260px;
  }

  .service-card-body {
    padding: 72px 24px 28px;
  }

  .service-card-actions .btn {
    min-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .inspire-service-grid {
    margin-top: 36px;
  }

  .service-card-modern {
    border-radius: 26px;
  }

  .service-card-image {
    height: 235px;
  }

  .service-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    top: -34px;
  }

  .service-card-icon i {
    font-size: 28px;
  }

  .service-card-body {
    padding: 64px 20px 24px;
  }

  .service-card-modern h3,
  .service-card-modern .h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .service-card-modern p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .service-card-actions {
    gap: 12px;
  }

  .service-card-actions .btn {
    width: 100%;
    min-width: 100%;
    padding: 15px 22px;
  }
}

.inspire-process-wrap {
  padding: 60px 0 110px;
}

.inspire-process-shell {
  background: #f7fbfc;
  border: 1px solid #ebf2f4;
  border-radius: 30px;
  padding: 36px;
}

.inspire-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.inspire-process-card {
  background: #ffffff;
  border: 1px solid #eaf0f4;
  border-radius: 22px;
  padding: 24px 22px;
  height: 100%;
}

.inspire-process-no {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(6, 187, 204, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.inspire-process-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.inspire-process-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.inspire-why-services {
  padding: 0 0 110px;
}

.inspire-why-services-shell {
  background: #ffffff;
  border: 1px solid #ecf1f3;
  border-radius: 32px;
  padding: 38px;
}

.inspire-why-soft-box {
  height: 100%;
  background: #f9fcfd;
  border: 1px solid #edf3f5;
  border-radius: 24px;
  padding: 26px 24px;
}

.inspire-why-soft-box h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.inspire-why-soft-box p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0;
}

.inspire-why-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.inspire-why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #ecf2f4;
}

.inspire-why-point i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(6, 187, 204, 0.10);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.inspire-why-point h5 {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
}

.inspire-why-point p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-soft);
}

.inspire-faq-section {
  padding: 0 0 110px;
}

.inspire-faq-shell {
  max-width: 900px;
  margin: 0 auto;
}

.inspire-faq-shell .accordion-item {
  border: 1px solid #eaf0f4;
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: none;
}

.inspire-faq-shell .accordion-button {
  padding: 22px 24px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: none !important;
  background: #ffffff;
}

.inspire-faq-shell .accordion-button:not(.collapsed) {
  color: #0e6a74;
  background: #f5fbfc;
}

.inspire-faq-shell .accordion-body {
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.85;
}

.inspire-service-cta {
  padding: 0 0 110px;
}

.inspire-service-cta-panel {
  background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  border: 1px solid #eaf0f4;
  border-radius: 32px;
  padding: 54px 36px;
  text-align: center;
}

.inspire-service-cta-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--dark);
}

.inspire-service-cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.9;
}

.inspire-service-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   14) CONTACT PAGE
   ========================= */
.inspire-contact-page {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
}

.inspire-contact-main {
  padding: 110px 0 70px;
}

.inspire-contact-wrap {
  margin-top: 50px;
}

.inspire-contact-info-panel,
.inspire-contact-form-panel {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  padding: 32px 30px;
}

.inspire-contact-info-panel h2,
.inspire-contact-form-panel h2 {
  margin: 14px 0 14px;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
}

.inspire-contact-info-panel > p,
.inspire-contact-form-panel > p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 24px;
}

.inspire-contact-info-list {
  display: grid;
  gap: 16px;
}

.inspire-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid #edf3f5;
  border-radius: 20px;
}

.inspire-contact-info-item i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(6, 187, 204, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.inspire-contact-info-item h5 {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
}

.inspire-contact-info-item p,
.inspire-contact-info-item a {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  text-decoration: none;
}

.inspire-contact-info-item a:hover {
  color: var(--primary);
}

.inspire-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.inspire-contact-socials a {
  min-width: 150px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid #eaf2f4;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.inspire-contact-socials a:hover {
  color: var(--primary);
  border-color: rgba(6, 187, 204, 0.24);
  background: #ffffff;
  transform: translateY(-2px);
}

.inspire-contact-form .form-label {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.inspire-contact-form .form-control,
.inspire-contact-form .form-select,
.inspire-contact-form textarea {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid #e3ebef;
  padding: 14px 18px;
  color: #475467;
  background: #fcfeff;
  box-shadow: none !important;
}

.inspire-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.inspire-contact-form .form-control:focus,
.inspire-contact-form .form-select:focus,
.inspire-contact-form textarea:focus {
  border-color: rgba(6, 187, 204, 0.38);
  background: #ffffff;
}

.inspire-contact-map {
  padding: 0 0 110px;
}

.inspire-contact-map-shell {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
}

.inspire-contact-map-top {
  padding: 24px 24px 0;
}

.inspire-contact-map-top h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
}

.inspire-contact-map-frame iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.inspire-contact-cta {
  padding: 0 0 110px;
}

.inspire-contact-cta-panel {
  background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  padding: 54px 36px;
  text-align: center;
}

.inspire-contact-cta-panel h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--dark);
}

.inspire-contact-cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.9;
}

.inspire-contact-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   15) CATEGORY / COURSE IMAGE HOVERS
   ========================= */
.category img,
.course-item img {
  transition: .5s;
  border-radius: 18px;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.04);
}

.category-label {
  border-top-left-radius: 16px;
  box-shadow: 0 6px 18px rgba(19, 44, 73, 0.04);
}

/* =========================
   16) FOOTER
   Site-wide approved footer with newsletter support
   ========================= */
.inspire-footer {
  position: relative;
  background: linear-gradient(90deg, #131c4a 0%, #0f1b4c 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 78px 0 0;
  margin-top: 0;
}

.inspire-footer-inner {
  padding-bottom: 36px;
}

.inspire-footer-logo,
.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.inspire-footer-logo img,
.footer-logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.inspire-footer-about {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.inspire-footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.inspire-footer-socials a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--footer-icon-bg);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.25s ease;
}

.inspire-footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: #fff;
}

.inspire-footer-newsletter {
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--footer-border);
  border-radius: 24px;
  padding: 22px 22px 20px;
  margin-top: 6px;
}

.inspire-footer-newsletter h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.inspire-footer-newsletter p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 15px;
}

.inspire-footer-newsletter .input-group {
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  padding: 6px;
}

.inspire-footer-newsletter input {
  border: none !important;
  box-shadow: none !important;
  min-height: 54px;
  padding-left: 18px;
}

.inspire-footer-newsletter button {
  min-width: 122px;
  border-radius: 999px !important;
  font-weight: 800;
  background: var(--primary);
  border: none;
}

.inspire-footer-newsletter button:hover {
  background: var(--primary-dark);
}

.inspire-footer-title {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 26px;
}

.inspire-footer-links,
.inspire-footer-services,
.inspire-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inspire-footer-links a,
.inspire-footer-services a,
.inspire-footer-contact a,
.inspire-footer-contact span {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1.8;
  font-size: 16px;
  transition: all 0.25s ease;
}

.inspire-footer-links a:hover,
.inspire-footer-services a:hover,
.inspire-footer-contact a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.inspire-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.inspire-footer-contact-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-top: 6px;
  width: 20px;
  flex-shrink: 0;
}

.inspire-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

/* =========================
   17) FLOATING CTA + BACK TO TOP
   ========================= */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
  transition: .3s ease;
}

.floating-cta a:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
  color: #fff;
}

.floating-whatsapp {
  background: #25D366;
}

.floating-call {
  background: var(--booking-orange);
}

.floating-channel {
  background: var(--dark);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 24px;
  z-index: 99;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(17, 191, 211, 0.28);
}

/* =========================
   18) POPUP SUCCESS MODAL
   Used for contact/newsletter confirmation
   ========================= */
.inspire-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.inspire-popup.show {
  opacity: 1;
  visibility: visible;
}

.inspire-popup-box {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-card-lg);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.inspire-popup.show .inspire-popup-box {
  transform: translateY(0);
}

.inspire-popup-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(6, 187, 204, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.inspire-popup-box h3 {
  color: var(--dark);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

.inspire-popup-box p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 24px;
}

.inspire-popup-close {
  min-width: 150px;
}

/* =========================
   19) FOCUS STATES
   ========================= */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(6, 187, 204, 0.25);
  outline-offset: 2px;
}

/* =========================
   20) RESPONSIVE LAYOUT
   Consolidated media queries
   ========================= */
@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 160px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 220px;
  }

  .navbar-toggler.inspire-toggler,
  .inspire-toggler {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .inspire-nav-cta {
    min-width: 220px;
    padding: 16px 24px;
  }

  .inspire-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-photo {
    grid-column: span 6;
  }

  .gallery-reel {
    grid-column: span 4;
  }

  .gallery-video {
    grid-column: span 8;
  }

  .inspire-highlight-grid,
  .inspire-contact-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inspire-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inspire-about-image-main img {
    height: 560px;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler.inspire-toggler,
  .inspire-toggler {
    display: inline-flex !important;
  }

  .section-space,
  .inspire-gallery-section {
    padding: 90px 0;
  }

  .inspire-navbar {
    background: #181d38;
  }

  .inspire-nav-shell {
    min-height: 82px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .inspire-brand img {
    max-height: 52px;
  }

  .inspire-nav-collapse {
    background: #181d38;
    margin-top: 14px;
    padding: 20px 18px 18px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }

  .inspire-nav-links {
    gap: 0;
    width: 100%;
  }

  .inspire-navbar .navbar-nav {
    width: 100%;
    background: #181d38;
  }

  .inspire-navbar .nav-link,
  .inspire-nav-links .nav-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 0 !important;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .inspire-navbar .nav-link:last-child,
  .inspire-nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .inspire-nav-cta {
    margin: 20px 0 0;
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    padding: 14px 22px;
    font-size: 16px;
  }

  .hero-inspire {
    min-height: 92vh;
  }

  .hero-inspire-container {
    padding-top: 135px;
    padding-bottom: 70px;
  }

  .inspire-inner-hero {
    min-height: auto;
    padding: 135px 0 70px;
  }

  .inspire-service-grid {
    grid-template-columns: 1fr;
  }

  .inspire-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-photo {
    grid-column: span 6;
  }

  .gallery-reel {
    grid-column: span 6;
    aspect-ratio: 9 / 14;
  }

  .gallery-video {
    grid-column: span 12;
  }

  .service-modal-content {
    padding: 28px 24px;
  }

  .service-modal-image {
    min-height: 300px;
  }

  .social-feed-embed iframe {
    min-height: 540px;
  }

  .inspire-about-image-wrap {
    padding-right: 0;
  }

  .inspire-about-image-main img {
    height: 500px;
  }

  .inspire-about-badge {
    left: 18px;
    right: 18px;
    min-width: unset;
  }

  .floating-cta {
    right: 14px;
    bottom: 86px;
  }
}

@media (max-width: 767.98px) {
  .hero-inspire-title,
  .inspire-inner-hero-content h1 {
    font-size: 3rem;
  }

  .hero-inspire-links,
  .cafe-actions,
  .about-actions,
  .social-actions,
  .inspire-inner-hero-actions,
  .inspire-cta-actions,
  .inspire-service-cta-actions,
  .inspire-contact-cta-actions {
    flex-direction: column;
  }



  .cafe-shell,
  .about-shell,
  .social-shell,
  .inspire-highlight-shell,
  .inspire-process-shell,
  .inspire-why-services-shell,
  .inspire-service-cta-panel,
  .inspire-contact-cta-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .social-feed-embed iframe {
    min-height: 520px;
  }

  .inspire-gallery-section {
    padding: 80px 0;
  }

  .inspire-gallery-head {
    margin-bottom: 30px;
  }

  .inspire-gallery-kicker::before,
  .inspire-gallery-kicker::after {
    width: 28px;
  }

  .inspire-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-photo,
  .gallery-reel,
  .gallery-video {
    grid-column: span 2;
  }

  .gallery-photo {
    aspect-ratio: 3 / 2;
  }

  .gallery-reel {
    aspect-ratio: 9 / 14;
  }

  .gallery-video {
    aspect-ratio: 16 / 9;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-play-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .gallery-item-label {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .inspire-highlight-grid,
  .inspire-process-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image,
  .inspire-service-card-media {
    height: 220px;
  }

  .inspire-service-card-body {
    padding: 22px 20px 22px;
  }

  .inspire-service-card-body h3 {
    font-size: 22px;
  }

  .service-card-actions .btn,
  .inspire-service-actions .btn,
  .inspire-service-actions .inspire-section-btn-outline {
    width: 100%;
  }

  .service-modal {
    border-radius: 22px;
  }

  .service-modal .row {
    display: flex;
    flex-direction: column;
  }

  .service-modal-image-wrap {
    min-height: 220px;
    height: 220px;
    width: 100%;
  }

  .service-modal-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
  }

  .service-modal-content {
    max-height: calc(85vh - 220px);
    padding: 24px 20px 26px;
    overflow-y: auto;
  }

  .service-modal-content h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .inspire-about-image-main img {
    height: 420px;
  }

  .inspire-info-card,
  .inspire-feature-box,
  .inspire-value-card,
  .inspire-cta-panel {
    padding: 24px 20px;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-xxl {
    padding-left: 18px;
    padding-right: 18px;
  }

  .inspire-nav-shell {
    min-height: 76px;
  }

  .inspire-brand img {
    max-height: 46px;
  }

  .navbar-toggler.inspire-toggler,
  .inspire-toggler {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .inspire-nav-collapse {
    margin-top: 12px;
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .inspire-navbar .nav-link,
  .inspire-nav-links .nav-link {
    font-size: 16px;
    padding: 13px 0 !important;
  }

  .inspire-nav-cta {
    min-height: 54px;
    font-size: 15px;
  }

  .hero-inspire-container {
    padding-top: 120px;
  }

  .hero-inspire-text {
    font-size: 16px;
  }

  .cafe-shell,
  .about-shell,
  .social-shell {
    padding: 18px;
  }

  .cafe-image-wrap,
  .about-image-soft {
    min-height: 250px;
    border-radius: 20px;
  }

  .about-badge-card,
  .inspire-about-badge {
    position: relative;
    left: 0;
    right: 0;
    margin-top: 18px;
  }

  .about-media,
  .inspire-about-image-wrap {
    padding-bottom: 0;
  }

  .social-feed-embed iframe {
    min-height: 500px;
  }

  .back-to-top {
    width: 54px;
    height: 54px;
    right: 20px;
    bottom: 18px;
  }

  .floating-cta {
    right: 12px;
  }

  .floating-cta a span {
    display: none;
  }

  .service-card-modern,
  .inspire-service-card {
    border-radius: 20px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-body {
    padding: 24px 18px 22px;
  }

  .service-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 24px;
  }

  .service-modal {
    border-radius: 18px;
  }

  .service-modal-close,
  .service-modal .btn-close {
    top: 14px;
    right: 14px;
  }

  .service-modal-image-wrap,
  .service-modal-image {
    height: 200px;
    min-height: 200px;
  }

  .service-modal-content {
    max-height: calc(88vh - 200px);
    padding: 20px 18px 22px;
  }

  .service-modal-content h2 {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .service-modal-content p,
  .service-modal-content ul li {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

@media (max-width: 399.98px) {
  .service-card-image {
    height: 185px;
  }

  .service-modal-image-wrap,
  .service-modal-image {
    height: 180px;
    min-height: 180px;
  }

  .service-modal-content {
    max-height: calc(90vh - 180px);
    padding: 18px 16px 20px;
  }

  .service-modal-content h2 {
    font-size: 1.5rem;
  }

  .service-modal-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}
