@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --header-height: 72px;
  --feature-cycle: 3.6s;
  --primary-col: #2d3e33;
  --secondary-col: #d1d1d1;
  --teritary-col: #b58e58;

  --font-headline: "Montserrat", serif;
  --font-body: "Montserrat", serif;
  --font-ui: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--primary-col);
  color: var(--secondary-col);
  font-family: var(--font-body);
  background-image:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.11) 1px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 2px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 10px
    );
  background-size:
    14px 14px,
    100% 100%,
    10px 10px;
  background-blend-mode: overlay, normal, overlay;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font: sa;
}

.hero-card__title,
h1,
h2,
h3 {
  font-family: var(--font-headline);
  font-weight: 700;
}

header,
button,
.nav__links li a {
  font-family: var(--font-ui);
}

.site-container {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 10000;
  width: 100%;
  color: var(--primary-col);
  justify-content: flex-start;
  align-items: center;
  padding: 0 6%;
  background: var(--secondary-col);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#fixed-header-nav {
  margin: 0 auto; /* pushes the menu to the center */
}

li a button {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  list-style: 0;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  cursor: pointer;
  width: 50x;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.channel-partner-text {
  font-size: x-small;
  left: -10px;
  line-height: 1;
  margin-left: 2px;
  letter-spacing: 0.3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li {
  display: inline-block;
}

.nav__links li a {
  display: inline-block;
  transition:
    0.15s ease,
    transform 0.12s ease;
  text-decoration: none;
  color: inherit;
  font-size: 19px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav__links li a:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-col);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: var(--teritary-col);
}

.header-phone:hover {
  transform: translateY(-1px);
}

.hero-card {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: min(30%, 400px);
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  z-index: 20;
  margin-top: 30px;

  /* glass / translucent look */
  background: linear-gradient(180deg, rgba(45, 62, 51, 0.693));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.hero-card,
.hero-card * {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Left column content */
.hero-card__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* Typography */
.hero-card__tag {
  font-size: 13px;
  background: linear-gradient(90deg, var(--teritary-col));
  color: var(--primary-col);
  margin-bottom: 6px;
  margin-top: 6px;
  padding: 8px;
  width: 60%;
  text-align: center;
  border-radius: 8px;
}

/* list */
.hero-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.hero-card__list li {
  margin: 6px 0;
}

/* features inline */
.hero-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 13px;
}

@keyframes rp-blink {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.15;
    transform: translateY(-2px);
  }
}

.hero-card__features span {
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 10px 10px;
  text-align: center;
  font-size: medium;
  border-radius: 8px;
  animation: rp-blink 1.6s ease-in-out infinite;
}

.hero-card__features span:nth-child(1) {
  animation-delay: 0s;
}

.hero-card__features span:nth-child(2) {
  animation-delay: 0.13s;
}

.hero-card__features span:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-card__features span:nth-child(4) {
  animation-delay: 0.39s;
}

/* note */
.hero-card__note {
  margin-top: 12px;
  font-size: small;
}

/* Right column (price) */
.hero-card__right {
  width: 100%;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* price block */
.hero-card__price-label {
  font-size: 13px;
}

.hero-card__price {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--teritary-col));
  color: var(--primary-col);
  padding: 8px 10px;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 6px 14px rgba(100, 46, 17, 0.18);
}

.enquire-btn-con {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.enquire-btn {
  --gold: #b58e58;
  --silver: #d1d1d1;
  --radius: 9999px;

  width: 170px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  color: var(--primary-col);

  background: linear-gradient(120deg, var(--gold), var(--silver), var(--gold));
  background-size: 200% 200%;

  animation: subtleShift 3s ease-in-out infinite;

  transition: transform 0.3s ease;
}

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

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

.enquire-btn:active {
  transform: translateY(0);
}

#section-1 {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

#main-image-con {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#main-image-con img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.whatsapp-fab {
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.whatsapp-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #06b257, #059e4a);
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.whatsapp-fab__link:hover,
.whatsapp-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.whatsapp-fab__link:hover .whatsapp-tooltip,
.whatsapp-fab__link:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* ---------- CALL FAB & TOOLTIP (final) ---------- */
.call-fab {
  margin-bottom: 60px;
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.call-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.call-fab__link:hover,
.call-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.call-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #0b69ff;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.call-fab__link:hover .call-tooltip,
.call-fab__link:focus .call-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.call-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* Small icon container inside lead area */
.lead-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center; /* center icons horizontally */
  padding: 0;
}

/* shared style for both circular buttons */
.lead-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: none;
  transition: none !important;
}

@media (max-width: 1200px) {
  header {
    padding: 0 4%;
  }
  .hero-card {
    display: none;
  }
  .channel-partner-text {
    font-size: xx-small;
  }
}

@media (max-width: 900px) {
  header {
    padding: 0 6%;
    --header-height: 64px;
  }

  .channel-partner-text {
    font-size: 6px;
  }
  .nav__links li a {
    padding: 4px 6px;
    font-size: 8px;
  }

  #fixed-header-nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  #contact-us {
    font-weight: 100;
    font-size: xx-small;
  }

  .hero-card {
    display: none;
  }

  #fixed-header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    /* or auto if you want tight fit */
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .header-phone {
    display: flex;
    align-items: center;
    font-size: x-small;
    text-align: justify;
    padding: 5px;
  }

  #section-1 {
    height: 30vh;
    width: auto;
  }

  #main-image-con img {
    object-fit: fill;
  }
}
/* reduce size on small screens */
@media (max-width: 520px) {
  header {
    padding: 0 8px;
  }

  .logo {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .channel-partner-text {
    font-size: 6px;
    text-align: center;
  }
  .nav__links {
    gap: 6px;
  }

  .whatsapp-fab__link {
    width: 44px;
    height: 44px;
  }
  .whatsapp-tooltip {
    right: 62px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-card {
    display: none;
  }
}

@media (max-width: 375px) {
  header {
    padding: 0 12px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .channel-partner-text {
    font-size: 6px;
  }
  .nav__links {
    gap: 6px;
  }

  .whatsapp-fab__link {
    width: 44px;
    height: 44px;
  }
  .whatsapp-tooltip {
    right: 62px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-card {
    display: none;
  }
}
