
/* Section */
.fashion-section {
  padding: 60px 20px;
}

/* Grid */
.fashion-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.fashion-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 420px;
  cursor: pointer;
  background: #000;
}

.fashion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
  color: #fff;
}

.overlay h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.overlay a {
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 12px 30px;
  font-size: 10px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.overlay a:hover {
  background: #000;
  color: #fff;
}

/* Hover Effect */
.fashion-card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .fashion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fashion-grid {
    grid-template-columns: 1fr;
  }

  .fashion-card {
    height: 360px;
  }
}





/* ===== DAZI SECTION ===== */
.dazi-about-section {
  width: 100%;
  background: #f9f6f1;
  padding: 0;
}

.dazi-wrapper {
  display: flex;
  min-height: 600px;
}

/* LEFT IMAGE */
.dazi-image {
  flex: 1;
  position: relative;
}

.dazi-image img {
  width: 100%;
  height: 75%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.dazi-content {
  flex: 1;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dazi-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}

.dazi-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Info */
.dazi-info {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.dazi-info h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.dazi-info p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

/* Button */
.dazi-btn {
  display: inline-block;
  width: fit-content;
  padding: 14px 40px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.dazi-btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dazi-content {
    padding: 50px;
  }
}

@media (max-width: 768px) {
  .dazi-wrapper {
    flex-direction: column;
  }

  .dazi-image {
    height: 350px;
  }

  .dazi-content {
    padding: 40px 25px;
  }

  .dazi-info {
    flex-direction: column;
    gap: 25px;
  }
}




/* ===== JUNO HERO SECTION ===== */
.juno-hero {
  width: 100%;
  height: 90vh;
  background: url("../img/homepage/glasses\ image\ -\ juno\ collection.jpg") center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark overlay */
.juno-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.juno-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.juno-small {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.juno-title {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.juno-subtitle {
  font-size: 28px;
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .juno-title {
    font-size: 48px;
  }
  .juno-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .juno-hero {
    height: 70vh;
  }

  .juno-title {
    font-size: 34px;
  }

  .juno-subtitle {
    font-size: 18px;
  }

  .juno-small {
    font-size: 12px;
  }
}




/* ===== SPECS GIFT SECTION ===== */
.specs-gift-section {
  width: 100%;
  background: #f4cf38;
  overflow: hidden;
}

.specs-wrapper {
  display: flex;
  min-height: 600px;
}

/* LEFT CONTENT */
.specs-content {
  flex: 1;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specs-content h5 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #000;
}

.specs-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.specs-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  max-width: 480px;
  margin-bottom: 30px;
}

/* Button */
.specs-btn {
  display: inline-block;
  width: fit-content;
  font-size: 14px;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.specs-btn:hover {
  opacity: 0.7;
}

/* RIGHT IMAGE */
.specs-image {
  flex: 1;
  position: relative;
}

.specs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .specs-content {
    padding: 60px 50px;
  }

  .specs-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .specs-wrapper {
    flex-direction: column;
  }

  .specs-content {
    padding: 50px 30px;
  }

  .specs-image {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .specs-content h2 {
    font-size: 30px;
  }

  .specs-content p {
    font-size: 15px;
  }
}



/* MAIN SECTION */
.product-showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND SLIDER */
.bg-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.bg-slide.active {
  opacity: 1;
}

/* FOREGROUND */
.product-layer {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
}

/* PRODUCT BOX */
.product-box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-box img {
  width: 70%;
  max-width: 450px;
  transition: transform 0.5s ease;
}

.product-box:hover img {
  transform: scale(1.05);
}

/* TEXT */
.text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
}

.text h4 {
  font-size: 22px;
  font-weight: 500;
}

.text p {
  font-size: 18px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-layer {
    flex-direction: column;
  }

  .product-box {
    width: 100%;
    height: 50vh;
  }

  .text {
    left: 20px;
    bottom: 20px;
  }
}




/* MARQUEE SECTION */
.marquee-section {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #8b0000, #000000);
  padding: 18px 0;
}

/* MARQUEE */
.marquee {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

/* TEXT TRACK */
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 18s linear infinite;
}

/* TEXT STYLE */
.marquee-track span {
  display: inline-block;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  padding-right: 50px;
}

/* ANIMATION */
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .marquee-track span {
    font-size: 16px;
    letter-spacing: 1px;
  }
}



.hero-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  border-radius: 0 0 60px 60px; /* bottom curve */
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.bg-slide.active {
  opacity: 1;
  z-index: 2;
}


/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding: 80px;
  align-items: center;
  justify-content: space-between;
}

/* TEXT AREA */
.hero-text h1 {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Highlight Fill Effect */
.hero-text h1 span {
  color: #111;
  -webkit-text-stroke: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  display: inline-block;
}

/* Subtitle */
.subtitle {
  font-size: 22px;
  margin-top: 20px;
  color: #111;
  font-weight: 500;
  background: rgba(255,255,255,0.8);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
}


/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product {
  display: none;
  text-align: center;
}

.product.active {
  display: block;
}

.product img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.badge {
  background: #1976d2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.cart-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .product-card {
    margin-top: 30px;
  }
}




.ai-gallery {
  background: radial-gradient(circle at top, #14142e, #050510);
  padding: 80px 20px;
  min-height: 100vh;
}

.ai-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

/* CARD BASE */
.grid-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER EFFECT */
.grid-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* GRID VARIATIONS */
.grid-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-card.wide {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-card.big,
  .grid-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .grid-card {
    grid-column: span 1 !important;
  }
}








.site-footer {
  background: #d7d4cd;
  padding: 70px 80px 30px;
  font-family: Arial, sans-serif;
  color: #222;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
}

/* LEFT */
.brand-name {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 6px 0;
  font-size: 15px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 15px;
  text-decoration: none;
}

/* CENTER */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RIGHT */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.subscribe-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 10px 5px;
  margin-bottom: 20px;
  outline: none;
}

.subscribe-form button {
  width: 100%;
  padding: 12px;
  background: #2f2b27;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 50px;
  text-align: right;
  font-size: 14px;
}

.footer-bottom a {
  color: #000;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    text-align: center;
  }

  .site-footer {
    padding: 50px 25px;
  }
}









.story-section {
  background: #faf7f2;
  padding: 80px 0;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

/* LEFT CONTENT */
.story-content {
  padding: 0 80px;
}

.story-content h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: #222;
  margin-bottom: 25px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 520px;
}

/* RIGHT IMAGE */
.story-image {
  position: relative;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 40px 25px;
    text-align: left;
  }

  .story-content h2 {
    font-size: 42px;
  }

  .story-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .story-content h2 {
    font-size: 34px;
  }

  .story-content p {
    font-size: 15px;
  }
}




.collection-section {
  background: #dcd9d3;
  padding: 100px 0;
}

.collection-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 0 80px;
}

/* LEFT TITLE */
.collection-title h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  color: #222;
}

/* RIGHT GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.collection-item h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}

.collection-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 300px;
}

/* ICON STYLE */
.icon {
  width: 32px;
  height: 32px;
  background: #333;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .collection-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .collection-title h2 {
    font-size: 38px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .collection-title h2 {
    font-size: 32px;
  }

  .collection-item p {
    font-size: 14px;
  }
}




.offer-section {
  background: #072b43;
  padding: 80px 0;
}

.offer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 60px;
  padding: 0 60px;
}

/* LEFT CONTENT */
.offer-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.offer-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #e4e4e4;
  max-width: 480px;
  margin-bottom: 30px;
}

.offer-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #072b43;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.offer-btn:hover {
  background: #e5e5e5;
}

/* RIGHT IMAGE */
.offer-image {
  position: relative;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .offer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-content {
    order: 2;
  }

  .offer-image {
    order: 1;
  }

  .offer-content p {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .offer-content h2 {
    font-size: 32px;
  }

  .offer-content p {
    font-size: 15px;
  }

  .offer-section {
    padding: 60px 0;
  }
}



.feature-section {
  background: url("assets/img/headphone-bg.jpg") center/cover no-repeat fixed;
  position: relative;
  padding: 120px 0;
}

.feature-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 100px 0;
}

.feature-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 0 60px;
  color: #fff;
}

.feature-item h4 {
  font-size: 18px;
  margin: 15px 0 10px;
  font-weight: 600;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-section {
    padding: 80px 0;
  }
}





.collection-section {
  padding: 80px 0;
  background: #fff;
}

.collection-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 0 60px;
}

/* CARD */
.collection-card {
  text-align: left;
}

/* IMAGE BOX */
.img-box {
  position: relative;
  padding: 12px;
}

.img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* 4-CORNER BORDER */
.img-box::before,
.img-box::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid #000;
}

.img-box::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.img-box::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* TEXT */
.collection-card h3 {
  font-size: 22px;
  margin: 25px 0 10px;
  font-weight: 500;
  color: #000;
}

.collection-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .collection-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .collection-wrapper {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }

  .img-box img {
    height: 280px;
  }
}




    /* 3D Carousel */
.carousel-wrap {
  perspective: 1400px;
  display: flex;
  justify-content: center;
}

.carousel {
  position: relative;
  width: 320px;     /* Bigger container */
  height: 320px;
  transform-style: preserve-3d;
  animation: rotate360 18s linear infinite;
}

.carousel span {
  position: absolute;
  width: 260px;     /* SAME WIDTH */
  height: 260px;    /* SAME HEIGHT */
  left: 0;
  top: 0;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 60deg)) translateZ(420px);
}

.carousel img {
  /* width: 150%;
  height: 150%; */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  max-width: 100%;
  max-height: 100%;
}

/* Rotation */
@keyframes rotate360 {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Mobile */
@media(max-width:768px){
  .carousel {
    width: 260px;
    height: 260px;
  }

  .carousel span {
    width: 200px;
    height: 200px;
    transform: rotateY(calc(var(--i) * 60deg)) translateZ(300px);
  }
}


.carousel-heading {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.carousel-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.carousel-heading p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}





/* MAIN SECTION */
.mv-section {
  padding: 80px 20px;
  background: #0f0f0f;
}

/* CONTAINER */
.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* BOX */
.mv-box {
  position: relative;
  padding: 35px 30px;
  border-radius: 16px;
  background: #141414;
  color: #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.mv-box:hover {
  transform: translateY(-6px);
}

/* Animated Border */
.mv-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(120deg, #00e5ff, #7c4dff, #00e5ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderMove 4s linear infinite;
}

/* Animation */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* TEXT */
.mv-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #00e5ff;
}

.mv-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-container {
    grid-template-columns: 1fr;
  }

  .mv-box h3 {
    font-size: 1.5rem;
  }

  .mv-box p {
    font-size: 0.95rem;
  }
}






/* ===============================
   GOOGLE REVIEWS – CREATIVE
================================ */
.gxr-section {
  padding: 90px 20px;
  background-color: #000;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #fff;
  overflow: hidden;
}

.gxr-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.gxr-header {
  text-align: center;
  margin-bottom: 50px;
}

.gxr-google-icon {
  width: 50px;
  margin-bottom: 12px;
}

.gxr-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 6px;
}

.gxr-header p {
  font-size: 15px;
  color: #aaa;
}

/* SLIDER */
.gxr-slider {
  overflow: hidden;
}

.gxr-track {
  display: flex;
  gap: 30px;
  animation: gxr-scroll 35s linear infinite;
}

/* CARD */
.gxr-card {
  min-width: 300px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.gxr-stars {
  color: #fbbc05;
  font-size: 18px;
  margin-bottom: 15px;
}

.gxr-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.gxr-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* AUTO SLIDE */
@keyframes gxr-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gxr-card {
    min-width: 260px;
  }
}

@media (max-width: 480px) {
  .gxr-card {
    min-width: 220px;
    padding: 25px 20px;
  }
}
