/* Resets */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Poppins, sans-serif;
}

:root {
  --gold-accent: #c49a6c;
  --gold-hover: #e0b380;
  --text-white: #ffffff;
  --text-muted: #d1d5db;
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* 🌟 Full Width Hero Banner */
.hero-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;

  /* Scale Hover Effect */
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.hero-banner:hover {
  transform: scale(1.008);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(6 3 0 / 97%) 0%, rgb(20 18 16 / 88%) 45%, rgba(20, 18, 16, 0.2) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px;
  box-sizing: border-box;
  color: var(--text-white);
}

/* 📍 Breadcrumb Styling */
.breadcrumb-nav {
  margin-bottom: 16px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.breadcrumb-item a:hover {
  color: var(--gold-accent);
  transform: translateY(-1px);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  user-select: none;
}

.breadcrumb-item.active {
  color: var(--gold-accent);
  font-weight: 600;
}

/* Sub-heading & Title */
.sub-heading {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.main-heading .highlight {
  color: var(--gold-accent);
}

.description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

/* Features Grid */
.features-grid {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s var(--transition-smooth);
}

.feature-item:last-child {
  border-right: none;
  padding-right: 0;
}

.feature-item:hover {
  transform: translateY(-4px) scale(1.05);
}

.feature-item:hover .icon {
  color: var(--gold-hover);
  transform: scale(1.1);
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--gold-accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-smooth), color 0.3s ease;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

/* 📱 Responsive Adjustments */
@media (max-width: 900px) {
  .hero-banner {
    min-height: auto;
  }

  .banner-overlay {
    background: linear-gradient(180deg,
        rgba(20, 18, 16, 0.95) 0%,
        rgba(20, 18, 16, 0.85) 100%);
  }

  .banner-content {
    padding: 36px 24px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .feature-item {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .banner-content {
    padding: 28px 16px;
  }

  .main-heading {
    font-size: 1.75rem;
  }

  .breadcrumb-list {
    font-size: 0.78rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.adorn-services-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

.adorn-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adorn-card {
  background-color: #fdfbf7;
  border: 1px solid #e8e3dc;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adorn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.adorn-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
}

.adorn-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adorn-icon-badge {
  position: absolute;
  bottom: -24px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.adorn-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: #a87952;
}

.adorn-card-content {
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.adorn-card-title {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b231d;
  line-height: 1.3;
}

.adorn-card-description {
  margin: 0 0 24px 0;
  font-size: 0.925rem;
  color: #665d55;
  line-height: 1.5;
  flex-grow: 1;
}

.adorn-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #a87952;
  text-decoration: none;
  transition: color 0.2s ease;
}

.adorn-card-link:hover {
  color: #855b38;
}

.adorn-arrow {
  transition: transform 0.2s ease;
}

.adorn-card-link:hover .adorn-arrow {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .adorn-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .adorn-cards-grid {
    grid-template-columns: 1fr;
  }
}

.adorn-card {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #ffffff;

  /* Smooth scaling animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  /* Hardware acceleration */
}

/* 1. Desktop Hover Effect (only applies to devices with mouse/pointer) */
@media (hover: hover) and (pointer: fine) {
  .adorn-card:hover {
    transform: scale(1.05);
    /* Adjust scale factor as needed */
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  }
}

/* 2. Mobile / Touch Feedback (subtle scale-down on press/tap) */
.adorn-card:active {
  transform: scale(0.98);
}

/* Base styles for your badge container */
.adorn-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* Prevents gray box on mobile tap */

  /* Smooth transition for both container and icon */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

/* Ensure the SVG scales nicely inside */
.adorn-icon-badge svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

/* 1. DESKTOP HOVER (Only triggers with a mouse pointer) */
@media (hover: hover) and (pointer: fine) {
  .adorn-icon-badge:hover {
    transform: scale(1.12);
    /* Scales the badge container */
    background-color: #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  /* Optional: Extra zoom on the inner SVG icon when hovered */
  .adorn-icon-badge:hover svg {
    transform: scale(1.1);
  }
}

/* 2. MOBILE TAP / PRESS FEEDBACK */
.adorn-icon-badge:active {
  transform: scale(0.92);
  /* Subtle press-down effect */
  background-color: #cbd5e1;
  transition-duration: 0.1s;
  /* Quick response on touch */
}

/* Box Sizing Reset for Section */
.wcu-section *,
.wcu-section *::before,
.wcu-section *::after {
  box-sizing: border-box;
}

/* Section Background & Container */
.wcu-section {
  background-color: #f7f5f2;
  padding: 80px 20px;
  font-family: Poppins, sans-serif;
  color: #2b231f;
}

.wcu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Content Column */
.wcu-info {
  flex: 1;
  max-width: 380px;
}

.wcu-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a47148;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wcu-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1a1615;
}

.wcu-title span {
  color: #a47148;
}

.wcu-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 28px 0;
}

/* Button & Arrow Animation */
.wcu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #43280a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.wcu-btn:hover {
  background-color: #3b281b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.wcu-btn:hover i {
  transform: translateX(5px);
}

/* Right Feature Grid Box */
.wcu-cards-wrapper {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Individual Feature Cards */
.wcu-card {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  transition: transform 0.3s ease;
}

/* Vertical Separator Lines */
.wcu-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #eee;
}

/* Icons & Hover Effect */
.wcu-icon {
  font-size: 2.5rem;
  color: #a47148;
  margin-bottom: 18px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wcu-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1615;
}

.wcu-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Card Hover Animation */
.wcu-card:hover {
  transform: translateY(-6px);
}

.wcu-card:hover .wcu-icon {
  transform: scale(1.15) rotate(-3deg);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .wcu-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .wcu-info {
    max-width: 100%;
  }

  .wcu-cards-wrapper {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .wcu-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .wcu-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wcu-card:not(:last-child)::after {
    display: none;
  }

  .wcu-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
  }

  .wcu-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}