/* ================= HERO BANNER ================= */

.hero-banner {
	position: relative;
	min-height: 100vh;
	background: url('../../images/hero-banner.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 8%;
	color: #fff;
}

/* dark overlay */
.hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.55),
		rgba(0, 0, 0, 0.75)
	);
	z-index: 1;
}

/* content */
.hero-banner__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

/* heading */
/* .hero-banner__title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 18px;
} */
.hero-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;        /* desktop */
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

/* subtitle */
.hero-banner__subtitle {
  font-family: 'Poppins', serif;
	font-size: 18px;
	font-weight: 400;
	opacity: 0.9;
	margin-bottom: 36px;
}

/* buttons wrapper */
.hero-banner__actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* ================= BUTTONS ================= */

.btn {
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* gold */
.btn-gold {
	background: #d4af37;
	color: #111;
	border: none;
}

.btn-gold:hover {
	background: #c19b2b;
}

/* outline */
.btn-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid #d4af37;
}

.btn-outline:hover {
	background: #d4af37;
	color: #111;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
	.hero-banner {
		min-height: 90vh;
	}

	.hero-banner__title {
		font-size: 36px;
	}

	.hero-banner__subtitle {
		font-size: 15px;
	}

	.hero-banner__actions {
		gap: 14px;
	}
}

/* ================= PREMIUM CATEGORY SECTION ================= */

.premium-category-section {
	background: #0f0f0f;
	padding: 90px 6%;
	text-align: center;
	color: #fff;
}

.premium-category__title {
  font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 600;
	color: #d4af37;
}

.premium-category__divider {
	width: 60px;
	height: 2px;
	background: #d4af37;
	margin: 12px auto 50px;
}

/* SLIDER WRAPPER */
.premium-category__slider {
	position: relative;
	max-width: 1100px;
	margin: auto;
	overflow: hidden;
	padding: 0 70px; /* arrows space */
}

/* TRACK */
.premium-category__track {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	will-change: transform;
}

/* CARD */
.premium-category__card {
	min-width: calc(33.333% - 20px);
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
	transition: transform 0.3s ease;
}

.premium-category__card:hover {
	transform: translateY(-6px);
}

/* IMAGE */
.premium-category__card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	background: #f5f5f5;
}

/* CONTENT */
.premium-category__content {
	padding: 18px;
}

.premium-category__content h3 {
  font-family: 'Playfair Display', serif;
	font-size: 17px;
	color: #111;
}

.premium-category__content p {
  font-family: 'Inter', serif;
	font-size: 13px;
	color: #555;
	margin: 10px 0 14px;
}

.premium-category__content a {
  font-family: 'Inter', serif;
}

/* BUTTON */
.premium-category__btn {
	background: #f5c400;
	border: none;
	padding: 9px 16px;
	font-size: 13px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

/* ARROWS */
.premium-category__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #f5c400;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.premium-category__arrow--left {
	left: 10px;
}

.premium-category__arrow--right {
	right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
	.premium-category__card {
		min-width: 85%;
	}
}

/* ================= BEYOND GIFTING SOLUTIONS ================= */

.beyond-solutions {
	background: #2b2b2b;
	padding: 90px 6%;
	text-align: center;
	color: #fff;
}

.beyond-solutions__title {
  font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 600;
	color: #d4af37;
}

/* SUBTITLE */
.beyond-solutions__subtitle {
  font-family: 'Inter', serif;
	font-size: 15px;
	color: #bbb;
	max-width: 700px;
	margin: 0 auto 60px;
}

/* DIVIDER */
.beyond-solutions__divider {
	width: 60px;
	height: 2px;
	background: #d4af37;
	margin: 14px auto 50px;
}

/* GRID */
.beyond-solutions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

/* ITEM */
.beyond-solutions__item {
	background: #1a1a1a;
	border-radius: 16px;
	padding: 30px 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beyond-solutions__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* ICON */
.beyond-solutions__icon {
	font-size: 40px;
	margin-bottom: 18px;
}

/* TEXT */
.beyond-solutions__item h3 {
  font-family: 'Inter', serif;
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
}

.beyond-solutions__item p {
  font-family: 'Inter', serif;
	font-size: 14px;
	color: #aaa;
	line-height: 1.5;
}

/* BUTTON */
/* .beyond-solutions__btn {
  font-family: 'Inter', serif;
	margin-top: 50px;
	background: #d4af37;
	color: #111;
	border: none;
	padding: 12px 26px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
} */

.beyond-solutions__btn {
  display: inline-flex;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
	padding: 12px 26px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.35s ease;
}

/* OUTER LINE STYLE */
.btn-outline {
  color: #d4af37;                 /* gold text */
  border: 2px solid #d4af37;      /* outer line */
  background: transparent;
}

/* HOVER EFFECT */
.btn-outline:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.beyond-solutions__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.beyond-solutions__grid {
		grid-template-columns: 1fr;
	}
}

/* ================= WHY CHOOSE SECTION ================= */

.why-choose {
	background: #1a1a1a;
	padding: 90px 6%;
	text-align: center;
	color: #fff;
}
.why-choose h2 {
  font-family: 'Playfair Display', serif;
}

.why-choose p {
font-family: 'Montserrat', serif;
}

.why-choose__title {
	font-size: 32px;
	font-weight: 600;
}

.why-choose__title span {
	color: #d4af37;
}

/* DIVIDER */
.why-choose__divider {
	width: 70px;
	height: 2px;
	background: #d4af37;
	margin: 16px auto 22px;
}

/* SUBTITLE */
.why-choose__subtitle {
	font-size: 15px;
	color: #bbb;
	max-width: 700px;
	margin: 0 auto 60px;
}

/* GRID */
.why-choose__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

.why-choose__grid h3 {
  font-family: 'Cormorant Garamond', serif;
}

.why-choose__grid i {
  font-family: 'Montserrat', serif;
}


/* ITEM */
.why-choose__item {
	background: #111;
	border-radius: 16px;
	padding: 30px 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* ICON */
.why-choose__icon {
	font-size: 36px;
	margin-bottom: 16px;
}

/* TEXT */
.why-choose__item h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
}

.why-choose__item i {
	font-size: 13px;
	color: #aaa;
	line-height: 1.5;
	display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.why-choose__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.why-choose__grid {
		grid-template-columns: 1fr;
	}
}

/* ================= OUR WORK (VIDEO) SECTION ================= */
.our-work-dark {
  background-color: #121212;
  padding: 60px 10%;
  color: #fff;
  text-align: center;
}
.our-work-dark p {
  font-family: 'Montserrat', serif;
}

.our-work-dark__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.our-work-dark__grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.our-work-dark__card {
  background-color: #222;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  user-select: none;
}

.our-work-dark__video-thumb {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 180px;
  background-color: #333;
}

.our-work-dark__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.our-work-dark__card:hover .our-work-dark__video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d4af37;
  border: none;
  color: #111;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.play-btn:hover {
  opacity: 1;
}

.our-work-dark__caption {
  padding: 12px 20px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #eee;
  text-align: left;
}

/* ================= BRANDS + STATS SECTION ================= */
.brands-stats-section {
  background-color: #1a1a1a; /* dark bg */
  padding: 80px 10%;
  color: #fff;
  text-align: center;
}

.brands-stats-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.brands-stats-section__title span {
  color: #d4af37; /* gold */
}

.brands-stats-section__subtitle {
  font-family: 'Inter', serif;
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.brands-stats-section__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.brands-stats-section__logo-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px #d4af37;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.brands-stats-section__logo-box:hover {
  transform: scale(1.05);
}

.brands-stats-section__logo-box img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

.brands-stats-section__stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.brands-stats-section__stat {
  text-align: center;
  min-width: 120px;
}

.brands-stats-section__stat h3,p{
  font-family: 'Inter', serif;
}

.brands-stats-section__stat-number {
  color: #d4af37;
  font-size: 2rem;
  font-weight: 700;
}

.brands-stats-section__stat-label {
  color: #aaa;
  font-size: 1rem;
  margin-top: 6px;
}

/* ===== OUR CLIENTS ===== */
.clients {
  background: radial-gradient(circle at top, #2a2a2a, #0f0f0f);
  padding: 90px 6%;
  text-align: center;
  color: #fff;
}

.clients__title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
}

.clients__title span {
  color: #d4af37;
}

.clients__divider {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 12px auto 50px;
}

/* SLIDER */
.clients__slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 70px;
}

.clients__track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD */
.clients__card {
  min-width: 320px;
  background: #1c1c1c;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

/* VIDEO */
.clients__video {
  position: relative;
}

.clients__video img {
  width: 100%;
  border-radius: 12px;
}

.clients__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* INFO */
.clients__info {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.clients__info img {
  width: 40px;
  border-radius: 50%;
}

.clients__info h4 {
  font-family: 'Montserrat', serif;
  font-size: 14px;
}

.clients__info small {
  font-family: 'Montserrat', serif;
  color: #aaa;
  font-size: 12px;
}

.clients__card p {
  font-family: 'Montserrat', serif;
  margin-top: 12px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}

/* ARROWS – SAME AS PREMIUM */
.clients__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #d4af37;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.clients__arrow.left { left: 10px; }
.clients__arrow.right { right: 10px; }

.clients__arrow:hover {
  background: #f5c400;
}

/* MOBILE */
@media(max-width:768px){
  .clients__card{
    min-width:85%;
  }
}
/* ================= CORPORATE GIFTING ================= */

.corporate-gifting {
  background: #000;
  padding: 90px 10%;
  color: #fff;
}

.corporate-gifting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.corporate-gifting__image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

/* CONTENT */
.corporate-gifting__content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.corporate-gifting__content h2 span {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
}

/* LIST */
.corporate-gifting__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.corporate-gifting__list li {
  font-family: 'Poppins', serif;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
}

.corporate-gifting__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: bold;
}

/* ACTION BUTTONS */
.corporate-gifting__actions {
  font-family: 'Poppins', serif;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 768px) {
  .corporate-gifting {
    padding: 70px 6%;
  }

  .corporate-gifting__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .corporate-gifting__list li {
    padding-left: 0;
  }

  .corporate-gifting__list li::before {
    display: none;
  }

  .corporate-gifting__actions {
    justify-content: center;
  }
}

/* ================= FEATURED SEASONAL COLLECTION ================= */

.seasonal-feature {
  background: #1c1c1c;
  padding: 90px 10%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.seasonal-feature__container {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.seasonal-feature__header {
  text-align: center;
  margin-bottom: 60px;
}

.seasonal-feature__header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #e6d18a;
  margin-bottom: 8px;
}

.seasonal-feature__header h2 span {
  font-family: 'Playfair Display', serif;
}

.seasonal-feature__header p {
  font-family: 'Inter', serif;
  font-size: 14px;
  color: #bdbdbd;
}

/* Grid */
.seasonal-feature__grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  grid-template-columns: repeat(4, 1fr); /* 👈 Always 4 in one row */
  gap: 30px;
}

/* Card */
.seasonal-feature__card {
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  cursor: pointer;
}

.seasonal-feature__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.6);
}

/* Image */
.seasonal-feature__card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Content */
.seasonal-feature__content {
  padding: 18px;
}

.seasonal-feature__content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.seasonal-feature__content p {
  font-family: 'Inter', serif;
  font-size: 13px;
  color: #9c9c9c;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Price */
.seasonal-feature__price {
  font-family: 'Inter', serif;
  font-size: 13px;
  font-weight: 600;
  color: #d4af37;
}

/* Decorative blobs (optional like screenshot) */
.seasonal-feature::before,
.seasonal-feature::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.seasonal-feature::before {
  top: 30px;
  left: 40px;
}

.seasonal-feature::after {
  bottom: 40px;
  right: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .seasonal-feature {
    padding: 70px 6%;
  }

  .seasonal-feature__header h2 {
    font-size: 28px;
  }
}
/* ================= CORPORATE GIFTING CTA ================= */
.corporate-gifting-cta {
  position: relative;
  padding: 110px 8%;
  background: radial-gradient(circle at center, #1c1c1c, #0c0c0c);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,.4);
}

/* Floating Shapes */
.corporate-gifting-cta__bg-shapes .shape {
  position: absolute;
  opacity: 0.15;
}

.shape.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d4af37;
  top: 20%;
  left: 10%;
}

.shape.circle.right {
  top: 30%;
  right: 12%;
}

.shape.triangle {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid #d4af37;
  bottom: 20%;
  left: 25%;
}

/* Content */
.corporate-gifting-cta__content {
  max-width: 850px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.corporate-gifting-cta__icon {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 20px;
}

.corporate-gifting-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.corporate-gifting-cta__title span {
  color: #d4af37;
}

.corporate-gifting-cta__content a{
  font-family: 'Montserrat', serif;
}

.corporate-gifting-cta__subtitle {
  font-family: 'Montserrat', serif;
  margin-top: 18px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* Button */
.corporate-gifting-cta__btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: #d4af37;
  color: #000;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s ease;
}

.corporate-gifting-cta__btn:hover {
  background: #e6c45a;
  transform: translateY(-3px);
}

/* ================= WHATSAPP CHAT BUTTON ================= */
.whatsapp-chat {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-chat img {
  width: 28px;
  height: 28px;
}

.whatsapp-chat:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .corporate-gifting-cta__title {
    font-size: 28px;
  }

  .corporate-gifting-cta {
    padding: 80px 6%;
  }
}
