@import url("https://fonts.googleapis.com/css2?family=Grey+Qo&family=Hurricane&display=swap");
/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fefcf7;
  color: #1e2a2a;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --royal-green: #0a3a2e;
  --royal-green-dark: #05281f;
  --royal-green-light: #136207;
  --royal-gold: #c5a267;
  --royal-gold-light: #f5bd02;
  --royal-gold-dark: #a8884a;
  --border-light: rgba(197, 162, 103, 0.35);
}

h1,
h2,
h3,
h4,
.serif-heading {
  font-family: "Italiana", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a3a2e 0%, #05281f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.preloader-brand {
  font-family: "Italiana", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInText 0.6s ease forwards 0.3s;

  background: linear-gradient(135deg, #d4af37 0%, #b8860b 25%, #ffd700 50%, #daa520 75%, #c5a267 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.preloader-logo {
  margin-bottom: 2rem;
  position: relative;
}

.preloader-image {
  width: 110px;
  height: 110px;
  max-width: 30vw;
  max-height: 30vw;
  object-fit: contain;

  animation:
    pulseGlow 1.5s ease-in-out infinite,
    rotateDiamond 2s ease-in-out infinite;

  margin: 0 auto;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .preloader-content {
    padding: 0 15px;
  }

  .preloader-brand {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
  }

  .preloader-logo {
    margin-bottom: 1.2rem;
  }

  .preloader-image {
    width: 85px;
    height: 85px;
    max-width: 25vw;
    max-height: 25vw;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .preloader-content {
    padding: 0 10px;
  }

  .preloader-brand {
    font-size: 1.3rem;
    letter-spacing: 2.5px;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .preloader-logo {
    margin-bottom: 1rem;
  }

  .preloader-image {
    width: 70px;
    height: 70px;
    max-width: 22vw;
    max-height: 22vw;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .preloader-brand {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }

  .preloader-image {
    width: 60px;
    height: 60px;
  }

  .preloader-logo {
    margin-bottom: 0.8rem;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(197, 162, 103, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(197, 162, 103, 0.8);
  }
}

@keyframes rotateDiamond {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--royal-gold);
  border-radius: 50%;
  animation: bounceDot 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounceDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

.preloader-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), var(--royal-gold-light), var(--royal-gold), transparent);
  margin: 1.2rem auto 0;
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    width: 40px;
    opacity: 0.3;
  }
  50% {
    width: 120px;
    opacity: 1;
  }
  100% {
    width: 40px;
    opacity: 0.3;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

/* ---------- STICKY HEADER ---------- */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: var(--royal-green);
  width: 100%;
}

.header-brand-top {
  text-align: center;
  padding: 0.1rem 0;
}

.brand-name-top {
  font-family: "Italiana", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 25%, #ffd700 50%, #daa520 75%, #c5a267 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.brand-name-top:hover {
  color: var(--royal-gold);
  text-decoration: none;
}

/* Mobile */
@media (max-width: 767px) {
  .brand-name-top {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .brand-name-top {
    font-size: 1.7rem;
    letter-spacing: 2.5px;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .brand-name-top {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}
.header-logo-section {
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: -10px auto;
}

.logo-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--royal-green);
  padding: 5px;
}

.royal-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.2s;
  margin-top: -0.7rem;
}

.royal-logo-img:hover {
  transform: scale(1.08);
}

.header-divider {
  margin-top: -2.2rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), var(--royal-gold-light), var(--royal-gold), transparent);
}

.nav-below {
  margin-top: 15px;
  /* margin-bottom: -10px; */
  background-color: var(--royal-green);
  padding: 0.3rem 0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.nav-menu .nav-link {
  color: #f2ede4 !important;
  font-family: "Italiana", serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 0;
  transition: 0.2s;
  position: relative;
}

.nav-menu .nav-link:hover {
  color: var(--royal-gold) !important;
}

.nav-menu .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--royal-gold);
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

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

.dropdown-menu {
  background-color: #0f4235;
  border: none;
  border-radius: 0;
  margin-top: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: #f5f0e6;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
}

.dropdown-item:hover {
  background-color: var(--royal-gold);
  color: #0a3a2e;
}

.mobile-nav-collapse {
  display: none;
}

@media (max-width: 992px) {
  .header-logo-section {
    flex-direction: column;
    padding: 1.2rem 1rem;
  }

  .logo-center-wrapper {
    margin: 10px auto;
    display: none;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-nav-collapse {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    padding: 8px 38px;
    margin: 0.9rem auto 0.7rem;
    width: fit-content;
    border-radius: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
  }

  .mobile-menu-btn:hover {
    background: var(--royal-gold);
    color: var(--royal-green);
  }

  .mobile-nav-menu {
    list-style: none;
    padding: 0.8rem 1rem;
    margin: 0;
    background-color: var(--royal-green-dark);
    text-align: center;
  }

  .mobile-nav-menu li {
    padding: 0.6rem 0;
  }

  .mobile-nav-menu a {
    color: #f2ede4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
  }

  .mobile-nav-menu a:hover {
    color: var(--royal-gold);
    text-decoration: none;
  }
}

/* ---------- HERO CAROUSEL ---------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 88vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide-1 {
  background-image: linear-gradient(rgba(10, 58, 46, 0.3), rgba(8, 16, 14, 0.6)), url("../img/banner/banner-1.jpg");
}

.hero-slide-2 {
  background-image: linear-gradient(rgba(10, 58, 46, 0), rgba(5, 40, 31, 0.65)), url("../img/banner/banner-2.jpg");
}

.hero-slide-3 {
  background-image: linear-gradient(rgba(10, 58, 46, 0.2), rgba(5, 40, 31, 0.65)), url("../img/banner/banner-3.jpg");
}

.hero-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-text-box {
  max-width: 800px;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.carousel-item.active .hero-text-box {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  color: white;
}

.hero-desc {
  color: white;
}

.btn-royal-carousel {
  background: transparent;
  border: 2px solid var(--royal-gold);
  color: var(--royal-gold);
  padding: 12px 32px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-block;
  text-decoration: none;
}

.btn-royal-carousel:hover {
  background: var(--royal-gold);
  color: var(--royal-green);
  transform: translateY(-2px);
  text-decoration: none;
}

.custom-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}

.custom-indicators li.active {
  background: var(--royal-gold);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-slide {
    height: 70vh;
  }
}

/* ---------- CATEGORY CARDS ---------- */
.category-carousel-section {
  background: #fefcf7;
  padding: 4rem 0 5rem;
}

.section-title {
  font-size: 2.6rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--royal-gold);
  margin: 0.8rem auto 0;
}

.modern-category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 15px 12px;
  min-height: 380px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modern-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(10, 58, 46, 0.75) 0%, rgba(5, 40, 31, 0.85) 100%); */
  z-index: 1;
  transition: all 0.4s ease;
}

.modern-category-card:hover::before {
  /* background: linear-gradient(135deg, rgba(10, 58, 46, 0.55) 0%, rgba(5, 40, 31, 0.7) 100%); */
}

.modern-category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.category-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modern-category-card:hover .category-bg-img {
  transform: scale(1.08);
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.8rem;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.category-icon-modern {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  color: var(--royal-gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.modern-category-card:hover .category-icon-modern {
  transform: translateY(-5px);
}

.category-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Italiana", serif;
}

.category-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  text-decoration: none;
  border-bottom: 1px solid var(--royal-gold);
  padding-bottom: 4px;
  transition: 0.25s;
}

.category-link-modern:hover {
  color: white;
  border-bottom-color: white;
  text-decoration: none;
}

.category-link-modern:hover i {
  transform: translateX(5px);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: var(--royal-green) !important;
  color: var(--royal-gold) !important;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  font-size: 24px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
  left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -25px;
}

@media (max-width: 768px) {
  .category-content {
    padding: 1.5rem;
    min-height: 320px;
  }

  .category-content h4 {
    font-size: 1.4rem;
  }
}

/* ---------- ABOUT US SECTION ---------- */
.about-creative {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ==================================================
   IMAGE AREA
================================================== */

.about-images-creative {
  position: relative;
  padding-right: 30px;
}

.image-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 9 / 6;
  box-shadow: 0 25px 60px rgba(10, 58, 46, 0.18);
}

.image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-main:hover img {
  transform: scale(1.08);
}

.image-founder {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 6 / 9;
  box-shadow: 0 25px 60px rgba(10, 58, 46, 0.18);
}

.image-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-founder:hover img {
  transform: scale(1.08);
}

/* Overlay */
/* Image Overlay */
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 58, 46, 0.92), rgba(10, 58, 46, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show overlay on hover */
.image-main:hover .image-overlay,
.image-founder:hover .image-overlay {
  opacity: 1;
}

.overlay-content h4 {
  font-family: "Italiana", serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 25%, #ffd700 50%, #daa520 75%, #c5a267 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.overlay-content p {
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-top: -1.4rem;
}

/* Floating Image */

.image-small {
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 3;

  width: 110px;
  height: 110px;

  overflow: hidden;
  border-radius: 24px;
  border: 5px solid #fff;
  background: #fff;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

  animation: float 4s ease-in-out infinite;
}

.image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge */

.image-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--royal-gold);
  color: #fff;

  border-radius: 50%;

  box-shadow: 0 8px 20px rgba(197, 162, 103, 0.4);
}

/* ==================================================
   DECORATIVE SHAPES
================================================== */

.shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.08;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-green));
}

.shape-1 {
  width: 280px;
  height: 280px;
  top: -50px;
  right: -40px;

  animation: pulse 5s infinite;
}

.shape-2 {
  width: 140px;
  height: 140px;
  bottom: -50px;
  left: -50px;

  animation: pulse 4s infinite reverse;
}

/* ==================================================
   CONTENT AREA
================================================== */

.about-content-creative {
  position: relative;
}

/* Products Listing */
.product-card {
  border: none;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(2px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

/* image wrapper – clean corner radius */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #f8f9fc;
}

.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  display: block;
}

.product-card:hover .product-img {
  transform: scale(1.04);
  filter: brightness(0.98) saturate(1.05);
}

/* category badge – top right, glassmorphism */
.product-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1e1e2f;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.product-card:hover .product-category-badge {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* title overlay – bottom of image (modern glass) */
.product-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.product-title-overlay h5 {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-title-overlay small {
  font-family: "Italiana", serif;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  display: block;
  margin-top: 0.15rem;
  letter-spacing: 0.1em;
}

.product-card:hover .product-title-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 90%);
}

/* card body – clean typography */
.card-body {
  padding: 1.4rem 1.2rem 0.8rem 1.2rem;
  flex: 1 1 auto;
  background: #ffffff;
}

.card-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3a3a4a;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.text-justify {
  text-align: justify;
}

/* card footer – modern dual button layout */
.card-footer {
  padding: 0.8rem 1.2rem 1.4rem 1.2rem;
  background: #ffffff;
  border-top: 0 !important;
  border-radius: 0 0 1.5rem 1.5rem;
}

/* button group – two equal buttons */
.btn-group-actions {
  display: flex;
  gap: 0.6rem;
  width: 100%;
}

.btn-group-actions .btn {
  flex: 1;
  border-radius: 60px;
  padding: 0.7rem 0.5rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
}

/* view details – dark primary */
.btn-view-more {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.25);
}

.btn-view-more i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.btn-view-more:hover {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.35);
  color: #fff;
}

.btn-view-more:hover i {
  transform: translateX(4px);
}

/* inquiry now – gradient accent */
.btn-inquiry {
  background: linear-gradient(135deg, #f5a623, #f7c948);
  color: #1e1e2f;
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.25);
}

.btn-inquiry i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.btn-inquiry:hover {
  background: linear-gradient(135deg, #e0951e, #f5b832);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
  color: #1e1e2f;
}

.btn-inquiry:hover i {
  transform: rotate(-8deg) scale(1.1);
}

/* button focus states */
.btn-view-more:focus,
.btn-inquiry:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 30, 47, 0.15);
}

.btn-inquiry:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.3);
}

/* optional: extra modern micro-interaction */
.product-card .card-body .card-text::first-letter {
  font-size: 1.1em;
  font-weight: 500;
  color: #1e1e2f;
}

/* Highlight Box */

.highlight-box {
  padding: 35px;
  margin-bottom: 30px;

  background: #fff;

  border-radius: 24px;
  border: 1px solid var(--border-light);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(10, 58, 46, 0.1);
}

.highlight-box h4 {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  font-family: "Italiana", serif;
  font-size: 1.5rem;

  color: var(--royal-green);
}

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

.highlight-box p {
  margin: 0;
  line-height: 1.9;
  color: #555;
}

/* ==================================================
   STATS
================================================== */

.stats-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  padding: 20px;
  text-align: center;

  background: #fff;

  border-radius: 18px;
  border: 1px solid rgba(197, 162, 103, 0.18);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-number {
  display: block;

  font-size: 2rem;
  font-weight: 700;

  color: var(--royal-green);
}

.stat-label {
  display: block;

  margin-top: 6px;

  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #777;
}

.stat-bar {
  width: 45px;
  height: 3px;

  margin: 12px auto 0;

  border-radius: 50px;

  background: linear-gradient(90deg, var(--royal-gold), var(--royal-gold-light));

  transition: width 0.3s ease;
}

.stat-item:hover .stat-bar {
  width: 70px;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images-creative {
    padding-right: 0;
  }

  .stats-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .image-small {
    width: 130px;
    height: 130px;
  }

  .highlight-box {
    padding: 25px;
  }

  .highlight-box h4 {
    font-size: 1.2rem;
  }
}

/* ---------- ABOUT US SECTION ---------- */
.apotheosis-section {
  position: relative;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 25%, #ffd700 50%, #daa520 75%, #c5a267 100%);
  background-attachment: fixed;
  padding: 8rem 0;
  overflow: hidden;
  color: #1e2a2a;
}

.apotheosis-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: url("../img/zr-icon.svg");
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: left center;

  opacity: 0.2;
  pointer-events: none;
}

.apotheosis-text p {
  font-weight: 500;
  text-align: justify;
  padding-right: 1em;
}

.apotheosis-quote {
  border-left: 3px solid #2c1810;
  padding-left: 1.5rem;
  padding-right: 1em;
  margin: 1.5rem 0;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-align: justify;
  color: #2c1810;
}

.royal-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(44, 24, 16, 0.4);
  font-family: "Italiana", serif;
  letter-spacing: 3px;
  color: #2c1810;
  text-align: right;
  display: block;
}

.apotheosis-title {
  font-family: "Italiana", serif;
  font-size: 3rem;
  letter-spacing: 6px;
  color: #2c1810;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.apotheosis-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #2c1810;
}

.elegant-img-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.5);
  transition: transform 0.4s;
}

.elegant-img-card:hover {
  transform: scale(1.02);
}

.elegant-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose-us {
  position: relative;
  background: linear-gradient(rgba(10, 58, 46, 0.6), rgba(5, 40, 31, 0.9)), url("../img/background/WhyChooseUs.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  color: #f5f0e6;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(197, 162, 103, 0.4);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 3rem;
  color: var(--royal-gold);
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-family: "Italiana", serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

/* ---------- CONSULTATION SECTION ---------- */
.consultation-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #fefcf7;
}

.zoom-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
    box-shadow 0.4s;
  transform: scale(0.92);
  opacity: 0.8;
  border: 1px solid rgba(197, 162, 103, 0.3);
}

.zoom-card.zoom-in-view {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 35px 55px -15px rgba(0, 0, 0, 0.2);
  border-color: var(--royal-gold);
}

.consultation-form input,
.consultation-form textarea {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(197, 162, 103, 0.2);
  outline: none;
}

.btn-gold {
  background: var(--royal-gold);
  color: #1e2a2a;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.consultation-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.consultation-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-modern {
  background: linear-gradient(180deg, #fefcf7 0%, #f9f5eb 100%);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem 1.8rem;
  margin: 20px 15px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(197, 162, 103, 0.2);
  height: auto;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
  border-color: var(--royal-gold);
}

.testimonial-icon {
  font-size: 2.5rem;
  color: var(--royal-gold);
  margin-bottom: 1.2rem;
}

.testimonial-remark {
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  color: #3a4a4a;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  min-height: 100px;
}

.testimonial-name {
  font-family: "Italiana", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0a3a2e;
  margin-bottom: 0.2rem;
}

.testimonial-city {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--royal-gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-city i {
  font-size: 0.7rem;
}

.testimonial-rating {
  margin-top: 1rem;
  color: var(--royal-gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-quote-mark {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 3rem;
  color: rgba(197, 162, 103, 0.1);
  font-family: serif;
  pointer-events: none;
  z-index: 0;
}

.owl-carousel .owl-stage-outer {
  padding: 15px 0 25px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    margin: 10px 10px;
  }

  .testimonial-remark {
    font-size: 0.85rem;
    min-height: auto;
  }
}

/* ---------- CTA BANNER ---------- */
.royal-cta-banner {
  position: relative;
  background: linear-gradient(115deg, #0a3a2e 0%, #1a5a48 50%, #0a3a2e 100%);
  padding: 4rem 2rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.royal-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(197, 162, 103, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: slowRotate 20s infinite linear;
}

@keyframes slowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-family: "Italiana", serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--royal-gold-light);
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #e8e0d0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.cta-button-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn-cta-primary {
  background: var(--royal-gold);
  color: #0a3a2e;
  border: none;
  padding: 14px 38px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  background: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  background: transparent;
  border: 2px solid var(--royal-gold);
  color: var(--royal-gold);
  padding: 12px 34px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-cta-secondary:hover {
  background: var(--royal-gold);
  color: #0a3a2e;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }
}

/* ---------- FOOTER (ENHANCED) ---------- */
.footer-royal {
  /* background: linear-gradient(180deg, #0f2a23 0%, #0b1f1a 100%); */
  background: linear-gradient(180deg, #0a3a2e 0%, #01140f 100%);
  color: #cfd8d1;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

/* Headings */
.footer-royal h5 {
  font-family: "Italiana", serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--royal-gold);
  margin-bottom: 1rem;
}

.footer-royal h6 {
  font-family: "Italiana", serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: var(--royal-gold);
  margin-bottom: 1rem;
}

/* Paragraph */
.footer-royal p {
  line-height: 1.7;
  opacity: 0.9;
}

/* Links */
.footer-royal a {
  color: #cfd8d1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-royal a:hover {
  color: var(--royal-gold);
  transform: translateX(4px);
}

/* Divider */
.footer-royal hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1.5rem;
}

/* Social Icons */
.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons i {
  font-size: 0.95rem;
  color: #cfd8d1;
}

.social-icons a:hover {
  border-color: var(--royal-gold);
  background: rgba(212, 175, 55, 0.1);
}

.social-icons a:hover i {
  color: var(--royal-gold);
}

/* Bottom bar */
.footer-royal .text-center {
  opacity: 0.75;
  font-size: 0.85rem;
}

.footer-royal .text-center a img {
  filter: brightness(0.9);
  transition: 0.3s;
}

.footer-royal .text-center a:hover img {
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-royal {
    text-align: center;
  }

  .social-icons a {
    margin: 0 6px;
  }
}

/* ===== HERO SECTION ===== */
.header-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header-hero .overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  /* background: #1A5A48;
    background: -webkit-linear-gradient(135deg, rgba(26, 90, 72, 0.6) 0%, rgba(197, 162, 103, 0.74) 35%, rgba(10, 58, 46, 0.72) 100%);
    background: -moz-linear-gradient(135deg, rgba(26, 90, 72, 0.6) 0%, rgba(197, 162, 103, 0.74) 35%, rgba(10, 58, 46, 0.72) 100%);
    background: linear-gradient(135deg, rgba(26, 90, 72, 0.6) 0%, rgba(197, 162, 103, 0.74) 35%, rgba(10, 58, 46, 0.72) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1A5A48", endColorstr="#0A3A2E", GradientType=0); */
}

.header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: "Italiana", serif;
  font-size: 3rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 15px #fff,
    0 0 20px #104c00,
    0 0 30px #104c00,
    0 0 40px #104c00,
    0 0 55px #104c00,
    0 0 75px #49ff18;
}

/* Bottom section inside hero */
.header-bottom {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 2;
  color: #e5e5e5;
}

.header-subtitle {
  font-family: "Hurricane", cursive;
  font-size: 4.1rem;
  font-weight: 500;
  text-shadow: 2px 2px 20px black;
  margin-bottom: -32px;
  color: #ffffff;
  /* color: var(--royal-gold); */
}

/* Smaller font size on mobile */
@media (max-width: 767px) {
  .header-subtitle {
    font-size: 2.8rem;
    margin-bottom: -22px;
  }
}

/* Breadcrumb */
.breadcrumb-custom {
  font-size: 1.3rem;
  text-shadow: 0px -1px 9px rgba(0, 0, 0, 0.6);
  /* margin-bottom: .9em; */
}

.breadcrumb-custom a {
  color: #e5e5e5;
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  color: var(--royal-gold);
}

.breadcrumb-custom span {
  color: var(--royal-gold);
}

/* Hide breadcrumb on mobile */
@media (max-width: 767px) {
  .breadcrumb-custom {
    display: none;
  }
}

/* ===== CONTENT ===== */
.about-content {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-family: "Italiana", serif;
  font-size: 2rem;
  color: var(--royal-green);
}

.section-subtitle {
  font-family: "Italiana", serif;
  font-size: 1.4rem;
  padding: 0 120px;
  color: var(--royal-green);
}

/* Blocks */
.about-block {
  margin-bottom: 70px;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.about-img:hover {
  transform: scale(1.03);
}

/* Text */
.about-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
}

/* Highlight strip */
.about-highlight {
  background: linear-gradient(135deg, #0f2a23, #12352c);
  color: #e8f0eb;
  padding: 60px;
  border-radius: 12px;
  margin: 80px 0;
  font-size: 1rem;
  line-height: 1.9;
}

/* Final statement */
.about-final {
  margin-top: 60px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--royal-green);
}

/* Responsive */
@media (max-width: 768px) {
  .about-block {
    text-align: center;
  }

  .about-highlight {
    padding: 30px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .hero-bottom {
    text-align: center;
  }

  .hero-subtitle {
    margin-bottom: 5px;
  }
}

/* Contact Card */

/* ==================================================
   MODERN CONTACT SECTION
================================================== */

.contact-modern-section {
  position: relative;
  background: #f8f7f4;
  padding-bottom: 100px;
}

/* ==================================================
   MAP
================================================== */

.contact-map-wrapper {
  position: relative;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 520px;
  border: 0;
  filter: grayscale(100%) contrast(1.1);
}

/* ==================================================
   FLOATING CONTACT BOX
================================================== */

.contact-floating-box {
  position: relative;
  margin-top: -90px;
  z-index: 5;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
  padding: 45px 35px;
  text-align: center;

  height: 100%;

  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(197, 162, 103, 0.12);

  color: var(--royal-gold);

  font-size: 1.2rem;
}

.contact-info-card h5 {
  margin-bottom: 12px;

  font-family: "Italiana", serif;
  font-size: 1.3rem;

  color: var(--royal-green);
}

.contact-info-card p {
  margin: 0;

  color: #666;
  line-height: 1.8;
}

/* ==================================================
   MAIN CONTACT WRAPPER
================================================== */

.contact-main-wrapper {
  margin-top: 80px;

  overflow: hidden;

  border-radius: 35px;

  background: #fff;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
}

/* ==================================================
   LEFT IMAGE
================================================== */

.contact-image-box {
  position: relative;

  height: 100%;
  min-height: 650px;

  background: url("../img/contactus.jpg") center center / cover no-repeat;
}

.contact-image-box .image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(5, 40, 31, 0.15), rgba(5, 40, 31, 0.88));
}

.contact-image-content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  right: 50px;
  z-index: 2;
  color: #fff;
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000,
    0 0 30px rgba(0, 0, 0, 0.7);
}

.contact-image-content p {
  text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 20px #000,
    0 0 30px rgba(0, 0, 0, 0.7);
}

.mini-title {
  display: inline-block;
  margin-bottom: 15px;

  color: var(--royal-gold);

  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-image-content h2 {
  margin-bottom: 20px;

  font-family: "Italiana", serif;
  font-size: 3rem;
  line-height: 1.2;
}

.contact-image-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

/* ==================================================
   FORM
================================================== */

.contact-form-modern {
  padding: 70px 60px;
}

.section-heading-wrapper {
  margin-bottom: 40px;
}

.subtitle {
  display: inline-block;
  margin-bottom: 10px;

  color: var(--royal-gold);

  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-heading-wrapper h3 {
  font-family: "Italiana", serif;
  font-size: 2.5rem;

  color: var(--royal-green);
}

/* Inputs */

.custom-input {
  height: 58px;

  padding: 14px 20px;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: none !important;
}

textarea.custom-input {
  height: auto;
}

.custom-input:focus {
  border-color: var(--royal-gold);

  box-shadow: 0 0 0 0.15rem rgba(197, 162, 103, 0.18) !important;
}

/* Button */

.btn-contact-modern {
  padding: 15px 40px;

  border: none;
  border-radius: 50px;

  background: linear-gradient(135deg, var(--royal-green), var(--royal-green-light));

  color: #fff;

  letter-spacing: 1px;

  transition: all 0.3s ease;
}

.btn-contact-modern:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(10, 58, 46, 0.25);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .contact-main-wrapper {
    margin-top: 60px;
  }

  .contact-form-modern {
    padding: 50px 35px;
  }

  .contact-image-box {
    min-height: 450px;
  }

  .contact-image-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .contact-map-wrapper iframe {
    height: 420px;
  }

  .contact-floating-box {
    margin-top: -60px;
  }

  .contact-info-card {
    padding: 35px 25px;
  }

  .contact-form-modern {
    padding: 40px 25px;
  }

  .section-heading-wrapper h3 {
    font-size: 2rem;
  }

  .contact-image-content {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

  .contact-image-content h2 {
    font-size: 1.8rem;
  }
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a3a2a;
  background: white;
  border: 1.5px solid #d0dfd0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

/* Hover – subtle green */
.page-link:hover:not(.disabled) {
  background: #f0f7f0;
  border-color: #8fb89f;
  transform: translateY(-1px);
}

/* Active page – royal green */
.page-item.active .page-link {
  background: #1a6b3c;
  border-color: #1a6b3c;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(26, 107, 60, 0.3);
}

.page-item.active .page-link:hover {
  background: #145a31;
  border-color: #145a31;
}

/* Disabled – soft */
.page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
  background: #f5f8f5;
  border-color: #dce8dc;
  color: #8fa89f;
}

/* Previous / Next – keep clean */
.page-item:first-child .page-link {
  padding: 0 1.2rem;
}

.page-item:last-child .page-link {
  padding: 0 1.2rem;
}

/* Small screens */
@media (max-width: 480px) {
  .demo-wrapper {
    padding: 1.5rem 1rem;
  }

  .page-link {
    min-width: 2.4rem;
    height: 2.4rem;
    font-size: 0.85rem;
    padding: 0 0.6rem;
    border-radius: 6px;
  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    padding: 0 0.8rem;
  }
}

/* Focus state */
.page-link:focus-visible {
  outline: 2px solid #1a6b3c;
  outline-offset: 2px;
  border-radius: 8px;
}

/* main card – clean, minimal, with royal green + gold accents */
.empty-state {
  margin: 0 auto;
  max-width: 620px;
  width: 100%;
  background: #ffffff;
  border-radius: 48px;
  padding: 3.2rem 2.5rem;
  box-shadow:
    0 20px 50px -12px rgba(20, 50, 30, 0.12),
    0 6px 18px -6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(30, 80, 50, 0.08);
  text-align: center;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s;
  position: relative;
}

/* subtle gold accent line (top) */
.empty-state::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c9a84c, #e8c86a, #c9a84c);
  border-radius: 0 0 12px 12px;
  opacity: 0.5;
}

.empty-state:hover {
  box-shadow: 0 28px 60px -16px rgba(30, 70, 40, 0.18);
  transform: translateY(-3px);
}

/* royal green illustration – simple, no background image */
.illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e7f0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  color: #1f4d2e;
  transition: all 0.2s;
  border: 2px solid rgba(31, 77, 46, 0.08);
  box-shadow: 0 8px 20px -8px rgba(30, 70, 40, 0.1);
}

.icon-circle i {
  filter: drop-shadow(0 4px 6px rgba(30, 70, 40, 0.06));
}

/* gold accent ring – pure css, no images */
.icon-ring {
  position: relative;
}

.icon-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(201, 168, 76, 0.25);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* badge – gold + green */
.badge-gold {
  display: inline-block;
  background: #1a3d26;
  padding: 0.35rem 1.4rem;
  border-radius: 60px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a632b;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1.6rem;
}

.badge-gold i {
  color: #b8942e;
  margin-right: 6px;
}

/* headings – royal green */
.empty-state h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a3d26;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.empty-state h2 i {
  color: #c9a84c;
  font-weight: 300;
  margin-right: 8px;
  font-size: 1.8rem;
}

/* description – royal green + gold accents */
.description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a5646;
  max-width: 460px;
  margin: 0.5rem auto 1.2rem;
  font-weight: 400;
}

.description .gold-text {
  color: #b08a3a;
  font-weight: 500;
}

.description .highlight-green {
  color: #1f4d2e;
  font-weight: 600;
}

/* divider – gold line */
.divider-gold {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #dbb85c, #e8cc7a);
  border-radius: 6px;
  margin: 1.8rem auto 1.8rem;
  opacity: 0.5;
}

/* royal note – extra detail */
.royal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #4f6b56;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.royal-note i {
  color: #c9a84c;
  font-size: 0.9rem;
}

.royal-note .gold-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e8c86a;
  border-radius: 50%;
  opacity: 0.4;
}

/* small crown icon animation */
@keyframes gentle-float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.icon-circle i {
  animation: gentle-float 3.5s ease-in-out infinite;
}

/* responsive */
@media (max-width: 480px) {
  .empty-state {
    padding: 2.5rem 1.5rem;
    border-radius: 32px;
  }

  .empty-state h2 {
    font-size: 1.7rem;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .description {
    font-size: 0.95rem;
  }
}

/* ---- image container (1:1 aspect ratio) + overlay ---- */
.about-images-creative {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.image-founder {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  background: #e1dad3;
}

.image-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-founder:hover img {
  transform: scale(1.02);
}

/* overlay badges (category top-left) */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 28px;
  /* background: linear-gradient(180deg, rgba(20, 15, 12, 0.2) 0%, transparent 45%, transparent 70%, rgba(20, 15, 12, 0.1) 100%); */
}

.overlay-content {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.badge-category {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 1.2rem;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #2d2520;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-category i {
  margin-right: 6px;
  color: #b83b3b;
}

/* SKU badge – bottom center with opacity */
.sku-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 15, 12, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 1.6rem;
  border-radius: 60px;
  color: #f5eee9;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 215, 190, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.sku-badge i {
  margin-right: 8px;
  opacity: 0.7;
}

/* shape decor (optional) */
.shape {
  display: none;
}

/* right column – highlight box */
.highlight-box {
  background: #ffffff;
  padding: 2rem 2rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(220, 210, 200, 0.25);
  transition: box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-box:hover {
  box-shadow: 0 24px 48px -16px rgba(60, 40, 30, 0.08);
}

.highlight-box .info-line {
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0ebe6;
  display: flex;
  flex-wrap: wrap;
}

.highlight-box .info-line:last-of-type {
  border-bottom: none;
}

.highlight-box .info-line strong {
  min-width: 100px;
  color: #3d332c;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.highlight-box .info-line span {
  color: #4f443c;
}

.short-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e1714;
  background: #f8f3ef;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  margin: 1rem 0 1.2rem;
  border-left: 4px solid #b83b3b;
  line-height: 1.6;
}

.long-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3d342e;
  background: #fcfaf8;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  margin-top: 0.2rem;
  border: 1px solid #ede7e1;
}

.long-description p {
  margin-bottom: 0.6rem;
}

.long-description p:last-child {
  margin-bottom: 0;
}

/* second row: types + reference */
.meta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  border: 1px solid #ede7e1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.meta-item {
  flex: 1 1 220px;
}

.meta-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9a8b7f;
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.meta-item .value {
  font-size: 0.96rem;
  color: #2a221d;
  font-weight: 450;
  line-height: 1.5;
}

.meta-item .value i {
  color: #b83b3b;
  margin-right: 6px;
  opacity: 0.6;
}

/* responsive adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.4rem;
  }

  .highlight-box {
    padding: 1.6rem;
  }

  .image-founder {
    max-width: 100%;
  }

  .sku-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1.2rem;
  }

  .overlay-content {
    top: 0.8rem;
    left: 0.8rem;
  }

  .badge-category {
    font-size: 0.65rem;
    padding: 0.2rem 1rem;
  }

  .meta-row {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 2rem 0;
  }

  .highlight-box .info-line strong {
    min-width: 80px;
  }
}

/* Single Product */
/* ---- image container (1:1 aspect ratio) + overlay ---- */
.sp-about-images-creative {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.sp-image-founder {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  background: #e1dad3;
}

.sp-image-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sp-image-founder:hover img {
  transform: scale(1.02);
}

/* overlay badges (category top-left) */
.sp-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 15, 12, 0.2) 0%, transparent 45%, transparent 70%, rgba(20, 15, 12, 0.1) 100%);
}

.sp-overlay-content {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.sp-badge-category {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 1.2rem;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #2d2520;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sp-badge-category i {
  margin-right: 6px;
  color: #b83b3b;
}

/* SKU badge – bottom center with opacity */
.sp-sku-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 15, 12, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 1.6rem;
  border-radius: 60px;
  color: #f5eee9;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 215, 190, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.sp-sku-badge i {
  margin-right: 8px;
  opacity: 0.7;
}

/* shape decor (optional) */
.sp-shape {
  display: none;
}

/* right column – highlight box */
.sp-highlight-box {
  background: #ffffff;
  padding: 2rem 2rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(220, 210, 200, 0.25);
  transition: box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sp-highlight-box:hover {
  box-shadow: 0 24px 48px -16px rgba(60, 40, 30, 0.08);
}

.sp-info-line {
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0ebe6;
  display: flex;
  flex-wrap: wrap;
}

.sp-info-line:last-of-type {
  border-bottom: none;
}

.sp-info-line strong {
  min-width: 100px;
  color: #3d332c;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sp-info-line span {
  color: #4f443c;
}

.sp-short-desc {
  font-size: 0.9rem;
  /* font-weight: 500; */
  color: #1e1714;
  background: #f8f3ef;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  /* margin: 1rem 0 1.2rem; */
  border-left: 4px solid #136207;
  line-height: 1.6;
}

.sp-long-description {
  /* font-size: 1.3rem; */
  line-height: 1.2;
  color: #3d342e;
  background: #fcfaf8;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  /* margin-top: 0.2rem; */
  border: 1px solid #ede7e1;
}

.sp-long-description p {
  margin-bottom: 0.6rem;
}

.sp-long-description p:last-child {
  margin-bottom: 0;
}

/* second row: types + reference */
.sp-meta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  border: 1px solid #ede7e1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.sp-meta-item {
  flex: 1 1 220px;
}

.sp-meta-item .sp-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9a8b7f;
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.sp-meta-item .sp-value {
  /* font-size: 0.96rem; */
  font-size: 0.8rem;
  color: #3d342e;
  font-weight: 450;
  line-height: 1.6;
}

.sp-meta-item .sp-value i {
  color: #b83b3b;
  margin-right: 6px;
  opacity: 0.6;
}

/* sp-inline-details (extra) */
.sp-inline-details {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
  font-size: 0.9rem;
  border-top: 1px solid #efe8e2;
  padding-top: 1rem;
}

.sp-inline-details i {
  color: #9a8b7f;
  margin-right: 4px;
}

/* responsive adjustments */
@media (max-width: 768px) {
  .sp-section-title h2 {
    font-size: 2.4rem;
  }

  .sp-highlight-box {
    padding: 1.6rem;
  }

  .sp-image-founder {
    max-width: 100%;
  }

  .sp-sku-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1.2rem;
  }

  .sp-overlay-content {
    top: 0.8rem;
    left: 0.8rem;
  }

  .sp-badge-category {
    font-size: 0.65rem;
    padding: 0.2rem 1rem;
  }

  .sp-meta-row {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 576px) {
  .sp-about-section {
    padding: 2rem 0;
  }

  .sp-info-line strong {
    min-width: 80px;
  }
}

/* Form */
.form-messages {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
}

.form-messages.success {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-messages.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.field-error {
  color: #b91c1c;
  font-size: 12px;
  margin-top: 4px;
}
