:root {
--gold: #E8C26B;
--deep-indigo: #1F1B3A;
--soft-teal: #6EC5B8;
--ink: #0F1020;
--bone: #F6F5F2;
--mist: #E9ECEF;
}

/* Background pattern */
.sacred-geometry-bg {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23E8C26B' fill-opacity='0.08'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9 10h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm9 10v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-10 0v9h-9v-9h9zm-9 10h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9zm10 0h9v9h-9v-9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bone);
  color: var(--ink);
  margin: 0;
  padding: 0;
}

/* Heading font */
h1, h2, h3 {
font-family: 'Inter Tight', 'Inter', sans-serif;
}

.services-section {
  background-color: #E0F6F2; /* matches your upper teal */
  padding: 4rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.services-container.single-center {
  justify-content: center;
  margin-top: 20px;
}

.service-card {
  flex: 1 1 calc(50% - 10px);
  background-color: #fefdf9;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  color: #0F1020;
  text-align: left;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-card.single {
  flex: 0 1 60%;
  text-align: center;
}

.services-section .services-container {
  flex-direction: row;
}

.services-section .single-center {
  flex-direction: row;
}

.explore-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232, 194, 107, 0.25);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #F0D185;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 194, 107, 0.35);
}

service-card ul {
  list-style-position: outside;
  margin-left: 1.2rem;
}

.service-card.single ul {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  list-style-position: outside;
}

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

/* clean bullet list look */
.service-list {
  text-align: left;
  list-style: disc;
  list-style-position: outside;
  display: inline-block;
  margin: 0 auto 1.5rem auto;
  padding-left: 1.5rem;
  text-indent: 0;
}

/* center the button nicely under the list */
.cta-wrapper {
  text-align: center;
  margin-top: 1rem;
}

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

/* ✅ this version guarantees visible, properly aligned bullets */
.service-list {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 auto 1.5rem auto;
  padding-left: 1.5rem;
  text-align: left;
  display: block;
}

/* centers the button cleanly below the list */
.cta-wrapper {
  text-align: center;
  margin-top: 1rem;
}

/* -------------------- SERVICE SECTION -------------------- */

/*.services-section {
  background: linear-gradient(to bottom right, #f6f5f2, #ddd6c1);
  padding: 4rem 1rem;
}*/

/* layout for two top cards + one centered below */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* .services-container.single-center {
  justify-content: center;
  margin-top: 40px;
} */

/* -------------------- CARD STYLING -------------------- */
.service-card {
  flex: 1 1 calc(50% - 12px);
  background-color: #fefdf9;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  color: #0F1020;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* centered single card
.service-card.single {
  flex: 0 1 60%;
  text-align: center;
} */

/* -------------------- TEXT STYLING -------------------- */
.service-card h3 {
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1F1B3A;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.services-container {
  display: flex;
  align-items: stretch; /* makes all cards equal height */
  gap: 2rem; /* spacing between cards */
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  margin-bottom: 0.5rem; /* tighter under title */
}

.service-card em {
  display: block;
  margin-bottom: 1rem; /* less gap under italic subhead */
}

.service-card p {
  margin-bottom: 1.25rem; /* controls body space before “What this unlocks” */
  line-height: 1.6;
}

/*.service-card ul {
  margin-top: auto;
}*/

.service-card {
  background: var(--bone);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem; /* slightly tighter */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card {
  padding-bottom: 1.25rem; /* fine control for base padding */
}


p {
  line-height: 1.75;
}
/* -------------------- BULLET LIST -------------------- */
.service-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.25rem;
  text-align: left;
  margin: 0 auto 1rem auto;
  max-width: 90%;
}

.service-list li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

/* -------------------- CTA BUTTON -------------------- */
.explore-btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232, 194, 107, 0.25);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #f0d185;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(232, 194, 107, 0.35);
}

/* Center the CTA in the bottom card only */
.service-card.single .explore-btn {
  align-self: center;
}


/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
  .service-card {
    flex: 1 1 100%;
    text-align: left;
  }
  .service-card.single {
    flex: 1 1 100%;
  }
  .service-list {
    max-width: 100%;
  }
}

/* -------------------- CTA BUTTON -------------------- */
.explore-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 194, 107, 0.25);
  transition: all 0.3s ease;
  min-width: 220px; /* ✅ consistent button width */
  align-self: center; /* ✅ centers button in all cards */
}

.explore-btn:hover {
  background-color: #f0d185;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(232, 194, 107, 0.35);
}
.service-card {
  text-align: center; /* centers text + button for visual symmetry */
}
.service-list {
  text-align: left;   /* but keeps bullet text left aligned */
  margin: 0 auto 1rem auto;
  max-width: 80%;
}

.full-width-banner {
  background: linear-gradient(120deg, #1B9C9C, #E8C26B, #FFF2CC);
  padding: 3rem 2rem;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-shimmer {
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-gradient-move {
  background-size: 400% 400%;
  animation: gradient-move 20s ease infinite;
}

@keyframes softFade {
  0%,100% { opacity: 0.95; }
  50% { opacity: 1; }
}
.animate-softFade { 
  animation: softFade 6s ease-in-out infinite; 
}
@keyframes slowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.animate-slowPulse { 
  animation: slowPulse 12s ease-in-out infinite; 
}

#mobile-menu {
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-shadow: 0 0 6px rgba(232,194,107,0.5);
}

