:root {
  --cream: #fff9eb;
  --cream-2: #f7ecd2;
  --gold: #c58d25;
  --purple: #4c1766;
  --green: #2f7a3e;
  --green-soft: #7fa34a;
  --pink: #d93f73;
  --pink-soft: #f9d8e2;
  --ink: #2c2230;
  --muted: #6d5e68;
  --white: #ffffff;
  --leaf-line: rgba(47, 122, 62, 0.24);
  --gold-line: rgba(197, 141, 37, 0.34);
  --shadow: 0 18px 40px rgba(76, 23, 102, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(249, 216, 226, 0.34), transparent 28%),
    linear-gradient(315deg, rgba(127, 163, 74, 0.18), transparent 26%),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
h2{
    font-family: Georgia, "Times New Roman", serif;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}
h2.tm-bio-title.rouge-script-regular {
  font-family: "Rouge Script", cursive  !important;
font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 600;
  font-style: normal;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  overflow: visible;
  padding: 5px clamp(18px, 4vw, 56px);
  background-color: rgba(255, 249, 235, 0.98);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 124px;
  width: 240px;
  overflow: hidden;
}

.brand-logo {
  height: 90px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform: scale(3.2);
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(3.3);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(197, 141, 37, 0.68);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(47, 122, 62, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--purple);
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 761px) and (max-width: 992px) {

  .site-nav {
    left: 70%; /* Adjust as needed */
  }

}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
}

.header-contact-text .small-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.header-contact-text .phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-family: Arial, sans-serif;
  line-height: 1.2;
}

.header-cta {
  background-color: #d8587d !important;
  border-color: #d8587d !important;
  border-radius: 30px !important;
  padding: 10px 24px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: white !important;
}

.header-cta:hover {
  background-color: #b54565 !important;
  border-color: #b54565 !important;
}

@media (max-width: 992px) {
  .header-right {
    display: none;
  }
}

.site-nav a {
  position: relative;
  padding: 8px 16px;
  color: var(--purple);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  text-shadow: 0 0 6px rgba(255, 249, 235, 0.9), 0 0 12px rgba(255, 249, 235, 0.9), 0 0 18px rgba(255, 249, 235, 0.9);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--leaf-line);
  border-radius: 50%;
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(76, 23, 102, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--purple);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 76px);
  overflow: hidden;
}

.hero-media,
.inner-hero::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.home-hero .hero-media {
  background-image: linear-gradient(90deg, rgba(44, 34, 48, 0.66), rgba(76, 23, 102, 0.22)), url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1800&q=82");
}

.hero-content,
.inner-hero>div {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--purple);
  line-height: 1.13;
}

h2::after {
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), var(--pink), transparent);
  content: "";
}

.hero h1::after,
.inner-hero h1::after,
.cta-band h2::after,
.mission-grid h2::after {
  display: none;
}

.hero h1,
.inner-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 10vw, 7rem);
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.hero p,
.inner-hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--green-soft);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-light {
  color: var(--purple);
  background: var(--white);
}

.section {
  padding: clamp(40px, 6vw, 70px) clamp(20px, 6vw, 76px);
}

.section-grid,
.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.intro-band {
  background: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.card-grid,
.product-grid,
.process-grid,
.mission-grid {
  display: grid;
  gap: 22px;
}

.three,
.product-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.product-card,
.info-card,
.detail-card,
.process-grid article,
.mission-grid article,
.contact-form,
.contact-panel {
  border: 1px solid rgba(202, 162, 74, 0.25);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(76, 23, 102, 0.16);
}

.service-card img,
.product-card img,
.split-section img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card div,
.product-card div,
.info-card,
.detail-card,
.process-grid article,
.mission-grid article,
.contact-form,
.contact-panel {
  padding: 24px;
}

.service-card a,
.buy-link {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.tinted {
  background:
    linear-gradient(180deg, var(--cream-2), rgba(249, 216, 226, 0.48)),
    #fff8e8;
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card span {
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--purple);
  font-size: 1.25rem;
}

.center-actions {
  justify-content: center;
}

.pill-grid,
.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pill-grid span,
.why-list span,
.filter-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--leaf-line);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--purple);
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-align: center;
}

.process-section {
  background: rgba(255, 255, 255, 0.72);
}

.process-grid article span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  /* Fades the edges of the marquee */
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: slideMarquee 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes slideMarquee {
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: #fffdf7;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  box-shadow: 0 8px 24px rgba(76, 23, 102, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(76, 23, 102, 0.08);
}

.testimonial-card p {
  color: var(--purple);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card strong {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(110deg, var(--purple), #8f2f6a 48%, var(--green));
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
}

.inner-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 6vw, 76px);
  overflow: hidden;
}

.inner-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(44, 34, 48, 0.72), rgba(76, 23, 102, 0.2));
}

.inner-hero>div {
  position: relative;
  z-index: 2;
}
/* Styling the main heading with your pink gradient */
.about-hero h1 {
    font-family: 'Cinzel', 'Trajan Pro', serif; /* Keeps the elegant look */
    font-size: 4rem;
    margin: 10px 0 20px;
    
    /* 1. The Pink Gradient (Soft Pink to Deep Plum) */
    background: var(--purple);
    
    /* 2. Clipping the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* 3. A soft shadow to separate the gradient from the background image */
    filter: drop-shadow(2px 4px 6px rgba(255, 255, 255, 0.8)); 
    /* NOTE: If your background image is dark, change rgba(255,255,255,0.8) to rgba(0,0,0,0.6) for a dark shadow! */
}

/* Styling the eyebrow text to match */
.about-hero .eyebrow {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black; /* Solid pink to match the gradient start */
    font-weight: 600;
    margin-bottom: 5px;
}

/* Ensuring the paragraph is highly readable */
.about-hero p:not(.eyebrow) {
    font-size: 1.2rem;
    line-height: 1.6;
    color: black; /* Earthy organic brown/plum */
    max-width: 600px;
    font-weight: 500;
}
.about-hero::before {
    content: "";
    background-image: url('../Images/essence-batchflower-about-us.png');
    /* Add this to create a soft white wash over the image, making text super readable */
    background-color: rgba(255, 255, 255, 0.6); 
    background-blend-mode: overlay; /* Blends the color and image beautifully */
    
    /* Ensure it covers the section */
    position: absolute;
    inset: 0;
    z-index: -1;
}

.services-hero::before {
  content: "";
  background-image: url("../Images/essence-batchflower-about-us.png");
}

.contact-hero::before {
  content: "";
  background-image: url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1800&q=82");
}

.shop-hero::before {
  content: "";
  background-image: url("https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?auto=format&fit=crop&w=1800&q=82");
}

.contact-hero::before {
  content: "";
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1800&q=82");
}

.split-section img {
  height: min(520px, 70vh);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.detail-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  background-color: #fffbf5;
  border: 1px solid #e1d3ba;
  border-radius: 12px;
  padding: 15px;
}

.detail-card .btn {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: #fffdf7;
}

summary {
  padding: 18px 20px;
  color: var(--purple);
  font-family: Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tabs button {
  cursor: pointer;
}

.filter-tabs button.active {
  color: var(--white);
  background: var(--green);
}

.product-card.hidden {
  display: none;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--purple);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--leaf-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.contact-methods a {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gold-line);
}

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

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: var(--white);
  background: linear-gradient(110deg, var(--purple), #3b4f2d);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {

  .three,
  .product-grid,
  .process-grid,
  .pill-grid,
  .why-list,
  .section-grid,
  .split-section,
  .contact-layout,
  .service-list,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-grid,
  .split-section,
  .contact-layout {
    align-items: start;
  }
}

@media (max-width: 760px){
  .site-header {
    min-height: 90px;
    padding: 10px 16px;
      overflow: visible;
  }

  .brand {
    height: 90px;
    width: 180px;
  }

  .brand-logo {
    height: 50px;
    margin: 0;
    transform: scale(3.6);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: 12px;
    left: 12px;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 88px);
    padding: 14px;
    border-radius: 8px;
    background: #fffdf7;
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 16px;
    background: rgba(249, 216, 226, 0.36);
  }

  .hero {
    min-height: 76vh;
    padding: 64px 18px;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.5rem);
  }

  .inner-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .inner-hero {
    min-height: 35vh;
    padding: 48px 18px;
  }

  .section {
    padding: 48px 18px;
  }

  .hero-actions,
  .center-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .three,
  .product-grid,
  .process-grid,
  .pill-grid,
  .why-list,
  .section-grid,
  .split-section,
  .contact-layout,
  .service-list,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card img,
  .product-card img,
  .split-section img {
    height: 210px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .product-card div,
  .service-card div,
  .info-card,
  .detail-card,
  .process-grid article,
  .mission-grid article,
  .contact-form,
  .contact-panel {
    padding: 20px;
  }
}

.brand-logo {
  height: 39px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 760px){
.brand-logo {
  height: 25px;
  width: auto;
  object-fit: contain;
}
}

.site-footer .brand-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.custom-footer {
  background-color: #5c366b;
  color: #d1a84f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  font-family: serif;
}

.custom-footer .footer-left,
.custom-footer .footer-center,
.custom-footer .footer-right {
  flex: 1;
}

.custom-footer .footer-left {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-align: left;
}

.custom-footer .footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.custom-footer .footer-name {
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.custom-footer .footer-phone {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.custom-footer .footer-phone a {
  color: inherit;
  text-decoration: none;
}

.custom-footer .footer-right {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .custom-footer {
    flex-direction: column;
    gap: 1.5rem;
  }

  .custom-footer .footer-left,
  .custom-footer .footer-right {
    text-align: center;
  }
}

.detail-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #e1d3ba;
  object-fit: cover;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

@media (max-width: 900px) {
  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}


/* -- Areas of Support Banner -- */
.areas-of-support {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.aos-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #d8587d;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 14px 24px;
  border-radius: 8px 8px 0 0;
  text-transform: uppercase;
}

.aos-leaf {
  color: #c8e6b0;
  font-size: 1.1rem;
}

.aos-strip {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #fff;
  border: 2px solid #f8cdd8;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 28px 16px;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 20px;
}

.aos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 80px;
}

.aos-item span {
  font-size: 0.75rem;
  color: #3d5a2a;
  font-family: Arial, sans-serif;
  font-weight: 600;
  line-height: 1.35;
}

.aos-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.aos-icon-wrap:hover {
  transform: scale(1.12);
}

.aos-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.55);
}

.aos-emoji {
  font-size: 2rem;
  line-height: 1;
}

.aos-divider {
  width: 1px;
  height: 60px;
  background: repeating-linear-gradient(to bottom, #f8cdd8 0, #f8cdd8 4px, transparent 4px, transparent 8px);
  flex-shrink: 0;
}

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

  .aos-strip {
    gap: 16px;
  }
}

/* -- New Full Footer -- */
.site-footer-new {
  background: linear-gradient(135deg, #F3C6D3 0%, #EFCDCB 60%, #E8D3B9 100%);
  color: #c8b0d8;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 40px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transform: scale(1.6);
  transform-origin: left center;
}

.footer-brand-name {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: #d4af62;
  letter-spacing: 0.06em;
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: #b09cc0;
  margin-bottom: 22px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.footer-wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.footer-col-title {
  color: #937330;
  font-family: Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 98, 0.25);
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--purple);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4af62;
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--purple);
}

.footer-contact-list svg {
  color: #574727;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--purple);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #d4af62;
}

.footer-tagline-small {
  font-size: 0.82rem;
  color: var(--purple);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid #d4af62;
  padding-left: 12px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 98, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-mantra {
  color: #574727;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.78rem;
  color: #7a6a8a;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-mantra:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 36px 24px 28px;
  }

  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 6px;
  }
}

/* -- Hero Slider -- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 10, 50, 0.72) 0%,
      rgba(76, 23, 102, 0.38) 50%,
      rgba(30, 10, 50, 0.55) 100%);
}

.slide.active {
  opacity: 1;
  animation: kenBurns 6s ease-in-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.0);
  }
}

/* Content */
.hero-slider-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 5vw, 80px);
  color: #fff;
}

.hero-slider-content .eyebrow {
  color: #d4af62;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.hero-slider-content h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero-slider-content>p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-slider-content .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hs-prev {
  left: 24px;
}

.hs-next {
  right: 24px;
}

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

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hs-dot.active {
  background: #d4af62;
  transform: scale(1.4);
}

@media (max-width: 600px) {
  .hs-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hs-prev {
    left: 10px;
  }

  .hs-next {
    right: 10px;
  }
}

/* -- Services Cards (Fixed Size) -- */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.svc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px;
  height: 100%;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 98, 0.2);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.svc-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #d4af62;
}

.svc-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card-body h3 {
  font-family: Georgia, serif;
  color: #3b1d52;
  font-size: 1.15rem;
  margin: 0 0 12px;
  line-height: 1.3;
}

.svc-card-body p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-readmore {
  margin-top: auto !important;
  display: inline-block;
  background-color: var(--btn-bg, #3b1d52);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}

@media (max-width: 900px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .svc-card {
    height: auto;
  }
}

/* -- Modal Overlay & Content -- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 25, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fdfaf6;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid #d4af62;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.modal-content-wrap {
  padding: 32px;
  overflow-y: auto;
  color: #4a4a4a;
}

.modal-content-wrap h2 {
  font-family: Georgia, serif;
  color: #3b1d52;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.modal-content-wrap h3 {
  font-size: 1.2rem;
  color: #270634;
  margin-top: 24px;
}

.modal-content-wrap p,
.modal-content-wrap ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-content-wrap ul {
  padding-left: 20px;
}

.modal-content-wrap li {
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  background: #e8d5f5;
  color: #5c2d82;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price {
  color: #d4af62;
  font-weight: bold;
}

.modal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0d0c0;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #3b1d52;
  color: #fff;
  border: 2px solid #d4af62;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #d4af62;
  color: #1e0432;
  transform: rotate(90deg);
}

/* --- Scroll Animations --- */
.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade.is-visible {
  opacity: 1;
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional staggered delays for items in a grid */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Card Staggering */
.svc-card.animate-up:nth-child(1) {
  transition-delay: 0.05s;
}

.svc-card.animate-up:nth-child(2) {
  transition-delay: 0.15s;
}

.svc-card.animate-up:nth-child(3) {
  transition-delay: 0.25s;
}

.svc-card.animate-up:nth-child(4) {
  transition-delay: 0.05s;
}

.svc-card.animate-up:nth-child(5) {
  transition-delay: 0.15s;
}

.svc-card.animate-up:nth-child(6) {
  transition-delay: 0.25s;
}

.svc-card.animate-up:nth-child(7) {
  transition-delay: 0.05s;
}

.svc-card.animate-up:nth-child(8) {
  transition-delay: 0.15s;
}

.svc-card.animate-up:nth-child(9) {
  transition-delay: 0.25s;
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 300px;
  }
}

.marquee-track .svc-card {
  width: 320px;
  flex-shrink: 0;
  margin: 0;
}


/* -- Flyer Hero Redesign -- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

.flyer-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcf9f2;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}

.flyer-content {
  max-width: 800px;
  background: rgba(252, 249, 242, 0.5);
  padding: 60px 40px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 60px rgba(74, 32, 90, 0.05);
  border: 1px solid rgba(202, 162, 74, 0.2);
  position: relative;
  z-index: 2;
}

.flyer-logo-icon {
  margin-bottom: 15px;
}

.flyer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #4A205A;
  /* Deep Purple */
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.1;
}

.flyer-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #2C6436;
  /* Leaf Green */
  margin: 15px 0 25px 0;
  line-height: 1.3;
}

.flyer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.flyer-divider span {
  display: block;
  height: 1px;
  width: 80px;
  background: #caa24a;
  /* Gold */
  opacity: 0.6;
}

.flyer-description {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #4A205A;
  margin: 0 0 35px 0;
  line-height: 1.6;
}

.flyer-actions {
  justify-content: center;
  gap: 20px;
}

.flyer-actions .btn {
  background: #4A205A;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
}

.flyer-actions .btn-outline {
  background: transparent;
  border-color: #4A205A;
  color: #4A205A;
}

.flyer-actions .btn-outline:hover {
  background: rgba(74, 32, 90, 0.05);
  transform: translateY(-2px);
}

.flyer-actions .btn:hover {
  background: #3a1847;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 32, 90, 0.15);
}

@media (max-width: 600px) {
  .flyer-content {
    padding: 40px 20px;
  }

  .flyer-divider span {
    width: 40px;
  }

  .flyer-actions {
    flex-direction: column;
    gap: 12px;
  }

  .flyer-actions .btn {
    width: 100%;
  }
}








/* ======================== */
/* WHY CHOOSE US CARDS      */
/* ======================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-item {
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 8px;
}

.why-text p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Colorful Backgrounds and Icon Colors for Why Items */
.why-grid .why-item:nth-child(5n+1) {
  background-color: #ffc2db;
  color: #c2185b;
}

.why-grid .why-item:nth-child(5n+2) {
  background-color: #b5ebd0;
  color: #00796b;
}

.why-grid .why-item:nth-child(5n+3) {
  background-color: #ffe199;
  color: #f57f17;
}

.why-grid .why-item:nth-child(5n+4) {
  background-color: #d8c2ff;
  color: #512da8;
}

.why-grid .why-item:nth-child(5n+5) {
  background-color: #ffcba3;
  color: #d84315;
}

.mission-box p,
.vision-box p {
  text-align: justify;
}

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

/* -- Contact Info Cards Grid -- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(202, 162, 74, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74, 32, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--deep-brown);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.contact-info-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #4A205A;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-info-link:hover {
  opacity: 0.7;
}

/* -- Contact Form + Sidebar Grid -- */
.contact-section-main {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.3) 0%, rgba(252, 249, 242, 0) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: rgba(255, 253, 247, 0.95);
  border: 1px solid rgba(202, 162, 74, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.contact-form-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--deep-brown);
  margin-bottom: 6px;
}

.contact-form-header p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-form-styled .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-styled .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.contact-form-styled .form-row .form-group {
  margin-bottom: 0;
}

.contact-form-styled label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.contact-form-styled input,
.contact-form-styled select,
.contact-form-styled textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(202, 162, 74, 0.3);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--deep-brown);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-form-styled input::placeholder,
.contact-form-styled textarea::placeholder {
  color: #bbb;
}

.contact-form-styled input:focus,
.contact-form-styled select:focus,
.contact-form-styled textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(202, 162, 74, 0.12);
}

.contact-form-styled textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 32, 90, 0.15);
}

/* -- Contact Sidebar -- */
.contact-sidebar-card {
  background: rgba(255, 253, 247, 0.95);
  border: 1px solid rgba(202, 162, 74, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.contact-sidebar-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--deep-brown);
  margin-bottom: 10px;
}

.contact-sidebar-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

.contact-sidebar-divider {
  height: 1px;
  background: rgba(202, 162, 74, 0.2);
  margin: 20px 0;
}

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

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--deep-brown);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.contact-hours li span:last-child {
  font-weight: 600;
  color: var(--gold);
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.contact-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* -- Map Section -- */
.contact-map-section {
  background: rgba(255, 249, 235, 0.3);
  padding-bottom: 0;
}

.contact-map-wrap {
  margin-top: 30px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  max-width: 1200px;
  margin-inline: auto;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(80%) sepia(40%) hue-rotate(340deg) contrast(95%);
  transition: filter 0.5s ease;
}

.contact-map-wrap iframe:hover {
  filter: grayscale(0%) sepia(0%) hue-rotate(0deg) contrast(100%);
}

.contact-map-section .section-heading h2::after {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold), var(--pink), transparent);
}

/* -- Contact Page Responsive -- */
@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-styled .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-styled .form-group {
    margin-bottom: 16px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .contact-sidebar-card {
    padding: 24px;
  }
}

/* Base Layout Setup */
.bs-hero-section {
    position: relative;
    width: 100%;
    height: 85vh; 
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.bs-hero-section *, .bs-hero-section *::before, .bs-hero-section *::after {
    box-sizing: border-box;
}

/* Background Video Sizing */
.bs-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bs-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-desktop-only { display: block; }
.bs-mobile-only { display: none; }

/* Dark Vignette Overlay: Ensures high contrast for the text labels */
.bs-video-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* Content Container wrapper */
.bs-content-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 850px;
    width: 100%;
}

/* ==========================================================================
   LOGO TYPOGRAPHY STYLING WITH METALLIC GOLD GRADIENTS
   ========================================================================== */
.bs-logo-text-group {
    margin-bottom: 35px;
    /* Deepened the drop shadow slightly to separate the text from the dark background */
    filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.7)); 
}
.bs-main-title {
    font-family: 'Trajan Pro', 'Cinzel', serif;
    font-size: 4.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;

    /* A warm, soft blush-pink to pale-gold gradient */
    background: linear-gradient(to right, #F3C6D3, #E8D3B9);
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

/* The 'ONE' Gradient Setup */
.bs-gradient-one {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(135deg, #dfba6b 0%, #b88734 50%, #916315 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* The 'By Siaa Ketan' Subtitle Gradient Setup */
.bs-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    margin: 12px 0 0 0;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #dfba6b 0%, #b88734 50%, #916315 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Gold Underline Graphic matching the logo style perfectly */
.bs-title-line-deco {
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dfba6b 30%, #b88734 50%, #dfba6b 70%, transparent 100%);
    margin: 8px auto 0 auto;
    position: relative;
}

/* Subtle accent point mimicking the center emblem baseline */
.bs-title-line-deco::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #b88734;
    border-radius: 50%;
}

/* ==========================================================================
   PILLARS, TAGLINE & BUTTON CONFIGURATIONS
   ========================================================================== */
.bs-pillars-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffb5a7; /* Pinkish tone matching flowers from logo */
    margin-bottom: 25px;
}

.bs-pillars-list i {
    margin-right: 6px;
    color: #e5989b;
}

.bs-pillar-dot {
    color: rgba(255, 255, 255, 0.5);
}

.bs-pillar-tag, .bs-hero-desc {
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.bs-hero-desc {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: #f8f9fa;
    margin: 0 auto 40px auto;
    max-width: 720px;
}

/* Action button configurations */
.bs-action-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bs-btn-luxury {
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bs-btn-pink {
    background: #db7a80; /* Premium solid rose-pink */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.bs-btn-pink:hover {
    background: #c2646a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.bs-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.bs-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

/* ==========================================================================
   MOBILE BREAKPOINT LAYOUT RESPONSIVENESS
   ========================================================================== */
@media (max-width: 767px) {
    .bs-hero-section {
        height: 90vh; 
        min-height: 600px;
    }

    .bs-desktop-only { display: none; }
    .bs-mobile-only { display: block; }

    .bs-main-title {
        font-size: 2.8rem;
    }

    .bs-sub-title {
        font-size: 1.4rem;
    }

    .bs-title-line-deco {
        width: 160px;
    }

    .bs-pillars-list {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .bs-pillar-dot { display: none; }

    .bs-hero-desc {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .bs-action-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .bs-btn-luxury {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    }
}
/* ==========================================================================
   PREMIUM HOLISTIC PROFILE DESIGN SHEET (Symmetrical & Justified)
   ========================================================================== */
.tm-profile-section {
    width: 100%;
    padding: 120px 0 0 0;
    background-color: #fbf9f4; /* Calm light cream canvas */
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Enforcing absolute font family unity across all child selectors natively */
.tm-profile-section *, 
.tm-profile-section *::before, 
.tm-profile-section *::after {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.2px;
}

.tm-profile-container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    gap: 70px;
    align-items: flex-start;
    padding: 0 40px;
    margin-bottom: 90px;
}

/* ==========================================================================
   LEFT COLUMN PROFILE PROPERTIES
   ========================================================================== */
.tm-left-column {
    flex: 1;
    max-width: 400px; 
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tm-image-frame {
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: 1px solid rgba(184, 135, 52, 0.2); 
    box-shadow: 0 10px 30px rgba(67, 28, 93, 0.01);
}

.tm-profile-img {
    width: 100%;
    height: 480px; 
    object-fit: cover;
    display: block;
}

.tm-left-facts-wrap {
    width: 100%;
}

.tm-facts-heading {
    font-size: 1.45rem;
    font-style: italic;
    color: #431c5d; /* Core Luxury Purple */
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* Symmetric Left Text Card matching Right Point Rows exactly */
.tm-narrative-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(184, 135, 52, 0.08);
    box-shadow: 0 4px 15px rgba(67, 28, 93, 0.01);
}

.bs-healing-verse {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #555555;
    margin: 0;
    text-align: justify;
    text-justify: inter-word; /* Flawless whitespace tracking */
}

.tm-secondary-graphic-frame {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border: 1px solid rgba(184, 135, 52, 0.15);
    border-radius: 4px;
}

.tm-secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   RIGHT COLUMN COMPONENT PROPERTIES
   ========================================================================== */
.tm-right-column {
    flex: 1.6;
}

.tm-bio-title {
    font-size: 2.6rem;
    color: #431c5d; 
    margin: 0 0 30px 0;
    font-weight: 600;
}

.tm-bio-narrative p {
    font-size: 0.95rem; 
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
}

.tm-bio-intro {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: #431c5d !important;
    margin-bottom: 35px !important;
    text-align: justify;
    text-justify: inter-word;
}

.tm-bach-desc-para {
    margin-top: 45px !important;
    border-top: 1px dashed rgba(184, 135, 52, 0.25);
    padding-top: 35px;
}

/* ==========================================================================
   CENTERED LOTUS SEPARATORS (Ref: image_d43435.png)
   ========================================================================== */
.tm-services-group-wrap {
    margin: 50px 0;
    width: 100%;
}

.tm-lotus-divider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    width: 100%;
}

.tm-services-list-title {
    font-size: 1.3rem;
    color: #431c5d; 
    font-weight: 600;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.tm-lotus-line-left, 
.tm-lotus-line-right {
    height: 12px;
    flex: 1;
    position: relative;
    opacity: 0.8;
}

.tm-lotus-line-left {
    background: radial-gradient(ellipse at bottom right, transparent 60%, #b88734 62%, #b88734 65%, transparent 68%),
                linear-gradient(to right, transparent, #b88734);
    background-size: 20px 12px, 100% 1px;
    background-position: right center, center center;
    background-repeat: no-repeat;
}

.tm-lotus-line-right {
    background: radial-gradient(ellipse at bottom left, transparent 60%, #b88734 62%, #b88734 65%, transparent 68%),
                linear-gradient(to left, transparent, #b88734);
    background-size: 20px 12px, 100% 1px;
    background-position: left center, center center;
    background-repeat: no-repeat;
}

.tm-lotus-divider-row::after {
    content: '🪷';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #b88734; 
    opacity: 0.5;
}

/* ==========================================================================
   SYMMETRICAL FLOATING CARD ROWS
   ========================================================================== */
/* ==========================================================================
   SYMMETRICAL FIXED GRID FOR SOUND HEALING SERVICES
   ========================================================================== */
.tm-structured-points-grid {
    display: grid;
    /* Forces exactly 2 perfectly equal, symmetrical columns side-by-side */
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px 20px; /* Perfectly equal horizontal and vertical grid spacing gap */
    width: 100%;
    margin-top: 30px;
    padding: 0;
}

/* Individual Symmetrical Badges */
.tm-point-badge-item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns contents starting perfectly from the left border */
    gap: 14px;
    background: #ffffff;
    padding: 12px 24px;   /* Deep professional luxury padding spacing */
    border-radius: 50px;  /* Pill style appearance match */
    border: 1px solid rgba(184, 135, 52, 0.08);
    box-shadow: 0 4px 15px rgba(67, 28, 93, 0.01);
    width: 100%;          /* Makes sure every item grows to exactly match column scale */
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tm-point-badge-item:hover {
    transform: translateX(4px); /* Clean, structured alignment nudge tracking forward */
    border-color: rgba(219, 122, 128, 0.25); /* Subtle pink theme color sync on focus */
    box-shadow: 0 6px 20px rgba(67, 28, 93, 0.03);
}

/* Typography elements alignment inside the loop */
.tm-point-badge-item .tm-point-bullet {
    font-size: 0.9rem;
    line-height: 1;
    flex-shrink: 0; /* Prevents the flower icon from compressing on narrower tabs */
}

.tm-point-badge-item .tm-point-txt {
    font-size: 0.88rem;   /* Perfectly crisp readable font scale mapping */
    font-weight: 600;
    color: #431c5d;       /* Brand Theme Purple */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;  /* Prevents texts from splitting un-aesthetically onto a second line */
    overflow: visible;
    text-overflow: unset;
}

/* ==========================================================================
   MOBILE DEVICE RESPONSIVENESS (Flawless Vertical Stack)
   ========================================================================== */
@media (max-width: 767px) {
    .tm-structured-points-grid {
        /* On small phone viewports, automatically drop down into a single beautiful full-width block */
        grid-template-columns: 1fr; 
        gap: 12px;
    }
    
    .tm-point-badge-item {
        padding: 10px 18px;
    }
    
    .tm-point-badge-item .tm-point-txt {
        font-size: 0.82rem;
    }
}
@media (max-width: 767px){

    .tm-bio-title{
        font-size: 2rem;
        line-height: 1.2;
        word-break: normal;
    }

}
@media (max-width: 767px){

    .tm-point-badge-item{
        padding: 12px 15px;
    }

    .tm-point-txt{
        font-size: 0.8rem;
        line-height: 1.4;
    }

}
/* ==========================================================================
   COUNTER COMPONENT DATA STRIP
   ========================================================================== */
.tm-counter-bar {
    width: 100%;
    background-color: #f2ebe1; 
    border-top: 1px solid rgba(184, 135, 52, 0.15);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.tm-counter-container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tm-counter-item {
    text-align: center;
    flex: 1;
}

.tm-counter-number {
    font-size: 2.4rem;
    font-weight: 600;
    color: #431c5d; 
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.tm-counter-label {
    font-size: 0.82rem;
    text-transform: lowercase;
    color: #666666;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .tm-profile-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 24px;
    }
    .tm-left-column {
        max-width: 100%;
        width: 100%;
    }
    .tm-profile-img {
        height: 420px;
    }
    .tm-counter-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 767px) {
    .tm-profile-section {
        padding: 70px 0 0 0;
    }
    .tm-bio-title {
        font-size: 2.2rem;
    }
    .tm-services-list-title {
        font-size: 1.15rem;
        white-space: normal;
    }
    .tm-lotus-line-left, 
    .tm-lotus-line-right,
    .tm-lotus-divider-row::after {
        display: none; 
    }
    .tm-bio-narrative p, .bs-healing-verse, .tm-bio-intro {
        text-align: justify;
    }
}

@media (max-width: 600px) {
    .tm-counter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ==========================================================================
     FLAWLESSLY ALIGNED LOTUS TITLE DIVIDER SYSTEM
   ========================================================================== */
.tm-lotus-divider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.tm-services-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #431c5d; /* Luxury Theme Purple */
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Scalable Symmetrical SVG Vine Tracks */
.tm-lotus-wing {
    display: flex;
    align-items: center;
    flex: 1;
    height: 12px;
    min-width: 60px;
    max-width: 180px; /* Prevents lines from becoming overly long on wide desktops */
}

.tm-lotus-wing svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Beautiful Centered Bottom Accent Base Icon */
.tm-lotus-divider-row::after {
    content: "🌸"; /* Replaced the un-rendered code block with a clean floral anchor */
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0.65;
}

/* Clean up old unused background generation rules */
.tm-lotus-line-left, 
.tm-lotus-line-right {
    display: none !important;
}

/* ==========================================================================
   MOBILE SENSITIVITY FIX
   ========================================================================== */
@media (max-width: 767px) {
    .tm-services-list-title {
        font-size: 1.15rem;
        white-space: normal; /* Allows clean natural wrapping on narrow device windows */
    }

    .tm-lotus-wing,
    .tm-lotus-divider-row::after {
        display: none !important; /* Hides vector wings on mobile to maximize viewport symmetry */
    }
}
.servicesSwiper {
    padding: 20px 5px 60px;
}

.servicesSwiper .swiper-slide {
    height: auto;
}

.servicesSwiper .svc-card {
    height: 100%;
}

.servicesSwiper .swiper-pagination {
    margin-top: 20px;
}

.servicesSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.servicesSwiper .swiper-pagination-bullet-active {
    background: #7d4a9f;
}
.servicesSwiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
}
.btn-readmore {
    text-decoration: none !important;
}
.footer-socials {
    display: flex;
    gap: 15px; /* Adds space between the icons */
    margin-top: 57px; /* Pushes the icons down slightly from the logo */
    align-items: center;
}

/* Center the icons and give them a white circular background */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px; /* Width of the white circle */
    height: 42px; /* Height of the white circle */
    background-color: #FFFFFF; /* Solid white background */
    border-radius: 50%; /* Makes the background a perfect circle */
    color: #db7a80; /* The soft pink color for the icon itself */
    text-decoration: none;
    
    /* Adds a very soft, elegant shadow so they pop off the background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
    
    /* Smooth transition for all hover changes */
    transition: all 0.3s ease;
}

/* Ensure the SVG fits nicely inside the circle */
.social-icon svg {
    width: 20px;
    height: 20px;
}

/* The Hover Effect */
.social-icon:hover {
    background-color: #3c1f41; /* Background changes to deep plum */
    color: #FFFFFF; /* Icon turns white */
    transform: translateY(-5px); /* Gentle float upward */
    box-shadow: 0 8px 15px rgba(60, 31, 65, 0.25); /* Shadow deepens slightly */
}
/* Container to fix the button to the bottom left */
.whatsapp-floating {
    position: fixed;
    bottom: 30px; /* Distance from the bottom of the screen */
    left: 30px;   /* Distance from the left of the screen */
    z-index: 9999; /* Ensures it stays on top of all other content */
    transition: transform 0.3s ease; /* Smooth hover transition */
}

/* Hover effect for interactivity */
.whatsapp-floating:hover {
    transform: scale(1.1); /* Gentle pop effect when hovered */
}

/* Styling the GIF image */
.whatsapp-img {
    width: 60px; /* Perfect size for a floating icon */
    height: auto;
    border-radius: 50%; /* Smooths the edges */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow so it floats off the page */
    display: block;
}

/* Adjustments for smaller mobile screens */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-img {
        width: 50px; /* Slightly smaller on mobile to save screen space */
    }
}
/* The Main Background */
.tm-counter-bar {
    /* Your requested Rose Gold Sunlight gradient */
    background: linear-gradient(135deg, #F3C6D3 0%, #EFCDCB 60%, #E8D3B9 100%);
    padding: 80px 20px;
    position: relative;
}

/* Container to align everything neatly */
.tm-counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* Space between the petals */
    max-width: 1200px;
    margin: 0 auto;
}

/* The "Petal" Shape for each item */
.tm-counter-item {
    background: rgba(255, 255, 255, 0.35); /* Soft, frosted glass look */
    border: 1px solid rgba(255, 255, 255, 0.6); /* Delicate glowing edge */
    
    /* This creates a beautiful organic, leaf/petal shape! */
    border-radius: 50px 10px 50px 10px; 
    
    padding: 35px 20px;
    text-align: center;
    width: 190px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    
    /* Flex setup to align the number and text perfectly */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hover effect to make it feel alive */
.tm-counter-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 30px rgba(60, 31, 65, 0.1); /* Subtle plum shadow */
}

/* The Numbers */
.tm-counter-number {
    font-family: 'Cinzel', 'Trajan Pro', serif; /* Matching your elegant headings */
    font-size: 3.2rem;
    font-weight: 600;
    color: #3c1f41; /* Deep Plum color */
    line-height: 1;
    margin-bottom: 12px;
}

/* The Labels */
.tm-counter-label {
    font-family: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4f312d; /* Earthy organic tone */
    font-weight: 600;
    line-height: 1.4;
}

/* Add a delicate decorative dot between the number and text */
.tm-counter-number::after {
    content: "•";
    display: block;
    font-size: 1.5rem;
    color: #db7a80; /* Soft pink */
    margin-top: 5px;
}

/* Responsive adjustment for mobile phones */
@media (max-width: 768px) {
    .tm-counter-container {
        gap: 20px;
    }
    .tm-counter-item {
        width: 150px;
        padding: 25px 15px;
    }
    .tm-counter-number {
        font-size: 2.5rem;
    }
}
/* --- Base Grid (Mobile First: Strictly 1 Column) --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr; /* Forces exactly one column on mobile */
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

/* Base Card Styling */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  width: 100%; /* Keeps the card perfectly inside the grid track */
  border-radius: 12px; /* Assuming you want rounded corners based on the image */
}

.why-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
}

.why-text p {
  margin: 0;
  line-height: 1.5;
}

/* --- Tablet & Desktop Adjustments (768px and up) --- */
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* Switches strictly to 2 columns */
    gap: 30px;
  }

  /* Aligns icon and text horizontally for the first 4 items */
  .why-item:not([style*="grid-column"]) {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .why-item:not([style*="grid-column"]) .why-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
}