/* Global Variables & Reset */
:root {
  --gold: #b58145;
  --dark: #1a1410;
  --light: #faf9f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  /* Hide default cursor for custom cursor */
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Custom Premium Cursor --- */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(181, 129, 69, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(181, 129, 69, 0.1);
  border-color: var(--gold);
}

/* ===========================
   Cali Floating Contact
=========================== */

.cw-floating-contact {
  position: fixed;
  right: 22px;
  bottom: 25px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cw-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: 0.35s ease;

  position: relative;
}

.cw-float-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: cwPulse 2s infinite;
}

@keyframes cwPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.cw-call {
  background: #1f2937;
}

.cw-whatsapp {
  background: #25d366;
}

.cw-email {
  background: #c59b45;
}

.cw-float-btn:hover {
  transform: translateY(-6px) scale(1.08);
  color: #fff;
}

.cw-call:hover {
  background: #000;
}

.cw-whatsapp:hover {
  background: #128c7e;
}

.cw-email:hover {
  background: #a67c2f;
}

@media (max-width: 768px) {
  .cw-floating-contact {
    right: 15px;
    bottom: 18px;
  }

  .cw-float-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* --- Modern Glassmorphism Navbar (Fixed for Dark Logo) --- */
.premium-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  /* Solid Frosted Light Glass Effect so logo always pops */
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.premium-nav.scrolled {
  padding: 12px 5%;
  background: rgba(250, 249, 246, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.logo img {
  height: 75px;
  /* Increased size */
  transition:
    transform 0.3s ease,
    height 0.3s ease;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  /* Subtle shadow */
}

.premium-nav.scrolled .logo img {
  height: 60px;
}

/* Center Navigation Links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.71);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Modern underline hover effect */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold) !important;
}

/* Dropdown Styling */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(10px);
  min-width: 240px;
  padding: 15px 0;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(15px);
}

.dropdown-item {
  padding: 12px 25px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  color: var(--gold);
  background: rgba(181, 129, 69, 0.05);
  padding-left: 32px;
}

/* Right Side Controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

/* Catalogue Button */
.btn-catalogue {
  padding: 14px 30px;
  background-color: var(--dark);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}

.btn-catalogue i {
  transition: transform 0.3s ease;
}

.btn-catalogue:hover {
  background-color: var(--gold);
  color: #fff;
  box-shadow: 0 10px 20px rgba(181, 129, 69, 0.3);
}

.btn-catalogue:hover i {
  transform: translateY(3px);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--dark);
  transition: 0.4s;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Fullscreen Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: circle(0px at calc(100% - 45px) 45px);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
  clip-path: circle(150% at calc(100% - 45px) 45px);
}

.mobile-menu-overlay a {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--dark);
  text-decoration: none;
  margin: 10px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.mobile-menu-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-product-wrapper {
  width: 100%;
  text-align: center;
}

.mobile-product-dropdown {
  display: none;
  flex-direction: column;
}

.mobile-product-dropdown.show {
  display: flex;
}

.mobile-product-dropdown a {
  font-size: 20px !important;
  margin: 6px 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
/* --- Hero Slider Section --- */
.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--dark);
}

.side-text {
  position: absolute;
  left: 3%;
  top: 70%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease-out;
  /* Ken Burns Effect */
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
  /* Zooms out smoothly */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(26, 20, 16, 0.9) 0%,
    rgba(26, 20, 16, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  position: absolute;
  top: 55%;
  /* Adjusted for navbar */
  left: 12%;
  transform: translateY(-50%);
  z-index: 2;
  width: 60%;
}

.reveal-mask {
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
}

.gs-reveal {
  display: block;
  transform: translateY(100%);
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

/* Solid Gold Text for highlight (Replaced webkit stroke) */
.title-highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 40px;
}

.btn-wrapper {
  display: flex;
  gap: 20px;
}

.btn-luxury {
  padding: 16px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-filled {
  background-color: var(--gold);
  border-color: var(--gold);
}

.btn-filled:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-luxury:not(.btn-filled):hover {
  background-color: #fff;
  color: var(--dark);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  right: 5%;
  bottom: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
}

.slider-nav {
  display: flex;
  gap: 15px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}

.swiper-pagination-custom {
  display: flex;
  gap: 10px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.5);
}

/* Responsive */
@media (max-width: 1150px) {
  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .nav-center,
  .btn-catalogue {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero-content {
    left: 5%;
    width: 90%;
  }

  .side-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .btn-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .slider-controls {
    right: auto;
    left: 5%;
    bottom: 30px;
  }
}

/* --- About Us Section Styles --- */
.about-section {
  background-color: var(--light);
  position: relative;
  z-index: 5;
}

.about-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img-wrapper:hover img {
  transform: scale(1.08);
}

.about-overlay-gradient {
  background: linear-gradient(
    to top,
    rgba(26, 20, 16, 0.9) 0%,
    rgba(26, 20, 16, 0.4) 40%,
    transparent 100%
  );
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-card-float {
  background-color: var(--dark);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.about-card-float:hover {
  transform: translateY(-10px);
}

.divider-line {
  width: 80px;
  height: 1px;
  background-color: rgba(181, 129, 69, 0.4);
  margin: 0 auto 30px auto;
}

/* --- Products Section Styles --- */
.products-section {
  background-color: #faf9f6;
  position: relative;
  z-index: 5;
}

.product-card {
  background-color: #ffffff;
  /* Clean white base */
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Subtle border */
  border-radius: 0px;
  /* Sharp edges for luxury feel */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  /* Lift effect */
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Strict 1:1 Square */
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1);
  /* Zoom image */
}

/* Hover Overlay inside Image Wrapper */
.product-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  /* Halka black transparent tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.product-card:hover .product-overlay {
  opacity: 1;
  /* Show on hover */
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #ffffff;
  /* White Border */
  color: #ffffff;
  /* White Text */
  background: transparent;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .explore-btn {
  transform: translateY(0);
  /* Slide up on hover */
}

.explore-btn:hover {
  background-color: #ffffff;
  color: var(--dark);
  /* Text turns dark on button hover */
}

.explore-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.explore-btn:hover .explore-icon {
  transform: translateX(4px);
  /* Arrow moves slightly forward */
}

.product-bottom-info {
  background-color: #ffffff;
  /* Clean white background */
  padding: 1.2rem 1rem;
  /* Reduced padding to make card shorter */
  text-align: center;
  position: relative;
  z-index: 20;
}

.product-bottom-title {
  color: var(--dark);
  /* Dark text on light background */
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  /* Slightly smaller */
  margin: 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-bottom-title {
  color: var(--gold);
  /* Text turns gold on hover */
}

/* --- Why Choose Us Section Styles --- */
.why-choose-section {
  /* Premium dark interior/wood background */
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-attachment: fixed;
  /* Parallax effect */
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 5;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 20, 16, 0.88);
  /* Deep dark brown/black overlay for readability */
  z-index: 1;
}

.feature-item {
  position: relative;
  padding: 2.5rem 1.5rem 1.5rem 0;
  /* Padding without card background */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle separator line */
  transition: all 0.4s ease;
}

/* Animated Golden Top Border on Hover */
.feature-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover::before {
  width: 100%;
  /* Line draws fully on hover */
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: translateY(-8px);
  /* Icon floats up */
  filter: drop-shadow(0 10px 15px rgba(181, 129, 69, 0.3));
  /* Golden glow */
}

.feature-title {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
  color: var(--gold);
}

/* --- Gallery Section Styles --- */
.gallery-section {
  background-color: var(--light);
  position: relative;
  z-index: 5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Mobile: 2 columns */
  grid-auto-rows: 200px;
  /* Mobile: row height */
  gap: 16px;
  /* Gap between images */
  grid-auto-flow: dense;
  /* THE MAGIC FIX: Fills all empty spaces */
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 columns */
    grid-auto-rows: 300px;
    /* Desktop: row height */
    gap: 20px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  /* Slight curve for premium feel */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* COMPLETELY removes white space */
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
  /* Smooth zoom */
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.4);
  /* Dark tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  color: #ffffff;
  background: rgba(181, 129, 69, 0.9);
  /* Gold background */
  padding: 12px;
  border-radius: 50%;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

/* Mosaic Layout Spans */
.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.item-tall {
  grid-column: span 1;
  grid-row: span 2;
}

@media (max-width: 767px) {
  /* Reset spans for mobile to keep it uniform and gapless */
  .item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- Lightbox Styles --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 5px;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* --- Testimonial Section Styles --- */
.testimonials-section {
  background-color: #faf9f6;
  /* Very light, warm off-white */
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-top: 4px solid var(--gold);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.quote-watermark {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 120px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
  opacity: 0.04;
  line-height: 1;
  z-index: -1;
  user-select: none;
}

.rating-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  padding: 2px;
}

/* Responsive */
@media (max-width: 1150px) {
  .gallery-grid {
    margin-top: 40px;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
  }

  .testimonial-pagination .swiper-pagination-bullet-active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 5px;
  }
}
