/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--on-primary);
  background-color: var(--primary-orange);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  /* margin-bottom: 1rem; */
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Color Variables */
:root {
  --primary-orange: #e3682c; /* Burnt Orange */
  --dark-orange: #c04a1a; /* Deep Terracotta */
  --brown: #b08968; /* Soft Mocha */
  --light-brown: #fff703; /* Golden Amber */
  --dark-brown: #2f2a26; /* Charcoal Brown2 */
  --warm-sand: #f6efe8;
  --soft-mocha: #b08968;
  --deep-terracotta: #c04a1a;
  --golden-amber: #fff703;
  --charcoal-brown: #2f1a26;
  --dark-olive: #4a5d4f;
  --charcoal-brown2: #2f2a26;
  --warm-gray: #8a817c;
  --white: #ffffff;
  --black: #000000;
  --gray: #8a817c;
  --light-gray: #f6efe8;
  --text-gray: #2f2a26;
  --on-primary: #ffffff;
  --on-primary-muted: rgba(255, 255, 255, 0.85);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  z-index: 1000;
  transition:
    background-color 0.5s ease,
    box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* Make logo white initially */
}

@media (min-width: 992px) {
  .nav-logo {
    height: 44px;
  }
}

.navbar.scrolled .nav-logo {
  filter: none; /* Restore original colors on scroll */
}

.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

@media (max-width: 952px) {
  .nav-list {
    gap: 20px;
  }
}

.nav-list a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-list a {
  color: var(--black);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  min-width: 49px; /* Ensure minimum clickable width */
  min-height: 41px; /* Ensure minimum clickable height */
  position: relative;
  z-index: 1000; /* Ensure it's above other elements */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
  pointer-events: none; /* Prevent spans from interfering with click events */
  position: relative; /* Ensure proper stacking */
}

.navbar.scrolled .hamburger span {
  background-color: var(--black);
}

.hamburger span.active:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.hamburger span.active:nth-child(2) {
  opacity: 0;
}

.hamburger span.active:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

/* Hero Section - Slider effect like Serba Antik */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), var(--slide-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 6s ease-out;
  will-change: transform;
  z-index: 0;
}

.slide.active::before {
  transform: scale(1.05);
}

.slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.slide-content.slide-content--wide {
  max-width: 1100px;
}

.slide.active .slide-content {
  animation: textFadeIn 0.9s ease-out;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.hero-title.hero-title--small {
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
}

.hero-subtitle {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-orange);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtagline {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  margin: 22px auto 0;
  color: var(--on-primary-muted);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.hero-nav-btn:hover {
  background-color: var(--white);
  color: var(--primary-orange);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Removed pill styling for cleaner look */
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--white);
}

@media (max-width: 768px) {
  .hero-nav-btn {
    width: 40px;
    height: 40px;
  }

  .hero-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }
}

/* Intro Section */
/* Section Title & Subtitle Margins */
.highlights .section-title,
.products-section .section-title,
.services-preview .section-title,
.projects .section-title,
.partnership-section .section-title,
.office .section-title {
  margin-bottom: 32px;
}

.section-title {
  margin-bottom: 32px;
}

.highlights-subtitle,
.products-subtitle,
.services-subtitle,
.section-subtitle,
.partnership-subtitle {
  margin-bottom: 48px;
}

.partnership-subtitle {
  color: var(--primary-orange);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.section-subtitle {
  color: var(--gray);
  line-height: 1.75;
}

/* Specific Adjustments */
.highlights {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url("Images/slide-02-benison.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.highlights::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--primary-orange) 0%,
    rgba(255, 107, 53, 0.7) 50%,
    rgba(255, 107, 53, 0.3) 100%
  );
  z-index: 1;
}

.highlights > .container {
  position: relative;
  z-index: 2;
}

.highlights-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.highlights-intro {
  max-width: 420px;
  padding-top: 10px;
}

.highlights-kicker {
  margin-bottom: 14px;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.82rem;
}

.highlights .section-title {
  text-align: left;
  color: var(--charcoal-brown);
}

.highlights-subtitle {
  color: var(--gray);
  line-height: 1.75;
}

.products-section {
  padding: 112px 0;
}

.services-preview {
  padding: 112px 0;
}

.projects {
  padding: 112px 0;
}

.partnership-section {
  padding: 112px 0;
}

.office {
  padding: 112px 0;
}

.highlights-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: var(--white);
  color: var(--primary-orange);
  border: 1.5px solid var(--white);
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.highlights-cta:hover {
  background-color: var(--light-gray);
  color: var(--dark-orange);
  transform: translateY(-2px);
}

.highlights-cta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: var(--light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlights-cta-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background-color: var(--white);
  padding: 24px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-icon-wrapper {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.benefit-icon-wrapper img {
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.benefit-title {
  margin: 0;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-desc {
  margin: 0;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}

.benefit-line {
  width: 25px;
  height: 2px;
  background-color: var(--primary-orange);
  margin-top: 10px;
}

/* Services Section */
.services-preview {
  padding: 112px 0;
  background-color: var(--white);
}

.services-kicker {
  text-align: center;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-preview .section-title {
  max-width: 850px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--charcoal-brown);
}

.services-subtitle {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--gray);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-gray);
  border: 1px solid color-mix(in srgb, var(--soft-mocha) 18%, transparent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
  will-change: transform;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 22px 22px 24px;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  color: var(--charcoal-brown);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--charcoal-brown2);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Products Section */
.products-section {
  padding: 112px 0;
  /* background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%); */
  background-color: var(--primary-orange);
  position: relative;
  z-index: 2;
  /* box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.08); */
}

.products-section .section-title {
  text-align: center;
  color: var(--charcoal-brown);
}

.products-subtitle {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--gray);
  line-height: 1.75;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.products-services {
  display: grid;
  gap: 16px;
}

.product-service-item {
  background-color: color-mix(in srgb, var(--white) 72%, var(--light-gray));
  border: 1px solid color-mix(in srgb, var(--soft-mocha) 18%, transparent);
  border-radius: 14px;
  padding: 20px 20px 20px 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.product-service-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--primary-orange) 14%, var(--white));
  color: var(--primary-orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-service-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--charcoal-brown);
  margin: 0 0 8px;
}

.product-service-item p {
  margin: 0;
  color: var(--charcoal-brown2);
  font-size: 0.94rem;
  line-height: 1.68;
}

.products-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  justify-self: end;
  align-self: start;
  padding: 14px;
  background-color: color-mix(in srgb, var(--white) 68%, var(--light-gray));
  border: 1px solid color-mix(in srgb, var(--soft-mocha) 20%, transparent);
  border-radius: 16px;
}

.products-photo-card {
  margin: 0;
  background-color: color-mix(in srgb, var(--white) 72%, var(--light-gray));
  border: 1px solid color-mix(in srgb, var(--soft-mocha) 18%, transparent);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.products-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.products-photo-card:hover img {
  transform: scale(1.06);
}

.products-photo-card figcaption {
  padding: 12px 12px 13px;
  color: var(--charcoal-brown2);
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
}

.intro-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 36px;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.intro-eyebrow {
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.intro-content h2 {
  color: var(--brown);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 32px;
}

.intro-description {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--text-gray);
}

.intro-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.intro-btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.intro-btn-primary:hover {
  background-color: var(--dark-orange);
  transform: translateY(-2px);
}

.intro-btn-secondary {
  border: 1.5px solid var(--primary-orange);
  color: var(--primary-orange);
  background-color: transparent;
}

.intro-btn-secondary:hover {
  background-color: rgba(227, 104, 44, 0.08);
  transform: translateY(-2px);
}

/* Business Highlights */
.about-highlights {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.highlights-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.highlights-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.highlight-item:hover::before {
  left: 100%;
}

.highlight-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.15),
    rgba(255, 255, 255, 0.95)
  );
}

.highlight-item h3 {
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Carousel */
.highlights-carousel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-orange);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-orange);
  color: var(--white);
}

/* Projects Section */
.projects {
  padding: 80px 0;
  background-color: var(--white);
}

.projects .section-title {
  text-align: center;
  color: var(--charcoal-brown);
  font-size: 2.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: scale(1.05);
}

.project-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-item:hover img {
  transform: scale(1.1);
}

/* Office Section */
.office {
  padding: 80px 0;
  background-color: var(--white);
}

.office .section-title {
  text-align: center;
  color: var(--charcoal-brown);
  font-size: 2.5rem;
}

.office-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
  height: 550px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 450px;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  border-radius: 15px;
}

.map-overlay:hover {
  opacity: 1;
  background: rgba(255, 107, 53, 0.1);
}

.map-overlay-text {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.map-overlay:hover .map-overlay-text {
  background: var(--primary-orange);
  color: white;
  transform: scale(1.05);
}

.office-info {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  width: 40%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.03);
  align-self: flex-end;
  margin-right: 50px;
  margin-bottom: 20px;
}

.office-info h3 {
  color: var(--primary-orange);
  margin-bottom: 8px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.office-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item .material-symbols-outlined {
  color: var(--primary-orange);
  font-size: 24px;
  background-color: rgba(227, 104, 44, 0.1);
  padding: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.contact-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-orange);
}

@media (max-width: 900px) {
  .office-content {
    flex-direction: column;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .map-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: -50px;
    z-index: 1;
    left: auto;
    top: auto;
  }

  .office-info {
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    align-self: center;
    margin-bottom: 0;
  }
}

@media (max-width: 430px) {
  .office-info {
    padding: 50px 10px;
  }

  .contact-item {
    gap: 8px;
  }

  #special-email {
    font-size: 0.8rem;
  }
}

/* Footer */
.footer {
  background-color: var(--charcoal-brown2);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-brand p {
  margin-bottom: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

#marbo60 {
  margin-bottom: 60px;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-subtagline {
    font-size: 1rem;
  }

  .highlights-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights-layout {
    gap: 40px;
    align-items: flex-start;
  }

  .highlights {
    padding: 86px 0 78px;
  }

  .services-preview {
    padding: 94px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .products-section {
    padding: 96px 0;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-photos {
    max-width: 560px;
    justify-self: center;
    margin: 0 auto;
  }

  .intro-content {
    padding: 36px 28px;
  }

  .office-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .slider-controls {
    gap: 15px;
    padding: 8px 15px;
    bottom: 20px;
  }

  .slider-controls button {
    font-size: 1.2rem;
    padding: 4px 8px;
  }

  .slider-dots {
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 880px) {
  .nav-menu .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 576px) {
  .nav-container {
    height: 60px;
  }

  .nav-brand h1 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-subtagline {
    font-size: 0.95rem;
  }

  .slide-content {
    padding: 40px 20px;
  }

  .hero-subheadline {
    display: block;
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .about-highlights {
    padding: 76px 0;
  }

  .highlights {
    padding: 72px 0 66px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    padding: 24px 18px;
  }

  .highlights-subtitle {
    margin-bottom: 24px;
  }

  .services-preview {
    padding: 76px 0;
  }

  .products-section {
    padding: 80px 0;
  }

  .products-subtitle {
    margin-bottom: 32px;
  }

  .product-service-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px 14px 16px 14px;
  }

  .product-service-number {
    width: 40px;
    height: 40px;
  }

  .product-service-item h3 {
    font-size: 1.1rem;
  }

  .products-photos {
    max-width: 100%;
    gap: 16px;
  }

  .products-photo-card img {
    aspect-ratio: 3 / 4;
  }

  .services-subtitle {
    margin-bottom: 28px;
  }

  .service-card {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-layout {
    gap: 22px;
  }

  .service-card img {
    height: 210px;
  }

  .service-card-content {
    padding: 16px 16px 18px;
  }

  .intro-content {
    padding: 30px 22px;
  }

  .highlight-item {
    padding: 35px 20px;
  }

  .highlight-item h3 {
    font-size: 1rem;
  }

  .carousel-slide {
    height: 300px;
  }

  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .projects {
    padding: 60px 0;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .office {
    padding: 60px 0;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .contact-item .material-symbols-outlined {
    font-size: 20px;
    padding: 8px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .slider-controls {
    gap: 12px;
    padding: 6px 12px;
    bottom: 15px;
  }

  .slider-controls button {
    font-size: 1rem;
    padding: 3px 6px;
  }

  .slider-dots {
    gap: 4px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

.marto100 {
  margin-top: 100px;
}

@media (min-width: 769px) {
  .slide-content {
    /* padding-left: 100px; */
    /* padding-right: 100px; */
  }
}

/* Hide mobile close button by default */
.mobile-menu-close {
  display: none;
}

.testimony-section {
  padding: 100px 0;
  background-color: var(--primary-orange);
  position: relative;
  overflow: hidden;
}

.testimony-bg-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.testimony-bg-element.element-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--dark-orange) 0%, transparent 70%);
  top: -250px;
  right: -100px;
  opacity: 0.4;
}

.testimony-bg-element.element-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--deep-terracotta) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -100px;
  opacity: 0.3;
}

.testimony-section .container {
  position: relative;
  z-index: 2;
}

.testimony-section .section-title {
  color: var(--on-primary);
  text-align: center;
  margin-bottom: 10px;
}

.testimony-section .section-subtitle {
  color: var(--on-primary-muted);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  max-width: 600px;
}

.testimony-content-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.testimony-text {
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: "Playfair Display", serif;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
}

.testimony-text-slides {
  position: relative;
  min-height: 250px;
}

.testimony-text-item {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimony-text-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimony-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--on-primary);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimony-author {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--golden-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimony-author::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--golden-amber);
  display: block;
}

.testimony-images {
  position: relative;
}

.testimony-images::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--golden-amber);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.testimony-image-slides {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: var(--charcoal-brown2);
  aspect-ratio: 1 / 1;
}

.testimony-image-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimony-image-item.active {
  opacity: 1;
  transform: scale(1);
}

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

.testimony-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.testimony-prev,
.testimony-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.testimony-prev:hover,
.testimony-next:hover {
  background-color: var(--white);
  color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimony-dots {
  display: inline-flex;
  gap: 12px;
}

.testimony-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimony-dots .dot.active {
  background-color: var(--golden-amber);
  transform: scale(1.3);
}

@media (max-width: 992px) {
  .testimony-content-wrapper {
    padding: 40px;
  }

  .testimony-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimony-text-slides {
    min-height: 200px;
  }

  .testimony-controls {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .testimony-content-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .testimony-quote {
    font-size: 1.1rem;
  }
}

/* Mobile Menu */
@media (max-width: 880px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu.active .nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
    gap: 30px;
  }

  .nav-menu.active .nav-list a {
    font-size: 1.2rem;
    color: var(--charcoal-brown2);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
  }

  .nav-menu.active .nav-list a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--black);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000;
  }

  .nav-menu.active .mobile-menu-close {
    display: flex;
  }

  .mobile-menu-close:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loaded {
  opacity: 1;
}

/* Prevent scrolling when mobile menu is active */
body.mobile-menu-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Product Carousel Overrides */
.products-photos.highlights-carousel {
  display: block; /* Override grid display */
  padding: 0; /* Remove padding */
  position: relative; /* Ensure relative positioning for arrows */
}

.products-photos .carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.products-photos .carousel-slide {
  min-width: 100%;
  height: auto; /* Allow content to dictate height */
}

.products-photos .products-photo-card {
  margin: 14px; /* Restore margin inside slide */
  height: auto;
}

.products-photos .carousel-prev,
.products-photos .carousel-next {
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-photos .carousel-prev {
  left: 20px;
}

.products-photos .carousel-next {
  right: 20px;
}

.products-photos .carousel-prev:hover,
.products-photos .carousel-next:hover {
  background-color: var(--primary-orange);
  color: var(--white);
}

/* Override image styles to fit */
.products-photos .carousel-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  transform: none !important; /* Disable hover scale effect */
}

/* New Section Styles */
.new-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--gray);
  line-height: 1.75;
}

/* Portfolio Tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1.5px solid color-mix(in srgb, var(--white) 50%, transparent);
  color: var(--on-primary);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: var(--white);
  color: var(--primary-orange);
  border-color: var(--white);
}

.tab-btn.active {
  background-color: var(--white);
  color: var(--primary-orange);
  border-color: var(--white);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--black) 15%, transparent);
}

/* Portfolio Grid */
.portfolio-gallery {
  min-height: 400px;
}

.portfolio-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  animation: fadeIn 0.5s ease-out;
}

.portfolio-grid.active {
  display: grid;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-caption {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--charcoal-brown);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

/* Testimonials */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  text-align: left;
}

.testimonial-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: rgba(227, 104, 44, 0.15); /* Primary orange with low opacity */
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--charcoal-brown);
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-meta {
  margin-top: auto;
}

.testimonial-author {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 4px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
}

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

@media (max-width: 768px) {
  .portfolio-tabs {
    gap: 10px;
  }

  .tab-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

/* Partnership Section */
.partnership-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
}

.partnership-section .section-title {
  text-align: center;
  color: var(--charcoal-brown);
  font-size: 2.5rem;
}

.partnership-subtitle {
  color: var(--primary-orange);
  font-size: 1.5rem;
}

.partnership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.partnership-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.partnership-item:hover {
  transform: translateY(-5px);
}

.partnership-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--primary-orange) 10%, var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-orange);
}

.partnership-icon svg {
  width: 20px;
  height: 20px;
}

.partnership-content h3 {
  color: var(--charcoal-brown2);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.partnership-content p {
  color: var(--charcoal-brown2);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.partnership-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  position: relative;
  height: 500px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-image-wrapper {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.partnership-image-wrapper:first-child {
  width: 55%;
  height: 400px;
  left: 0;
  z-index: 1;
  transform: rotate(-3deg);
  border: 8px solid var(--white);
}

.partnership-image-wrapper:last-child {
  width: 55%;
  height: 400px;
  right: 0;
  z-index: 2;
  transform: translateY(40px) rotate(3deg);
  border: 8px solid var(--white);
}

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

.partnership-image-wrapper:hover {
  z-index: 10;
  transform: scale(1.02) rotate(0);
}

.partnership-image-wrapper:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .partnership-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partnership-images {
    flex-direction: column;
    height: auto;
    margin-top: 60px;
    gap: 30px;
  }

  .partnership-image-wrapper {
    position: relative;
    width: 100% !important;
    height: 300px !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }
}

/* Collaboration Section */
.collaboration-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.collaboration-section .section-title {
  color: var(--charcoal-brown);
  margin-bottom: 10px;
}

.collaboration-section .section-subtitle {
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 50px;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.collaboration-item {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.collaboration-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-orange);
}

.collaboration-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.collaboration-item:hover img {
  transform: scale(1.05);
}

/* Shop Locations Section */
.shop-locations-section {
  padding: 100px 0;
  background-color: var(--primary-orange);
  position: relative;
  overflow: hidden;
}

.shop-locations-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dark-orange) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.shop-locations-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--deep-terracotta) 0%,
    transparent 70%
  );
  opacity: 0.3;
  pointer-events: none;
}

.shop-locations-section .section-title {
  position: relative;
  z-index: 2;
  color: var(--on-primary);
  text-align: center;
  margin-bottom: 10px;
}

.shop-locations-section .section-subtitle {
  color: var(--on-primary-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.shop-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 500px;
}

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

.shop-image-wrapper:hover img {
  transform: scale(1.05);
}

.shop-list-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.shop-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom Scrollbar for Shop List */
.shop-list-grid::-webkit-scrollbar {
  width: 6px;
}

.shop-list-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.shop-list-grid::-webkit-scrollbar-thumb {
  background: rgb(245, 177, 145);
  border-radius: 3px;
}

.shop-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background-color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--charcoal-brown);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.shop-btn:hover {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.shop-btn .material-symbols-outlined {
  color: var(--primary-orange);
  transition: color 0.3s ease;
}

.shop-btn:hover .material-symbols-outlined {
  color: var(--white);
}

.shop-btn .arrow-icon {
  display: none;
}

@media (max-width: 992px) {
  .shop-locations-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-image-wrapper {
    min-height: 300px;
    height: 300px;
  }
}

.highlights,
.services-preview,
.partnership-section {
  color: var(--on-primary);
  background: transparent;
}

.highlights .section-title,
.services-preview .section-title,
.partnership-section .section-title {
  color: var(--on-primary);
}

.highlights .highlights-subtitle,
.services-preview .services-subtitle,
.partnership-section .section-subtitle,
.partnership-section .partnership-subtitle,
.highlights .highlights-kicker {
  color: var(--on-primary-muted);
}

/* Global section theming: all sections on primary orange with readable text */
section {
  background-color: var(--primary-orange);
  color: var(--on-primary);
}

/* Make section containers transparent to show page orange */
.products-section,
.projects,
.office,
.about-highlights,
.services-preview,
.highlights,
.new-section,
.partnership-section {
  background-color: transparent !important;
  color: var(--on-primary);
}

/* Ensure titles read well on orange */
.products-section .section-title,
.projects .section-title,
.office .section-title,
.about-highlights .section-title,
.services-preview .section-title,
.highlights .section-title,
.new-section .section-title,
.partnership-section .section-title {
  color: var(--on-primary);
}

/* Muted copy on orange backgrounds */
.products-subtitle,
.section-subtitle,
.highlights-subtitle,
.services-subtitle {
  color: var(--on-primary-muted);
}

@media (max-width: 768px) {
  .highlights-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlights-intro {
    max-width: 100%;
    text-align: center;
  }
  .highlights .section-title {
    text-align: center;
  }
  .highlights-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

