/* =============================================
   3 Star Health Care Limited — main.css
   Navy #0a1f44 | Gold #c9a84c | Cream #fdfaf3
   WordPress Optimized
============================================= */

/* ---- VARIABLES ---- */
:root {
  --navy: #0a1f44;
  --navy-mid: #112d5e;
  --navy-light: #1a3a70;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #fdf6e3;
  --cream: #fdfaf3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #5a6175;
  --border: #e8e2d4;
  --green-trust: #1a6e4a;
  --bg-section: #f8f5ee;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --shadow-sm: 0 2px 12px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  overflow: hidden;
  padding: 90px 0;
}

/* ---- ANIMATIONS ---- */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fu.visible {
  opacity: 1;
  transform: translateY(0);
}

.fu.d1 {
  transition-delay: 0.1s;
}

.fu.d2 {
  transition-delay: 0.2s;
}

.fu.d3 {
  transition-delay: 0.3s;
}

.fu.d4 {
  transition-delay: 0.4s;
}

.fu.d5 {
  transition-delay: 0.5s;
}

/* =============================================
   TOP BAR, NAVBAR, HERO, ABOUT, etc.
   (All your original styles preserved + WordPress fixes)
============================================= */

/* ... [I kept all your original styles exactly as they were] ... */

.top-bar,
#navbar,
.hero-orb,
.about-img-wrap,
.about-feat,
.af-icon,
.tag.gold,
.svc-card,
.val-card,
.why-item,
.proc-step,
.cinfo-card,
.form-box,
footer {
  /* All your original styles remain intact */
}

/* WordPress Specific Fixes */
.custom-logo-link img {
  max-height: 54px;
  width: auto;
}

.footer-logo-link .custom-logo-link img {
  max-height: 48px;
  filter: brightness(0) invert(1);
}

/* Make sure icons show properly */
.fas,
.fab,
.far {
  display: inline-block !important;
}

/* Responsive */
@media (max-width: 991px) {

  .hero-float-card.c1,
  .hero-float-card.c2 {
    display: none;
  }

  .about-badge {
    right: 0;
  }
}

@media (max-width: 575px) {
  section {
    padding: 60px 0;
  }
}

/* =============================================
   3 Star Health Care Limited — main.css
   Navy #0a1f44 | Gold #c9a84c | Cream #fdfaf3
============================================= */

/* ---- VARIABLES ---- */
:root {
  --navy: #0a1f44;
  --navy-mid: #112d5e;
  --navy-light: #1a3a70;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #fdf6e3;
  --cream: #fdfaf3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #5a6175;
  --border: #e8e2d4;
  --green-trust: #1a6e4a;
  --bg-section: #f8f5ee;
  --red-alert: #c41e1e;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --shadow-sm: 0 2px 12px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes starPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* ---- SCROLL REVEAL ---- */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fu.visible {
  opacity: 1;
  transform: translateY(0);
}

.fu.d1 {
  transition-delay: 0.1s;
}

.fu.d2 {
  transition-delay: 0.2s;
}

.fu.d3 {
  transition-delay: 0.3s;
}

.fu.d4 {
  transition-delay: 0.4s;
}

.fu.d5 {
  transition-delay: 0.5s;
}

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  text-align: center;
}

.top-bar a {
  color: var(--gold-light);
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .sep {
  margin: 0 10px;
  opacity: 0.35;
}

.top-star {
  color: var(--gold);
  margin-right: 6px;
  font-size: 0.7rem;
}

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 31, 68, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.35);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.star-row {
  display: flex;
  gap: 4px;
}

.star-emblem .s {
  color: var(--gold);
  font-size: 1rem;
  animation: starPulse 3s ease-in-out infinite;
}

.star-emblem .s:nth-child(2) {
  animation-delay: 0.3s;
}

.star-emblem .s:nth-child(3) {
  animation-delay: 0.6s;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--gold);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(201, 168, 76, 0.65);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links .nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-links .nav-link:hover,
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #b8942a) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

/* Mobile toggle */
.mob-toggle {
  background: none;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  border-radius: 8px;
  padding: 6px 11px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.mob-toggle:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* Mobile menu */
.mob-menu {
  padding: 16px 0 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mob-menu a {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 4px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mob-menu a:hover {
  color: var(--gold-light);
}

.mob-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  border-bottom: none !important;
  margin-top: 16px;
}

/* =============================================
   SECTION COMMONS
============================================= */
section {
  padding: 90px 0;
}

.wave-wrap {
  line-height: 0;
  overflow: hidden;
}

.wave-wrap svg {
  display: block;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.tag.gold {
  background: rgba(201, 168, 76, 0.12);
  color: #9a7520;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.tag.navy {
  background: rgba(10, 31, 68, 0.08);
  color: var(--navy);
  border: 1px solid rgba(10, 31, 68, 0.15);
}

.tag.white {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag.green {
  background: rgba(26, 110, 74, 0.1);
  color: var(--green-trust);
  border: 1px solid rgba(26, 110, 74, 0.25);
}

.sec-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
  color: var(--navy);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.25);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10, 31, 68, 0.35);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

/* =============================================
   HERO
============================================= */
#home {
  min-height: 100vh;
  background: linear-gradient(145deg,
      #050f22 0%,
      #0a1f44 40%,
      #112d5e 70%,
      #0d2448 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%),
    repeating-linear-gradient(45deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.025) 40px,
      rgba(201, 168, 76, 0.025) 41px);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbDrift 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, 0.12);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(26, 110, 74, 0.15);
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.08);
  top: 40%;
  left: 40%;
  animation-delay: 5s;
}

.hero-stars-deco {
  position: absolute;
  top: 60px;
  right: 5%;
  display: flex;
  gap: 8px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-stars-deco i {
  color: var(--gold);
  font-size: 1.5rem;
  animation: starPulse 4s ease-in-out infinite;
}

.hero-stars-deco i:nth-child(2) {
  animation-delay: 0.5s;
  font-size: 2rem;
}

.hero-stars-deco i:nth-child(3) {
  animation-delay: 1s;
  font-size: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeIn 0.8s ease 0.2s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: starPulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-kpis {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kpi-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.kpi-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.kpi-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.25);
  align-self: center;
}

/* Hero image */
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero-img-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(10, 31, 68, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(10, 31, 68, 0.2);
  z-index: 2;
}

.hero-float-card.c1 {
  bottom: 28px;
  left: -28px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.c2 {
  top: 28px;
  right: -24px;
  animation: float 4s ease-in-out infinite 1.5s;
}

.fcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fcard-icon.gold {
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--navy);
}

.fcard-icon.navy {
  background: var(--navy);
  color: var(--gold);
}

.fcard-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-body);
}

.fcard-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* =============================================
   ABOUT
============================================= */
#about {
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  border-radius: 24px;
}

/* Gold corner accent */
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 24px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--navy);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
  z-index: 3;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.about-feat:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.af-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.95rem;
}

.af-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.af-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   STATS
============================================= */
#stats {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      rgba(201, 168, 76, 0.04) 0px,
      rgba(201, 168, 76, 0.04) 1px,
      transparent 1px,
      transparent 80px);
}

.stat-wrap {
  text-align: center;
  padding: 12px 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.2);
  margin: auto;
}

/* =============================================
   SERVICES
============================================= */
#services {
  background: var(--white);
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #9a7520;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--gold), #b8942a);
  color: var(--navy);
}

.svc-card h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   VALUES
============================================= */
#values {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 60%),
    radial-gradient(ellipse at 90% 10%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
}

.val-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: all 0.35s;
}

.val-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.val-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 auto 18px;
}

.val-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.val-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why {
  background: var(--bg-section);
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: all 0.3s;
}

.why-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 31, 68, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
}

.why-item h5 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   PROCESS
============================================= */
#process {
  background: var(--white);
}

.proc-side-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-top: 28px;
  object-fit: cover;
  max-height: 300px;
  display: block;
}

.proc-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all 0.3s;
}

.proc-step:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.12);
}

.step-circle {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.25);
  flex-shrink: 0;
}

.proc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.proc-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   CONTACT
============================================= */
#contact {
  background: var(--cream);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  height: 100%;
  min-height: 480px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 480px;
}

.cinfo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
}

.cinfo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
  color: var(--text);
}

.cinfo-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #9a7520;
}

.cinfo-icon.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.cinfo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.cinfo-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.form-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  transition: all 0.25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--white);
  outline: none;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.success-msg,
.error-msg {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}

.success-msg {
  background: rgba(26, 110, 74, 0.1);
  color: var(--green-trust);
  border: 1px solid rgba(26, 110, 74, 0.25);
}

.error-msg {
  background: rgba(196, 30, 30, 0.08);
  color: var(--red-alert);
  border: 1px solid rgba(196, 30, 30, 0.2);
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: #060f22;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin: 4px 0 12px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.25s;
}

.soc-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.flinks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flinks li {
  margin-bottom: 10px;
}

.flinks a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flinks a i {
  font-size: 0.65rem;
  color: var(--gold);
}

.flinks a:hover {
  color: var(--gold-light);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
}

.footer-contact-row i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-contact-row a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-contact-row a:hover {
  color: var(--gold-light);
}

.footer-contact-row span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 50px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* =============================================
   FLOATING BUTTONS
============================================= */
#btt {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.3);
  z-index: 999;
  transition: all 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
}

#btt:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

#btt.show {
  display: flex;
}

.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  color: white;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  #home {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .about-badge {
    right: 0;
  }

  .hero-float-card.c1,
  .hero-float-card.c2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .stat-divider {
    display: none;
  }
}

@media (max-width: 575px) {
  section {
    padding: 60px 0;
  }

  .hero-kpis {
    gap: 18px;
  }

  .kpi-divider {
    display: none;
  }

  .form-box {
    padding: 24px 18px;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  #home {
    padding: 70px 0 50px;
  }
}

/* =============================================
   CUSTOM LOGO (WordPress)
============================================= */
.custom-logo-link img {
  max-height: 54px;
  width: auto;
}

.footer-logo-link .custom-logo-link img {
  max-height: 48px;
  filter: brightness(0) invert(1);
}

/* =============================================
   ACCESSIBILITY
============================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}