/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/
/*** Product Start ***/
.productgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.productwrap {
  padding: 2.5rem 0;
  font-family: var(--font-sans);
}
.productcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.84, 0.44, 1),
    transform 0.65s cubic-bezier(0.22, 0.84, 0.44, 1);
}

.productcard.in {
  opacity: 1;
  transform: translateY(0);
}

.productcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.84, 0.44, 1);
}

.productcard:hover img {
  transform: scale(1.05);
}

.productslide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: rgba(10, 8, 6, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  text-align: center;
  gap: 11px; /* space between name & price */
}

.productcard:hover .productslide {
  transform: translateY(0);
}

.productslide-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.productslide-price {
  font-size: 23px;
  font-weight: 500;
  color: #c9922a;
  white-space: nowrap;
  text-align: center;
}

.productcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9922a;
  background: rgba(10, 8, 6, 0.6);
  backdrop-filter: blur(6px);
  border: 0.5px solid rgba(201, 146, 42, 0.35);
  border-radius: 4px;
  padding: 4px 9px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.productcard:hover .productcard-badge {
  opacity: 1;
  transform: translateY(0);
}

.share-icon {
  position: absolute;
  top: 20%;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-50%) translateX(20px);
}

.share-icon .btn {
  background: rgba(10, 8, 6, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: all 0.3s ease;
}

.share-icon .btn:hover {
  background: #c9922a;
  color: #000;
}

.productcard:hover .share-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/*** Product End ***/

/*** Health Start ***/

.services {
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.gold-divider {
  width: 51px;
  height: 1px;
  background: linear-gradient(to right, #8b6914, #f5d47a, #8b6914);
  margin: 0 auto 18px;
}

.services-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-grid .card:last-child {
  grid-column: 2 / 4; /* spans columns 2 and 3 — centred */
  justify-self: center;
  width: 50%; /* shrinks it back to match other card sizes */
}
.card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.84, 0.44, 1),
    transform 0.65s cubic-bezier(0.22, 0.84, 0.44, 1), border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 12px 40px rgba(201, 146, 42, 0.1);
}

.card-video {
  position: relative;
  width: 100%;
  aspect-ratio: 11 / 10;
  background: #111;
  overflow: hidden;
}

.card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.card:hover .card-video::after {
  width: 100%;
}

.placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
}

.play-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 146, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-ring svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  margin-left: 3px;
}

.placeholder span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
  .services {
    padding: 60px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/*** Health End ***/

/*** Gallery ****/
.gh-section {
  padding: 5rem 1rem;
  font-family: "Jost", sans-serif;
}

.gh-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gh-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8892a;
  border: 0.5px solid #b8892a55;
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 1.2rem;
}

.golden-word em {
  color: #b8892a;
}

.gh-sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 451px;
  margin: -6px auto;
  line-height: 1.7;
}

.gh-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.gh-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #f5e9d020;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gh-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gh-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gh-card:hover .gh-card-img {
  transform: scale(1.04);
}

.gh-card:hover video {
  transform: scale(1.18);
}
.gh-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 18, 5, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gh-card:hover .gh-card-overlay {
  opacity: 1;
}

.gh-card.c1 {
  grid-column: 1 / 6;
  grid-row: 1;
  height: 320px;
}

.gh-card.c2 {
  grid-column: 6 / 9;
  grid-row: 1;
  height: 320px;
}

.gh-card.c3 {
  grid-column: 9 / 13;
  grid-row: 1;
  height: 320px;
}

.gh-card.c4 {
  grid-column: 1 / 4;
  grid-row: 2;
  height: 320px;
}

.gh-card.c5 {
  grid-column: 4 / 9;
  grid-row: 2;
  height: 360px;
}

.gh-card.c6 {
  grid-column: 9 / 13;
  grid-row: 2;
  height: 420px;
}

.gh-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #b8892a88;
  font-style: italic;
}

@media (max-width: 600px) {
  .gh-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gh-card.c1,
  .gh-card.c2,
  .gh-card.c3,
  .gh-card.c4,
  .gh-card.c5,
  .gh-card.c6 {
    grid-column: auto;
    grid-row: auto;
    height: 180px;
  }

  .gh-card.c1 {
    grid-column: 1 / 3;
    height: 220px;
  }
}
/*** Gallery End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h3,
.h1,
.h3 {
  font-weight: 400 !important;
  font-family: "Playball", cursive !important;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600 !important;
  font-family: "Open Sans", sans-serif !important;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wow,
.animated {
  animation-duration: 2s !important;
}

/*** Button Start ***/
.btn.btn-primary {
  border: 0;
}

.btn.btn-primary:hover {
  background: var(--bs-dark) !important;
  color: var(--bs-primary) !important;
}

.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 38px;
  height: 38px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
/*** Button End ***/

/*** Youtube Video start ***/
.video {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(
      rgba(254, 218, 154, 0.1),
      rgba(254, 218, 154, 0.1)
    ),
    url(../img/fact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-white);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/

/* COLOR BLOCKS */
.color-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 80px;
}
.color-blocks div:nth-child(1) {
  background: #d9a9a9;
}
.color-blocks div:nth-child(2) {
  background: #9fb6c9;
}
.color-blocks div:nth-child(3) {
  background: #b48fa8;
}
.color-blocks div:nth-child(4) {
  background: #8fa79d;
  border-top: 1px solid #e0e0e0;
}

.video-scroll-section {
  width: 100vw; /* ← full viewport width */
  max-width: 100vw; /* ← override the 1200px cap */
  background: transparent;
  padding: 72px 0;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  --card-w: 260px;
  --card-h: 340px;
  --gap: 34px;
  --speed: 70s;
  --accent: #e8ff47;
  margin-left: calc(-50vw + 50%);
}

.video-scroll-section::before,
.video-scroll-section::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 90px; /* was 160px → too much */
  z-index: 20;
  pointer-events: none;
}

/* LEFT FADE */
.video-scroll-section::before {
  left: 0;
  background: linear-gradient(
    to right,
    #f8f9fa 0%,
    rgba(240, 237, 230, 0.9) 40%,
    rgba(240, 237, 230, 0) 100%
  );
}

/* RIGHT FADE */
.video-scroll-section::after {
  right: 0;
  background: linear-gradient(
    to left,
    #f8f9fa 0%,
    rgba(240, 237, 230, 0.9) 40%,
    rgba(240, 237, 230, 0) 100%
  );
}

.tracks-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scroll-track {
  overflow: hidden;
  padding: 10px 0;
}

.scroll-row {
  display: flex;
  gap: var(--gap);
  width: max-content;
}

.row-right {
  animation: toRight var(--speed) linear infinite;
}

.row-left {
  animation: toLeft var(--speed) linear infinite;
}

.scroll-row:hover {
  animation-play-state: paused;
}

@keyframes toRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes toLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.vid-card {
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vid-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vid-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.25s;
}

.vid-card.playing .overlay {
  opacity: 0;
}

.vid-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Glass + depth */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);

  /* Premium shadow stack */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);

  z-index: 2;
  opacity: 1;

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease, box-shadow 0.3s ease, opacity 0.25s;
}

.vid-card.playing .play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
}

.vid-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);

  background: rgba(255, 255, 255, 0.14);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), 0 0 12px rgba(232, 255, 71, 0.25),
    /* subtle glow */ inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vid-card .placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .video-scroll-section {
    --card-w: 150px;
    --card-h: 200px;
    --gap: 12px;
  }
}

/*** testimonial Start ***/
.testimonials-wrap {
  padding: 3rem 0;
  font-family: var(--font-sans);
  color: var(--color-text-primary);
}

.testimonialssection-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 0.5px solid var(--color-border-secondary);
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 1rem;
}

.testimonialssection-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0 0 2.5rem;
}

.testimonialstrack-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonialstrack {
  display: flex;
  gap: 24px;
  animation: slide 28s linear infinite;
  width: max-content;
}

.testimonialstrack.rev {
  animation: slide-rev 32s linear infinite;
}

.testimonialstrack-wrap:hover .testimonialstrack {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-rev {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.testimonialscard {
  background: #faf8f2;
  border: 0.5px solid #e8e4d8;
  border-radius: 16px;
  padding: 2rem;
  width: 420px;
  flex-shrink: 0;
  transition: border-color 0.2s;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.testimonialscard:hover {
  border-color: #cec9b8;
}

.testimonialscard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.testimonialsavatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #e8e4d8;
  border: 1.5px dashed #cec9b8;
}

.testimonialsavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.testimonialsname {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0;
}

.testimonialsstars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.testimonialsstar {
  color: #ef9f27;
  font-size: 12px;
}

.testimonialsquote-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.testimonialsquote-mark {
  font-size: 24px;
  color: #cec9b8;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonialsgradient-wrap {
  position: relative;
  margin-bottom: 16px;
}

.testimonialsgradient-wrap::before,
.testimonialsgradient-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.testimonialsgradient-wrap::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--color-background-tertiary, #fff),
    transparent
  );
}

.testimonialsgradient-wrap::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--color-background-tertiary, #fff),
    transparent
  );
}
/*** testimonial End ***/

/*** Contact start ***/
.contact-form {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

/*** Contact End ***/

/*** Footer Start ***/
/* ── Bounce-up keyframe ── */
@keyframes bounceUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* All animatable elements start hidden */
.anim {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* Class added by JS when element should animate */
.anim.visible {
  animation: bounceUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Footer shell ── */
footer {
  background-color: #12121f;
  color: #ccc;
  padding: 60px 80px 0;
  font-family: 'Montserrat', sans-serif;

}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.2rem; /* ⬆ was 1.05rem */
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, #6c63ff, #4e46c7);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 1rem; /* ⬆ was 0.88rem */
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Contact Info */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #1e3a5f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #4a90d9;
  font-size: 1rem;
}

.contact-text p.label {
  font-size: 0.85rem; /* ⬆ was 0.7rem */
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-text p.value {
  font-size: 1rem; /* ⬆ was 0.85rem */
  color: #ccc;
  line-height: 1.5;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid #2a2a3e;
  margin: 0 -80px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.footer-bottom-left {
  display: flex;
  flex-direction: row;        
  align-items: center;        
  justify-content: space-between; 
  width: 97%;               
  gap: 10px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-bottom p {
  font-size: 0.95rem; /* ⬆ was 0.8rem */
  color: #777;
}

.footer-bottom p a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom p .heart {
  color: #e74c3c;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: #1e1e30;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {
  background: #6c63ff;
  color: #fff;
}

/*** Footer End ***/