/* ==========================================================================
   ADALYN COACHING & CONSULTING — Design tokens
   Signature motif: concentric ripple rings, echoing the site's closing
   quote ("the mind is like a lake..."). Used in hero, quote banner and
   as a recurring accent on portrait / dividers.
   ========================================================================== */
:root {
  --navy: #0f1b2e;
  --navy-2: #16233a;
  --gold: #c6a15b;
  --gold-light: #e7ce9b;
  --cream: #faf6ef;
  --cream-2: #f2ebdc;
  --ink: #1e2430;
  --mist: #6b7280;
  --line: rgba(15, 27, 46, 0.1);

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 14px 40px rgba(15, 27, 46, 0.1);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

p {
  color: var(--ink);
  line-height: 1.75;
}

a {
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .g-5 {
    --bs-gutter-x: 0rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--gold-light);
  color: var(--navy);
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1rem;
  text-align: justify;
  color: var(--ink);
}

.section {
  padding: 6.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4.2rem 0;
  }
}

/* ---------------- Buttons ---------------- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(198, 161, 91, 0.35);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(250, 246, 239, 0.55);
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.btn-outline-light-custom:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* ---------------- Navbar ---------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(15, 27, 46, 0.08);
}

/* Top Bar */
.top-bar {
  background: var(--gold);
  color: #ffffff;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    max-height 0.35s var(--ease),
    padding 0.35s var(--ease),
    opacity 0.35s var(--ease);
  max-height: 50px;
  opacity: 1;
  overflow: hidden;
}

/* .site-header.scrolled .top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
} */

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.85;
}

.custom-navbar {
  padding: 0.1rem 0;
  transition: padding 0.35s var(--ease);
}

/* .site-header.scrolled .custom-navbar {
  padding: 0.4rem 0;
} */

.navbar-brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  height: 80px;
  width: auto;
  transition: height 0.35s var(--ease);
}

/* .site-header.scrolled .brand-logo {
  height: 50px;
} */

.nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0.2rem !important;
  margin: 0 0.6rem;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-cta {
  background: var(--navy);
  color: var(--gold) !important;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(198, 161, 91, 0.35);
}

.toggler-icon {
  font-size: 1.6rem;
  color: var(--navy);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: 0.6rem;
  box-shadow: var(--shadow-soft);
}

.navbar-collapse.show .nav-link,
.navbar-collapse.collapsing .nav-link {
  color: var(--navy) !important;
}

/* Custom Dropdown Styling */
.custom-navbar .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  min-width: 90px;
  margin-top: 0.5rem;
}

.custom-navbar .dropdown-item {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  padding: 0.4rem 1rem;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.custom-navbar .dropdown-item:hover {
  background-color: var(--cream);
  color: var(--gold);
}

/* ---------------- Hero Slider ---------------- */
.hero-carousel {
  position: relative;
  background: #ffffff;
  z-index: 1;
}

.hero-carousel .carousel-item {
  width: 100%;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: auto;
}

/* Carousel Indicators customization */
.hero-carousel .carousel-indicators {
  margin-bottom: 2rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
  background-color: #ffffff;
  width: 50px;
}

/* Carousel Controls customization */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 6%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-size: 50%;
}

@media (max-width: 768px) {
  .hero-carousel .carousel-indicators {
    margin-bottom: 0.8rem;
  }

  .hero-carousel .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 3px;
    margin: 0 3px;
  }

  .hero-carousel .carousel-indicators .active {
    width: 30px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    opacity: 0.6;
  }

  .hero-carousel .carousel-control-prev-icon,
  .hero-carousel .carousel-control-next-icon {
    width: 32px;
    height: 32px;
  }
}

/* Ripple field — signature motif */
.ripple-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.35);
  top: 50%;
  right: 8%;
  transform: translate(50%, -50%);
  animation: rippleOut 7s var(--ease) infinite;
  opacity: 0;
}

.ripple.r1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ripple.r2 {
  width: 120px;
  height: 120px;
  animation-delay: 1.75s;
}

.ripple.r3 {
  width: 120px;
  height: 120px;
  animation-delay: 3.5s;
}

.ripple.r4 {
  width: 120px;
  height: 120px;
  animation-delay: 5.25s;
}

@keyframes rippleOut {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }

  8% {
    opacity: 0.9;
  }

  100% {
    width: 900px;
    height: 900px;
    opacity: 0;
  }
}

.ripple-field-dark .ripple {
  border-color: rgba(250, 246, 239, 0.18);
}

/* ---------------- Reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- About ---------------- */
.about-section {
  background: #ffffff;
}

.about-me-section {
  background: var(--cream);
}

.about-image-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about-image-wrapper img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-portrait {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.portrait-frame {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  /* Ensure image doesn't overflow rounded corners */
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.portrait-placeholder {
  text-align: center;
  color: var(--cream);
}

.portrait-placeholder i {
  font-size: 3.4rem;
  color: var(--gold);
}

.portrait-placeholder span {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 239, 0.75);
}

.portrait-ring {
  position: absolute;
  top: 22px;
  left: -22px;
  right: -22px;
  bottom: -22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: 1;
}

@media (max-width: 768px) {
  .about-portrait {
    max-width: 300px;
    margin: 1rem auto 2rem;
  }

  .portrait-ring {
    top: 14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
  }
}

@media (max-width: 480px) {
  .about-portrait {
    max-width: 80%;
    margin: 1rem auto 1.8rem;
  }

  .portrait-ring {
    top: 10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin-top: 1.6rem;
}

.about-tags span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

.about-tags i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}

.services-section {
  background-color: #ffffff;
}

/* ---------------- Features ---------------- */
.features-section {
  background: #ffffff;
}

.feature-card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 27, 46, 0.04);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  border: 1px solid rgba(198, 161, 91, 0.1);
  margin-bottom: 1.5rem;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 27, 46, 0.08);
  border-color: rgba(198, 161, 91, 0.3);
}

.feature-card-title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.feature-center-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-center-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- Services ---------------- */
.services-row {
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 27, 46, 0.03);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 27, 46, 0.08);
  border-color: rgba(198, 161, 91, 0.3);
}

.service-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
  overflow: hidden;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 2rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.service-card-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.service-card-actions .service-card-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

/* Modal styling overrides to match theme */
.custom-modal .modal-content {
  border-radius: var(--radius);
  border: 1px solid rgba(198, 161, 91, 0.2);
  box-shadow: 0 25px 60px rgba(15, 27, 46, 0.15);
  background: var(--cream);
}

.custom-modal .modal-header {
  border-bottom: 1px solid rgba(15, 27, 46, 0.05);
  padding: 1.8rem 2rem 1rem 2rem;
}

.custom-modal .modal-title {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.6rem;
}

.custom-modal .modal-body {
  padding: 2.2rem 2rem;
}

.custom-modal .btn-close:focus {
  box-shadow: none;
}

.panel-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.step-mark {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  min-width: 110px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--mist);
}

.callout-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}

.callout-box h4 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.callout-box h4 i {
  color: var(--gold);
}

.callout-box p {
  margin: 0;
  color: var(--mist);
  font-size: 0.96rem;
}

.callout-gold {
  background: var(--navy);
  border-color: var(--navy);
}

.callout-gold h4 {
  color: var(--gold-light);
}

.callout-gold p {
  color: rgba(250, 246, 239, 0.85);
}

.mini-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.mini-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: var(--navy);
  box-shadow: none;
  padding: 1rem 0;
}

.mini-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
}

.mini-accordion .accordion-button::after {
  filter: sepia(1) saturate(3) hue-rotate(0deg);
}

.mini-accordion .accordion-body {
  padding: 0 0 1rem 0;
  color: var(--mist);
}

.discovery-card {
  margin-top: 4rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.discovery-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.discovery-content {
  flex: 1;
  min-width: 260px;
}

.discovery-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.discovery-content ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mist);
}

.discovery-content li {
  margin-bottom: 0.3rem;
}

/* ---------------- Why Choose Us ---------------- */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.why-card i {
  font-size: 4.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.why-card h5 {
  font-size: 1.02rem;
  font-weight: 600;
}

.feature-strip {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.feature-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.feature-strip p {
  color: var(--mist);
  font-size: 0.96rem;
}

/* ---------------- Quote banner ---------------- */
.quote-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 6rem 1rem;
  text-align: center;
}

.quote-mark {
  font-size: 2.4rem;
  color: var(--gold);
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--cream);
  max-width: 820px;
  margin: 1rem auto 1rem;
  line-height: 1.5;
}

.quote-banner cite {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ---------------- FAQ ---------------- */
.main-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.main-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  padding: 2rem 1.8rem;
  box-shadow: none;
  background: #fff;
}

.main-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: #fff;
}

.main-accordion .accordion-button:focus {
  box-shadow: none;
}

.main-accordion .accordion-body {
  color: var(--mist);
  padding: 0 1.5rem 1.5rem;
}

/* ---------------- Contact ---------------- */
.contact-section {
  background-color: #ffffff;
}

.contact-section .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid var(--gold);
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.074);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-section iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.074);
  overflow: hidden;
}

.contact-section .info-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-section .info-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-section .info-card p {
  font-size: 0.92rem;
  color: var(--mist);
  margin-bottom: 0;
}

.contact-section .info-card a {
  font-size: 0.92rem;
  color: var(--mist);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section .info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.074);
  overflow: hidden;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  background: #fff;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}

.form-success {
  display: none;
  margin-top: 0.5rem;
  padding: 0.85rem 1.2rem;
  background-color: rgba(58, 125, 92, 0.1);
  border: 1px solid rgba(58, 125, 92, 0.3);
  border-radius: 8px;
  text-align: center;
  color: #2e6248;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
  animation: fadeInPanel 0.5s var(--ease);
}

/* ---------------- Captcha Styling ---------------- */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.captcha-code-wrapper {
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.35rem;
  text-align: center;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  user-select: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 10px,
    transparent 10px,
    transparent 20px
  );
  border: 1.5px dashed var(--gold);
  text-decoration: line-through;
  text-decoration-color: rgba(198, 161, 91, 0.45);
}

.captcha-refresh-btn {
  border-radius: 10px;
  padding: 0.6rem 0.95rem;
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: #fff;
  transition: all 0.3s ease;
}

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

.captcha-refresh-btn:hover i {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.contact-info-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.4rem;
  height: 100%;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.info-row i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.info-row span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.info-row > div {
  flex: 1;
  min-width: 0;
}

.info-row a,
.info-row p {
  color: var(--cream);
  margin: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
}

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

.social-row {
  display: flex;
  gap: 0.8rem;
  /* margin-top: 1.8rem; */
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s var(--ease);
}

.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-2);
  color: var(--cream);
  padding: 3.5rem 0 1.6rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.brand-logo-footer {
  height: 85px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(250, 246, 239, 0.75);
  font-size: 0.92rem;
  transition: color 0.3s;
}

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

.site-footer hr {
  border-color: rgba(250, 246, 239, 0.15);
  margin: 2rem 0 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.6);
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
  }
}

/* ---------------- WhatsApp float ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: floatPulse 2.6s ease-in-out infinite;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
