/* ========================================
   FONT SETUP — QUESRIAL FAMILY
   ======================================== */

/* 1. Import the font (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/* 2. Apply globally */
:root {
  --font-primary: 'Questrial', sans-serif;
}

/* 3. Universal font inheritance */
html, body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4. Apply to all text elements for consistency */
h1, h2, h3, h4, h5, h6,
p, a, span, button, input, textarea, select,
label, li, strong, em {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Optional — ensure consistent button and form look */
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

/* Optional — headings styling (optional visual tuning) */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* ========================================
   4. ANNOUNCEMENT BAR
   ======================================== */

.announcement-bar {
  /* Local Variables */
  --font-primary: 'Questrial', sans-serif;
  font-family: var(--font-primary);
  
  /* Gradient Background: 90° gold as specified */
  background: linear-gradient(90deg, 
    #B8962E 0%, 
    #D4AF37 45%, 
    #E6C35A 70%, 
    #D4AF37 85%, 
    #B8962E 100%);
  
  color: #000000; /* Black text */
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  width: 100%;
}

/* Scrolling Content */
.announcement-content {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll-seamless 20s linear infinite;
}

.announcement-content p {
  margin: 0;
  padding: 0 50px;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  color: #000000; /* Black text */
}

/* Divider Between Messages */
.announcement-content p::after {
  content: '|';
  margin-left: 50px;
  color: rgba(0, 0, 0, 0.6); /* Darker divider to match black text */
}

.announcement-content p:last-child::after {
  content: '';
}

/* Scroll Animation */
@keyframes scroll-seamless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* Hover Effect: Pause Animation */
.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}

/* ------------------------------
   Responsive Styles
------------------------------ */

/* Tablets and Mobiles */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 10px 0;
  }

  .announcement-content p {
    padding: 0 30px;
    font-size: 13px;
  }

  .announcement-content p::after {
    margin-left: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .announcement-bar {
    padding: 10px 0;
  }

  .announcement-content p {
    padding: 0 24px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .announcement-content p::after {
    margin-left: 24px;
  }
}
/* Custom Furniture Quote Section Styles */
.quote-section {
    background-color: #2A492C;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.quote-container {
    max-width: 600px;
    text-align: center;
    color: white;
}

.quote-container h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.quote-container p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 300;
}

.quote-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f5f5f0;
    color: #2A492C;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.quote-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-button svg {
    width: 18px;
    height: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .quote-container h1 {
        font-size: 2.25rem;
    }

    .quote-container p {
        font-size: 1rem;
    }

    .quote-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .quote-container h1 {
        font-size: 1.75rem;
    }
}

/* ===================================
   WHY CHOOSE AV Pro Systems SECTION STYLES
   Modern, Aesthetic & Fully Responsive
   =================================== */

/* === BASE STYLES === */
.why-choose-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Questrial', sans-serif;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* === HEADER === */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.why-choose-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.why-choose-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* === GRID === */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/* === CARDS === */
.why-choose-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2A492C, #3d6a3f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 73, 44, 0.15),
                0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

/* === ICON === */
.why-choose-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-choose-card:hover .why-choose-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2A492C, #3d6a3f);
}

.why-choose-icon {
    color: #2A492C;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    color: #ffffff;
}

/* === TEXT === */
.why-choose-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-choose-card-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

/* === ANIMATIONS === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN === */

/* Large Desktop (1200px+) */
@media screen and (min-width: 1200px) {
    .why-choose-section {
        padding: 100px 40px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Desktop (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .why-choose-section {
        padding: 80px 32px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .why-choose-section {
        padding: 60px 24px;
    }
    
    .why-choose-header {
        margin-bottom: 50px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-choose-card {
        padding: 36px 28px;
    }
    
    .why-choose-icon-wrapper {
        width: 72px;
        height: 72px;
    }
    
    .why-choose-icon {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Large (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 32px 24px;
    }
    
    .why-choose-icon-wrapper {
        width: 68px;
        height: 68px;
    }
    
    .why-choose-icon {
        width: 28px;
        height: 28px;
    }
    
    .why-choose-card-title {
        font-size: 1.25rem;
    }
    
    .why-choose-card-description {
        font-size: 0.9375rem;
    }
}

/* Mobile Small (up to 575px) */
@media screen and (max-width: 575px) {
    .why-choose-section {
        padding: 40px 16px;
    }
    
    .why-choose-header {
        margin-bottom: 36px;
    }
    
    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .why-choose-subtitle {
        font-size: 0.9375rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-choose-card {
        padding: 28px 20px;
    }
    
    .why-choose-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .why-choose-icon {
        width: 26px;
        height: 26px;
    }
    
    .why-choose-card-title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .why-choose-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* Extra Small Mobile (up to 375px) */
@media screen and (max-width: 375px) {
    .why-choose-section {
        padding: 36px 12px;
    }
    
    .why-choose-header {
        margin-bottom: 32px;
    }
    
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .why-choose-subtitle {
        font-size: 0.875rem;
    }
    
    .why-choose-card {
        padding: 24px 16px;
    }
    
    .why-choose-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .why-choose-icon {
        width: 24px;
        height: 24px;
    }
    
    .why-choose-card-title {
        font-size: 1.0625rem;
    }
    
    .why-choose-card-description {
        font-size: 0.8125rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.why-choose-card:focus-within {
    outline: 3px solid #2A492C;
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .why-choose-card {
        border: 2px solid #1a1a1a;
    }
}

/* === PRINT STYLES === */
@media print {
    .why-choose-section {
        padding: 20px;
    }
    
    .why-choose-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .why-choose-grid {
        gap: 16px;
    }
}
/* ========================================
   7. CATEGORY CAROUSEL SECTION
   ======================================== */

.category-carousel {
  /* Local Variables */
  --primary: #b58151;
  --white: #ffffff;
  --black: #000000;
  --gray: #6B7280;
  --border: #e6e6e6;
  --font-primary: 'Questrial', sans-serif;

  position: relative;
  width: 100%;
  padding: 48px 0 24px 0;
  background: var(--white);
  font-family: var(--font-primary);
}

/* Wrapper */
.category-carousel .carousel-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Horizontal Scroll Container */
#category-container.carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  padding: 8px 0 12px 0;
  justify-content: flex-start;
}

#category-container.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Category Card */
.category-item-link {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  padding: 4px;
}

/* Category Image - PERFECT CIRCLE SHAPE */
.category-icon {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
              0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category Name */
.category-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 140px;
}

/* Navigation Arrows */
.category-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-carousel .carousel-nav:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

#category-nav-prev {
  left: 20px;
}

#category-nav-next {
  right: 20px;
}

/* Disabled Arrow */
.category-carousel .carousel-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ------------------------------
   Navigation Dots
------------------------------ */

.category-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
}

.category-carousel .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5E7EB;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-carousel .carousel-dot:hover {
  background: var(--primary);
  transform: scale(1.2);
}

.category-carousel .carousel-dot.active {
  background: var(--primary);
  width: 32px;
  height: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(181, 129, 81, 0.3);
}

/* ------------------------------
   Responsive Styles
------------------------------ */

/* Tablets (768px–1023px) */
@media (max-width: 1023px) {
  .category-carousel .carousel-wrapper {
    padding: 0 40px;
  }

  .category-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
  }

  #category-container.carousel-container {
    gap: 16px;
  }

  .category-carousel .carousel-nav {
    width: 48px;
    height: 48px;
  }
}

/* Mobiles (max 767px) */
@media (max-width: 767px) {
  .category-carousel {
    padding: 24px 0 0 0;
  }

  .category-carousel .carousel-wrapper {
    padding: 0 20px;
  }

  .category-icon {
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
    max-width: 92px;
    max-height: 92px;
  }

  #category-container.carousel-container {
    gap: 12px;
  }

  .category-carousel .carousel-nav {
    display: none !important;
  }

  .category-item span {
    font-size: 0.875rem;
  }
}

/* Small Mobiles (max 480px) */
@media (max-width: 480px) {
  .category-carousel .carousel-wrapper {
    padding: 0 16px;
  }

  .category-icon {
    width: 84px;
    height: 84px;
    min-width: 84px;
    min-height: 84px;
    max-width: 84px;
    max-height: 84px;
  }

  #category-container.carousel-container {
    gap: 8px;
  }

  .category-item {
    min-width: 90px;
  }

  .category-item span {
    font-size: 0.825rem;
    max-width: 100px;
  }
}
/* ========================================
   HERO SLIDER
   Full-screen, No Borders, No Radius
   Positioned directly under header with no spacing
   Pure Black Background
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: -90px; /* Negative margin to compensate for header body padding */
    background: #000000; /* Pure black background */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px; /* Increased for full-screen feel */
    overflow: hidden;
    border-radius: 0; /* No corner radius */
    box-shadow: none; /* Remove shadow */
    background: #000000; /* Pure black background for container too */
}

.slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: block;
    background: #000000; /* Pure black fallback */
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background: #000000; /* Pure black background for slide */
}

.slide.active {
    opacity: 1;
}

/* Desktop Image - Default */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #000000; /* Pure black background for image fallback */
}

.slide .desktop-image {
    display: block;
}

.slide .mobile-image {
    display: none;
}

/* Navigation dots removed completely */

/* ========================================
   RESPONSIVE OPTIMIZATIONS
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .slider-container {
        height: 500px;
    }
    
    .hero-slider {
        margin-top: -85px; /* Adjusted for tablet header body padding */
        background: #000000; /* Pure black background */
    }
    
    .slider-container {
        background: #000000; /* Pure black background */
    }
}

/* Mobile - Switch to Mobile Images */
@media (max-width: 768px) {
    .hero-slider {
        padding: 0;
        margin: 0;
        margin-top: -75px; /* Adjusted for mobile header body padding */
        background: #000000; /* Pure black background */
    }
    
    .slider-container {
        height: 480px;
        border-radius: 0; /* No radius */
        background: #000000; /* Pure black background */
    }
    
    /* Hide desktop, show mobile images */
    .slide .desktop-image {
        display: none;
    }
    
    .slide .mobile-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background: #000000; /* Pure black background */
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-slider {
        padding: 0;
        margin-top: -70px; /* Adjusted for small mobile header body padding */
        background: #000000; /* Pure black background */
    }
    
    .slider-container {
        height: 440px;
        border-radius: 0; /* No radius */
        background: #000000; /* Pure black background */
    }
    
    .slide .mobile-image {
        object-fit: cover;
        object-position: center center;
        background: #000000; /* Pure black background */
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .slider-container {
        height: 400px;
        border-radius: 0; /* No radius */
        background: #000000; /* Pure black background */
    }
    
    .hero-slider {
        margin-top: -65px; /* Adjusted for very small mobile header body padding */
        background: #000000; /* Pure black background */
    }
}

@media (max-width: 360px) {
    .hero-slider {
        margin-top: -60px; /* Adjusted for extra small screens */
        background: #000000; /* Pure black background */
    }
    
    .slider-container {
        height: 380px;
        background: #000000; /* Pure black background */
    }
}

/* Additional fallback for image loading states */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* Pure black background while images load */
    z-index: 1;
}

.slide.active::before {
    display: none; /* Hide black overlay when image is active */
}

.slide img {
    position: relative;
    z-index: 2;
}

/* ========================================
   OPTIONAL: PORTRAIT JEWELRY OPTIMIZATION
   If mobile images are portrait-oriented
   ======================================== */
@media (max-width: 768px) {
    .slide .mobile-image.portrait-jewelry {
        object-fit: cover;
        object-position: center top;
    }
}

/* ========================================
   LOADING OPTIMIZATION
   Prevent layout shift while images load
   ======================================== */
.slide img {
    background: #f5f5f5;
}
/* Mobile - Increased Height */
@media (max-width: 768px) {
    .slider-container {
        height: 460px; /* Increased from 400px */
    }
}

/* Small Mobile - Increased Height */
@media (max-width: 576px) {
    .slider-container {
        height: 420px; /* Increased from 360px */
    }
}

/* Very Small Mobile - Increased Height */
@media (max-width: 400px) {
    .slider-container {
        height: 380px; /* Increased from 320px */
    }
}

/* ========================================
   SHOP BY COLLECTION SECTION - CAROUSEL
   ======================================== */
.shop-by-collection {
    padding: 60px 0;
    background: #ffffff;
}

/* Section Header */
.shop-by-collection .section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.shop-by-collection .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A1D1F;
    margin: 0;
}

/* ========================================
   COLLECTIONS CAROUSEL STRUCTURE
   ======================================== */
.collections-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px; /* Extra padding for external arrows */
}

.collections-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.collections-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   COLLECTION CARD
   ======================================== */
.collection-slide {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 slides per view on desktop */
    max-width: calc((100% - 48px) / 3);
}

.collection-card {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    outline: none;
    border: none;
}

/* Image Container - 1:1 Square Ratio */
.collection-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Square aspect ratio */
    background: #F8F8F8;
    overflow: hidden;
    border-radius: 16px;
    outline: none;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   NAVIGATION ARROWS
   ======================================== */
.collection-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E5E7EB;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #1A1D1F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.collection-nav-btn:hover:not(:disabled) {
    background: var(--golden-gradient, linear-gradient(90deg, #B8962E 0%, #D4AF37 45%, #E6C35A 70%, #D4AF37 85%, #B8962E 100%));
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.05);
}

.collection-nav-btn:active:not(:disabled) {
    background: #D4AF37;
    transform: translateY(-50%) scale(0.95);
}

.collection-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.collection-nav-btn.prev {
    left: -60px;
}

.collection-nav-btn.next {
    right: -60px;
}

.collection-nav-btn i {
    font-size: 18px;
}

/* ========================================
   NAVIGATION DOTS (Matching Reels Style)
   ======================================== */
.collections-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px; /* More space from collections */
    padding: 0;
}

/* Inactive Dot */
.collections-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Active Dot */
.collections-dots button.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: var(--golden-gradient, linear-gradient(90deg, #B8962E 0%, #D4AF37 45%, #E6C35A 70%, #D4AF37 85%, #B8962E 100%));
}

.collections-dots button:focus-visible {
    outline: none;
}

/* ========================================
   RESPONSIVE BEHAVIOR
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .shop-by-collection {
        padding: 48px 0;
    }

    .shop-by-collection .section-header h2 {
        font-size: 2rem;
    }

    .collections-carousel {
        padding: 0 60px; /* Less padding on tablet */
    }

    .collections-track {
        gap: 20px;
    }

    .collection-slide {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }

    .collection-nav-btn.prev {
        left: -50px;
    }

    .collection-nav-btn.next {
        right: -50px;
    }

    .collections-dots {
        gap: 10px;
        margin-top: 40px;
    }
}

/* Mobile - 2 slides per view */
@media (max-width: 768px) {
    .shop-by-collection {
        padding: 40px 0;
    }

    .shop-by-collection .section-header {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .shop-by-collection .section-header h2 {
        font-size: 1.75rem;
    }

    .collections-carousel {
        padding: 0 16px; /* Normal padding on mobile */
    }

    .collections-track {
        gap: 16px;
    }

    .collection-slide {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 slides per view */
        max-width: calc((100% - 16px) / 2);
    }

    .collection-card {
        border-radius: 12px;
    }

    .collection-image {
        border-radius: 12px;
    }

    /* Hide navigation arrows on mobile */
    .collection-nav-btn {
        display: none;
    }

    .collections-dots {
        gap: 8px;
        margin-top: 32px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .shop-by-collection .section-header h2 {
        font-size: 1.5rem;
    }

    .collections-carousel {
        padding: 0 12px;
    }

    .collections-track {
        gap: 12px;
    }

    .collection-slide {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus visible for keyboard navigation */
.collection-card:focus-visible {
    outline: none;
}

.collection-card:focus {
    outline: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .collections-track {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .collection-card {
        border: 2px solid #1A1D1F;
    }
    
    .collection-nav-btn {
        border: 2px solid #1A1D1F;
    }
}
/* ========================================
   WATCH & SHOP SECTION - INSTAGRAM REELS
   ======================================== */

.watch-shop-section {
    padding: 60px 0;
    background: #ffffff;
}

.watch-shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px; /* Extra padding for external arrows */
    position: relative;
}

/* Section Header */
.section-header-centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A1D1F;
    margin-bottom: 12px;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
}

/* ========================================
   REELS CAROUSEL STRUCTURE
   ======================================== */

.reels-carousel {
    position: relative;
    width: 100%;
}

.reels-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.reels-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   REEL SLIDE & CARD
   ======================================== */

.reel-slide {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 slides per view on desktop */
    max-width: calc((100% - 48px) / 3);
}

.reel-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ========================================
   VIDEO MEDIA CONTAINER
   ======================================== */

.reel-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* Instagram Reels aspect ratio */
    background: #000000;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    outline: none;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* No cropping - centered */
    object-position: center;
    display: block;
    background: #000000;
    outline: none;
}

/* ========================================
   PLAY/PAUSE OVERLAY BUTTON
   ======================================== */

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.video-controls.fade-out {
    opacity: 0;
}

.play-pause-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    color: #1A1D1F;
}

.play-pause-btn:active {
    transform: scale(0.95);
}

/* Icon visibility toggle */
.play-pause-btn .play-icon,
.play-pause-btn .pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.play-pause-btn .pause-icon {
    display: none;
}

.play-pause-btn.playing .play-icon {
    display: none;
}

.play-pause-btn.playing .pause-icon {
    display: flex;
}

/* ========================================
   REEL DESCRIPTION
   ======================================== */

.reel-description {
    padding: 16px;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
}

.reel-description p {
    margin: 0;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
}

/* ========================================
   NAVIGATION ARROWS
   ======================================== */

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #E5E7EB;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #1A1D1F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: #b58151;
    color: #ffffff;
    border-color: #b58151;
    transform: translateY(-50%) scale(1.05);
}

.nav-btn:active:not(:disabled) {
    background: #a67145;
    transform: translateY(-50%) scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn.prev {
    left: -60px;
}

.nav-btn.next {
    right: -60px;
}

.nav-btn i {
    font-size: 18px;
}
    

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   NAVIGATION DOTS (Testimonial Style)
   ======================================== */

.reels-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px; /* More space from reels */
    padding: 0;
}

/* Inactive Dot */
.reels-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Active Dot */
.reels-dots button.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: #b58151;
}

.reels-dots button:focus-visible {
    outline: 2px solid #b58151;
    outline-offset: 2px;
}

/* ========================================
   RESPONSIVE BEHAVIOR
   ======================================== */

/* Tablet (3 slides per view) */
@media (max-width: 1024px) {
    .watch-shop-section {
        padding: 48px 0;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .reels-track {
        gap: 20px;
    }

    .reel-slide {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }

    .nav-btn.prev {
        left: -16px;
    }

    .nav-btn.next {
        right: -16px;
    }

    .reels-dots {
        gap: 10px;
    }
}

/* Mobile (2 slides per view) */
@media (max-width: 768px) {
    .watch-shop-section {
        padding: 40px 0;
    }

    .watch-shop-container {
        padding: 0 16px; /* Normal padding on mobile */
    }

    .section-header-centered {
        margin-bottom: 32px;
    }

    .section-header-centered h2 {
        font-size: 1.75rem;
    }

    .section-header-centered p {
        font-size: 1rem;
    }

    .reels-track {
        gap: 16px;
    }

    .reel-slide {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 slides per view */
        max-width: calc((100% - 16px) / 2);
    }

    .reel-card {
        border-radius: 12px;
    }

    .reel-media {
        border-radius: 12px;
    }

    .reel-description {
        border-radius: 0 0 12px 12px;
    }

    /* Hide navigation arrows on mobile */
    .nav-btn {
        display: none;
    }

    .reels-dots {
        gap: 8px;
        margin-top: 32px;
    }

    .play-pause-btn {
        width: 44px;
        height: 44px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .section-header-centered h2 {
        font-size: 1.5rem;
    }

    .reel-description {
        padding: 12px;
        border-radius: 0 0 10px 10px;
    }

    .reel-description p {
        font-size: 0.8125rem;
    }

    .play-pause-btn {
        width: 40px;
        height: 40px;
        bottom: 16px;
    }

    .play-pause-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATION
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    /* Touch devices: show controls on tap */
    .video-controls {
        opacity: 0;
    }

    .reel-media:active .video-controls {
        opacity: 1;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus visible for keyboard navigation */
.reel-card:focus-visible {
    outline: none;
}

.reel-card:focus-within {
    outline: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .reels-track {
        transition: none;
    }

    .reel-card {
        transition: none;
    }

    .play-pause-btn {
        transition: none;
    }

    .video-controls {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .reel-card {
        border: 2px solid #1A1D1F;
    }

    .play-pause-btn {
        border: 2px solid #1A1D1F;
    }
}

/* ===================================
   FOLLOW OUR JOURNEY SECTION
   Updated with White Heading Text
   =================================== */

/* --- Main Section --- */
.follow-our-journey {
    background: #000000 !important;
    padding: 100px 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.follow-our-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 112, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 112, 21, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* --- UPDATED: White Text Heading --- */
.follow-our-journey .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.follow-our-journey .section-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff; /* WHITE TEXT */
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    /* REMOVED GRADIENT TEXT PROPERTIES */
}

/* Orange underline - keep this */
.follow-our-journey .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F97015, transparent);
    border-radius: 2px;
}

.follow-our-journey .section-header p {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 30px auto 0;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* --- Image Grid --- */
.follow-our-journey .image-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto 40px;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 15px 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Image Items - Glassmorphism Cards */
.follow-our-journey .image-item {
    width: 250px;
    height: 250px;
    border-radius: 35px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.follow-our-journey .image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.follow-our-journey .image-item:hover::before {
    left: 100%;
}

.follow-our-journey .image-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(249, 112, 21, 0.3);
    box-shadow: 
        0 25px 60px rgba(249, 112, 21, 0.15),
        0 0 0 1px rgba(249, 112, 21, 0.1);
}

.follow-our-journey .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.follow-our-journey .image-item:hover img {
    transform: scale(1.05);
}

/* Orange glow overlay on hover */
.follow-our-journey .image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(249, 112, 21, 0.1) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.follow-our-journey .image-item:hover::after {
    opacity: 1;
}

/* --- Social Buttons --- */
.follow-our-journey .social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.follow-our-journey .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    white-space: nowrap;
    min-width: max-content;
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.follow-our-journey .social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.follow-our-journey .social-button:hover::before {
    left: 100%;
}

.follow-our-journey .social-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.follow-our-journey .social-button:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Instagram Button - Original Colors */
.follow-our-journey .social-button.instagram {
    background: linear-gradient(45deg, 
        #f09433 0%, 
        #e6683c 25%, 
        #dc2743 50%, 
        #cc2366 75%, 
        #bc1888 100%
    );
    color: #fff;
    padding: 14px 26px;
}

.follow-our-journey .social-button.instagram:hover {
    background: linear-gradient(45deg, 
        #ffa947 0%, 
        #ff7a4c 25%, 
        #ff3854 50%, 
        #ff2a6e 75%, 
        #d61d8a 100%
    );
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(220, 39, 67, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Facebook Button - Original Colors */
.follow-our-journey .social-button.facebook {
    background: #1877F2;
    color: #fff;
    padding: 14px 26px;
}

.follow-our-journey .social-button.facebook:hover {
    background: #166FE5;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(24, 119, 242, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .follow-our-journey {
        padding: 80px 20px;
        margin: 50px 0;
    }
    
    .follow-our-journey .section-header h2 {
        font-size: 2.8rem;
    }
    
    .follow-our-journey .section-header p {
        font-size: 1.1rem;
    }
    
    .follow-our-journey .image-grid {
        max-width: 1000px;
        gap: 20px;
        padding: 15px 30px;
    }
    
    .follow-our-journey .image-item {
        width: 200px;
        height: 200px;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .follow-our-journey {
        padding: 80px 16px;
        margin: 40px 0;
    }
    
    .follow-our-journey .section-header {
        margin-bottom: 50px;
    }
    
    .follow-our-journey .section-header h2 {
        font-size: 2.4rem;
    }
    
    .follow-our-journey .section-header p {
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .follow-our-journey .image-grid {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 18px;
        padding: 15px 25px;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    
    .follow-our-journey .image-grid::-webkit-scrollbar {
        display: none;
    }
    
    .follow-our-journey .image-item {
        width: 180px;
        height: 180px;
        border-radius: 25px;
    }
    
    .follow-our-journey .social-buttons {
        gap: 15px;
        margin-top: 30px;
    }
    
    .follow-our-journey .social-button {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
    
    .follow-our-journey .social-button i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .follow-our-journey {
        padding: 50px 12px;
        margin: 30px 0;
    }
    
    .follow-our-journey .section-header h2 {
        font-size: 2rem;
    }
    
    .follow-our-journey .section-header p {
        font-size: 1rem;
    }
    
    .follow-our-journey .image-grid {
        gap: 15px;
        padding: 15px 20px;
    }
    
    .follow-our-journey .image-item {
        width: 160px;
        height: 160px;
        border-radius: 22px;
    }
    
    .follow-our-journey .social-buttons {
        gap: 12px;
        margin-top: 25px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .follow-our-journey .social-button {
        padding: 11px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
}

@media (max-width: 360px) {
    .follow-our-journey .image-item {
        width: 140px;
        height: 140px;
        border-radius: 20px;
    }
    
    .follow-our-journey .section-header h2 {
        font-size: 1.6rem;
    }
    
    .follow-our-journey .social-button {
        padding: 10px 18px;
        font-size: 0.88rem;
        min-width: 130px;
    }
}

/* ===============================
   STEAL DEAL OFFERS SECTION CSS
   =============================== */

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #b58151;
  --dot-inactive: #E5E7EB;
  --card-radius: 16px;
  --card-radius-large: 24px;
  --surface: #ffffff;
  --dot-size: 12px;
  --dot-active-width: 32px;
  --dot-height: 12px;
}

/* ===== VISUALLY HIDDEN HELPER ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== BASE SECTION STRUCTURE ===== */
.steal-deal-section {
  background-color: #ffffff; /* WHITE BACKGROUND */
  padding: 2rem 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.steal-deal-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1rem;
}

.steal-deal-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

/* ===== SLIDER WRAPPER ===== */
.steal-deal-slider-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

/* ===== VIEWPORT - CRITICAL FOR PROPER CONTAINMENT ===== */
.steal-deal-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: var(--surface);
}

/* ===== TRACK - HOLDS ALL SLIDES ===== */
.steal-deal-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}

/* ===== SLIDE STYLES - CONSISTENT RATIO ===== */
.steal-deal-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* SAME RATIO FOR ALL VIEWS */
}

.steal-deal-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* ===== IMAGE STYLES - PROPERLY CONTAINED ===== */
.steal-deal-desktop-image,
.steal-deal-mobile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover to fill container */
  object-position: center;
  display: block;
}

.steal-deal-desktop-image {
  display: none;
}

.steal-deal-mobile-image {
  display: block;
}

/* ===== NAVIGATION BUTTONS ===== */
.steal-deal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #E5E7EB;
  cursor: pointer;
  display: none; /* Hidden on mobile by default */
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #1A1D1F;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.steal-deal-nav:hover:not(:disabled) {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(181, 129, 81, 0.3);
}

.steal-deal-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.steal-deal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.steal-deal-prev {
  left: 10px;
}

.steal-deal-next {
  right: 10px;
}

.steal-deal-nav i {
  font-size: 20px;
}

/* ===== DOTS NAVIGATION ===== */
.steal-deal-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 0;
}

.steal-deal-dot {
  width: var(--dot-size);
  height: var(--dot-height);
  background-color: var(--dot-inactive);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}

.steal-deal-dot.active {
  width: var(--dot-active-width);
  background-color: var(--accent);
  border-radius: 6px;
}

.steal-deal-dot:hover:not(.active) {
  background-color: #D1D5DB;
}

.steal-deal-dot:focus-visible {
  outline: 3px solid rgba(181, 129, 81, 0.3);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Mobile Portrait (< 480px) */
@media (max-width: 479px) {
  .steal-deal-section {
    padding: 1.5rem 0;
  }
  
  .steal-deal-container {
    padding: 0 0.75rem;
  }
  
  .steal-deal-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .steal-deal-viewport {
    border-radius: 12px;
  }
  
  .steal-deal-slide {
    aspect-ratio: 16 / 9; /* SAME 16:9 RATIO */
  }
}

/* Mobile Landscape & Tablet (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .steal-deal-viewport {
    border-radius: 16px;
  }
  
  .steal-deal-slide {
    aspect-ratio: 16 / 9; /* SAME 16:9 RATIO */
  }
}

/* Tablet styles (≥ 768px) */
@media (min-width: 768px) {
  .steal-deal-section {
    padding: 3rem 0;
  }
  
  .steal-deal-container {
    padding: 0 2rem;
  }
  
  .steal-deal-slider-wrapper {
    padding: 0 60px; /* Space for nav buttons */
  }
  
  .steal-deal-viewport {
    border-radius: var(--card-radius-large);
  }
  
  .steal-deal-slide {
    aspect-ratio: 16 / 9; /* SAME 16:9 RATIO */
  }
  
  .steal-deal-desktop-image {
    display: block;
  }
  
  .steal-deal-mobile-image {
    display: none;
  }
  
  /* Show navigation buttons on tablet and up */
  .steal-deal-nav {
    display: flex;
  }
  
  .steal-deal-dots {
    margin-top: 2rem;
    gap: 10px;
  }
}

/* Desktop styles (≥ 992px) */
@media (min-width: 992px) {
  .steal-deal-slide {
    aspect-ratio: 16 / 9; /* SAME 16:9 RATIO */
  }
  
  .steal-deal-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .steal-deal-slider-wrapper {
    padding: 0 70px;
  }
}

/* Large desktop styles (≥ 1200px) */
@media (min-width: 1200px) {
  .steal-deal-slider-wrapper {
    padding: 0 80px;
  }
  
  .steal-deal-prev {
    left: 10px;
  }
  
  .steal-deal-next {
    right: 10px;
  }
  
  .steal-deal-slide {
    aspect-ratio: 16 / 9; /* SAME 16:9 RATIO */
  }
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
  .steal-deal-slide::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 ratio fallback */
  }
  
  .steal-deal-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .steal-deal-track {
    transition: none;
  }
  
  .steal-deal-nav {
    transition: none;
  }
  
  .steal-deal-dot {
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .steal-deal-viewport {
    border: 2px solid #1A1D1F;
  }
  
  .steal-deal-nav {
    border: 2px solid #1A1D1F;
  }
}


/* ================================
   FAQ SECTION - Black Glassmorphism Theme
   Premium iOS Glassmorphism Design
   Orange Accent Color: #F97015
   League Spartan Font
   Pill Shaped + Sleek Borders
================================ */

:root {
  --faq-primary: #F97015;
  --faq-primary-light: #FF8E53;
  --faq-primary-rgba-10: rgba(249, 112, 21, 0.1);
  --faq-primary-rgba-20: rgba(249, 112, 21, 0.2);
  --faq-primary-rgba-30: rgba(249, 112, 21, 0.3);
  --faq-open-bg: rgba(249, 112, 21, 0.08);
  --faq-open-bg-hover: rgba(249, 112, 21, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Section */
.faq-section {
    padding: 100px 20px 80px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 112, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 112, 21, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F97015, transparent);
    border-radius: 2px;
}

.faq-header p {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 30px auto 0;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* Items wrapper */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Single item - Glassmorphism Design */
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid var(--glass-border); /* Sleek thin border */
    border-radius: 50px; /* Perfect pill shape */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        var(--glass-shadow),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Active / opened item */
.faq-item.active {
    border-color: rgba(249, 112, 21, 0.25); /* Thinner orange border */
    box-shadow: 
        0 20px 45px rgba(249, 112, 21, 0.15),
        0 0 0 1px rgba(249, 112, 21, 0.15), /* Thinner glow */
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Question row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px; /* Pill shape for question area */
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Opened question uses orange tint */
.faq-item.active .faq-question {
    background: var(--faq-open-bg);
    border-radius: 50px 50px 0 0; /* Keep top corners pill-shaped */
}

.faq-item.active .faq-question:hover {
    background: var(--faq-open-bg-hover);
}

/* Question text */
.faq-question-text {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    padding-right: 30px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Icon circle - Orange Glassmorphism */
.faq-icon {
    width: 40px; /* Slightly smaller */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.2), rgba(255, 142, 83, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #F97015, #FF8E53);
    border-color: rgba(255, 255, 255, 0.15);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    opacity: 1;
}

.faq-icon i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-icon i {
    color: #ffffff;
}

/* Collapsible answer area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Answer content */
.faq-answer-content {
    font-family: 'League Spartan', sans-serif;
    padding: 0 32px 28px;
    color: rgba(255, 255, 255, 0.85);
    border-top: 0.5px solid rgba(255, 255, 255, 0.05); /* Thinner divider */
    padding-top: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.15px;
}

.faq-answer-content p {
    margin-bottom: 14px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* "Still Have Questions?" CTA — Glassmorphism Design */
.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 56px 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border-radius: 40px; /* Slightly pill-shaped CTA */
    border: 1px solid var(--glass-border); /* Thin border */
    box-shadow: 
        var(--glass-shadow),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5px; /* Very thin line */
    background: linear-gradient(90deg, 
        transparent, 
        rgba(249, 112, 21, 0.4), 
        transparent
    );
}

/* CTA text */
.faq-cta h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.faq-cta p {
    font-family: 'League Spartan', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.05rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.15px;
}

/* CTA button - Orange Gradient */
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #F97015 0%, #FF8E53 100%);
    color: #ffffff;
    border-radius: 50px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 25px rgba(249, 112, 21, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

.faq-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF8E53 0%, #F97015 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-cta-btn span {
    position: relative;
    z-index: 1;
}

.faq-cta-btn i {
    font-size: 17px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 35px rgba(249, 112, 21, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-cta-btn:hover::before {
    opacity: 1;
}

.faq-cta-btn:hover i {
    transform: translateX(4px);
}

/* Focus / accessibility */
.faq-question:focus {
    outline: 2px solid rgba(249, 112, 21, 0.3); /* Thinner outline */
    outline-offset: 2px;
    border-radius: 50px; /* Pill shape */
}

.faq-cta-btn:focus {
    outline: 2px solid rgba(249, 112, 21, 0.5); /* Thinner outline */
    outline-offset: 3px;
    border-radius: 50px;
}

/* FAQ item counter */
.faq-item {
    counter-increment: faq-counter;
    position: relative;
}

.faq-item::before {
    content: counter(faq-counter, decimal-leading-zero);
    position: absolute;
    top: 26px;
    left: 32px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(249, 112, 21, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding-left: 60px;
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

/* Sleek hover effect for entire FAQ item */
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .faq-container { 
        padding: 0 30px;
        max-width: 900px;
    }
    
    .faq-header h1 {
        font-size: 2.8rem;
    }
    
    .faq-question-text {
        font-size: 1.15rem;
    }
    
    .faq-item {
        border-radius: 45px; /* Slightly smaller pill shape */
    }
    
    .faq-question {
        border-radius: 45px;
    }
    
    .faq-item.active .faq-question {
        border-radius: 45px 45px 0 0;
    }
}

@media (max-width: 768px) {
    .faq-section { 
        padding: 80px 16px 60px;
    }

    .faq-header { 
        margin-bottom: 50px;
    }

    .faq-header h1 { 
        font-size: 2.4rem;
    }

    .faq-header p { 
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .faq-item { 
        border-radius: 40px;
        border-width: 0.75px; /* Even thinner on mobile */
    }

    .faq-question { 
        padding: 22px 26px;
        padding-left: 52px;
        border-radius: 40px;
    }
    
    .faq-item.active .faq-question {
        border-radius: 40px 40px 0 0;
    }

    .faq-question-text { 
        font-size: 1.05rem;
        padding-right: 20px;
    }

    .faq-icon { 
        width: 36px; 
        height: 36px;
    }
    
    .faq-icon i {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 26px 24px;
        padding-top: 22px;
        font-size: 0.98rem;
        border-top-width: 0.5px;
    }
    
    .faq-item::before {
        top: 22px;
        left: 26px;
        font-size: 0.8rem;
    }

    /* CTA adjustments */
    .faq-cta { 
        padding: 48px 36px; 
        border-radius: 35px;
        margin-top: 60px;
        border-width: 0.75px;
    }
    
    .faq-cta h3 { 
        font-size: 1.9rem;
    }
    
    .faq-cta p { 
        font-size: 1rem;
    }
    
    .faq-cta-btn {
        padding: 15px 38px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .faq-item {
        border-radius: 35px;
    }
    
    .faq-question {
        border-radius: 35px;
        padding-left: 48px;
    }
    
    .faq-item.active .faq-question {
        border-radius: 35px 35px 0 0;
    }
    
    .faq-item::before {
        left: 24px;
        font-size: 0.75rem;
        top: 21px;
    }
    
    .faq-cta {
        border-radius: 30px;
        padding: 42px 30px;
    }
}

@media (max-width: 480px) {
    .faq-header h1 { 
        font-size: 2rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }

    .faq-item {
        border-radius: 30px;
        border-width: 0.5px; /* Ultra thin on mobile */
    }
    
    .faq-question {
        padding: 20px 22px;
        padding-left: 44px;
        border-radius: 30px;
    }
    
    .faq-item.active .faq-question {
        border-radius: 30px 30px 0 0;
    }
    
    .faq-question-text {
        font-size: 1rem;
        padding-right: 16px;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
    }
    
    .faq-icon i {
        font-size: 13px;
    }
    
    .faq-item::before {
        top: 20px;
        left: 22px;
        font-size: 0.7rem;
    }

    .faq-cta { 
        padding: 36px 26px; 
        border-radius: 25px;
        margin-top: 50px;
    }
    
    .faq-cta h3 { 
        font-size: 1.7rem;
        margin-bottom: 16px;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }
    
    .faq-cta-btn {
        padding: 14px 32px;
        font-size: 0.98rem;
        width: 100%;
        max-width: 300px;
    }
    
    .faq-answer-content {
        padding: 0 22px 20px;
        padding-top: 20px;
        font-size: 0.95rem;
        border-top-width: 0.5px;
    }
}

@media (max-width: 360px) {
    .faq-item {
        border-radius: 25px;
    }
    
    .faq-question {
        padding: 18px 20px;
        padding-left: 40px;
        border-radius: 25px;
    }
    
    .faq-item.active .faq-question {
        border-radius: 25px 25px 0 0;
    }
    
    .faq-item::before {
        left: 20px;
        top: 18px;
    }
    
    .faq-cta {
        padding: 32px 22px;
        border-radius: 22px;
    }
    
    .faq-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
/* ========================================
   7. CATEGORY CAROUSEL SECTION - FIXED
   ======================================== */

.category-carousel {
  /* Local Variables */
  --primary: #b58151;
  --white: #ffffff;
  --black: #000000;
  --gray: #6B7280;
  --border: #e6e6e6;
  --font-primary: 'Questrial', sans-serif;

  position: relative;
  width: 100%;
  padding: 48px 0 24px 0;
  background: var(--white);
  font-family: var(--font-primary);
}

/* Wrapper */
.category-carousel .carousel-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Horizontal Scroll Container */
#category-container.carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  padding: 8px 0 12px 0;
  justify-content: flex-start;
}

#category-container.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Category Card */
.category-item-link {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  padding: 4px;
}

/* Category Image - PERFECT CIRCLE SHAPE - FIXED */
.category-icon {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  max-width: 120px !important;
  max-height: 120px !important;
  border-radius: 50% !important;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
              0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1 !important;
  flex-shrink: 0;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category Name */
.category-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 140px;
}

/* Navigation Arrows - GRADIENT STYLE */
.category-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(90deg, #B8962E 0%, #D4AF37 45%, #E6C35A 70%, #D4AF37 85%, #B8962E 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-carousel .carousel-nav:hover {
  background: linear-gradient(90deg, #A07E28 0%, #C19E31 45%, #D4B04E 70%, #C19E31 85%, #A07E28 100%);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.category-carousel .carousel-nav:active {
  transform: translateY(-50%) scale(0.98);
}

#category-nav-prev {
  left: 20px;
}

#category-nav-next {
  right: 20px;
}

/* Disabled Arrow */
.category-carousel .carousel-nav.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* Navigation Arrow Icons */
.category-carousel .carousel-nav i {
  font-size: 18px;
  color: #ffffff;
}

/* ------------------------------
   Navigation Dots
------------------------------ */

.category-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
}

.category-carousel .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5E7EB;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-carousel .carousel-dot:hover {
  background: var(--primary);
  transform: scale(1.2);
}

.category-carousel .carousel-dot.active {
  background: var(--primary);
  width: 32px;
  height: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(181, 129, 81, 0.3);
}

/* ------------------------------
   Responsive Styles
------------------------------ */

/* Tablets (768px–1023px) */
@media (max-width: 1023px) {
  .category-carousel .carousel-wrapper {
    padding: 0 40px;
  }

  .category-icon {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
  }

  #category-container.carousel-container {
    gap: 16px;
  }

  .category-carousel .carousel-nav {
    width: 48px;
    height: 48px;
  }
}

/* Mobiles (max 767px) */
@media (max-width: 767px) {
  .category-carousel {
    padding: 24px 0 0 0;
  }

  .category-carousel .carousel-wrapper {
    padding: 0 20px;
  }

  .category-icon {
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    min-height: 92px !important;
    max-width: 92px !important;
    max-height: 92px !important;
  }

  #category-container.carousel-container {
    gap: 12px;
  }

  .category-carousel .carousel-nav {
    display: none !important;
  }

  .category-item span {
    font-size: 0.875rem;
  }
}

/* Small Mobiles (max 480px) */
@media (max-width: 480px) {
  .category-carousel .carousel-wrapper {
    padding: 0 16px;
  }

  .category-icon {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    min-height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
  }

  #category-container.carousel-container {
    gap: 8px;
  }

  .category-item {
    min-width: 90px;
  }

  .category-item span {
    font-size: 0.825rem;
    max-width: 100px;
  }
}

/* ========================================
   TRUST BADGES SECTION - PERFECT 1:1 RATIO
   ======================================== */

/* Section Container */
.trust-badges-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout - Perfect Equal Spacing */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Individual Trust Badge - Perfect 1:1 Square */
.trust-badge {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
}

/* Icon Wrapper */
.badge-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.badge-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Colorful Icon Backgrounds */
.badge-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.badge-icon-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.badge-icon-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.badge-icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.badge-icon svg {
    width: 36px;
    height: 36px;
}

/* Content */
.badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.badge-title {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.badge-description {
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets */
@media (max-width: 1024px) {
    .trust-badges-section {
        padding: 60px 0;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-badge {
        padding: 20px;
        border-radius: 16px;
    }

    .badge-icon {
        width: 64px;
        height: 64px;
    }

    .badge-icon svg {
        width: 32px;
        height: 32px;
    }

    .badge-icon-wrapper {
        margin-bottom: 16px;
    }

    .badge-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .badge-description {
        font-size: 12px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .trust-badges-section {
        padding: 50px 0;
    }

    .trust-badges-container {
        padding: 0 16px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-badge {
        padding: 20px;
        border-radius: 14px;
    }

    .badge-icon {
        width: 56px;
        height: 56px;
    }

    .badge-icon svg {
        width: 28px;
        height: 28px;
    }

    .badge-icon-wrapper {
        margin-bottom: 14px;
    }

    .badge-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .badge-description {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Mobile - 2 Cards Side by Side - Perfect 1:1 */
@media (max-width: 480px) {
    .trust-badges-section {
        padding: 40px 0;
    }

    .trust-badges-container {
        padding: 0 16px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-badge {
        padding: 16px;
        border-radius: 12px;
    }

    .badge-icon {
        width: 48px;
        height: 48px;
    }

    .badge-icon svg {
        width: 24px;
        height: 24px;
    }

    .badge-icon-wrapper {
        margin-bottom: 12px;
    }

    .badge-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .badge-description {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .trust-badges-grid {
        gap: 10px;
    }

    .trust-badge {
        padding: 14px;
    }

    .badge-icon {
        width: 44px;
        height: 44px;
    }

    .badge-icon svg {
        width: 22px;
        height: 22px;
    }

    .badge-icon-wrapper {
        margin-bottom: 10px;
    }

    .badge-title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .badge-description {
        font-size: 9px;
    }
}
/* ===================================
   SECTION HEADER – FAQ STYLE HEADING
   Matches: White text + short orange underline
   =================================== */

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0;
    font-family: 'League Spartan', sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

/* Orange underline */
.section-header-center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;              /* underline length */
    height: 4px;              /* underline thickness */
    background-color: #F97015;
    border-radius: 2px;
}

/* Optional subtitle text */
.section-header-center p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'League Spartan', sans-serif;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}
/* ===================================
   TESTIMONIALS SECTION STYLES
   Updated to match white heading style
   =================================== */

/* Main Section Container */
.testimonials-section {
    padding: 100px 20px;
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- UPDATED: Section Header - White Text with Orange Underline --- */
.section-header-center {
    text-align: center;
    margin-bottom: 70px; /* Match FAQ and Follow Our Journey */
    position: relative;
}

.section-header-center h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3.2rem; /* Match FAQ font-size */
    font-weight: 700; /* Match FAQ font-weight (700 not 800) */
    color: #FFFFFF; /* WHITE TEXT - No gradient */
    margin-bottom: 20px; /* Match FAQ margin-bottom */
    letter-spacing: -0.5px; /* Match FAQ letter-spacing */
    position: relative;
    display: inline-block;
    /* REMOVED GRADIENT TEXT PROPERTIES */
}

.section-header-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Match FAQ position */
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Match FAQ width */
    height: 3px; /* Match FAQ height */
    background: linear-gradient(90deg, transparent, #F97015, transparent); /* Match FAQ gradient */
    border-radius: 2px; /* Match FAQ border-radius */
}

.section-header-center p {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem; /* Match FAQ font-size */
    color: rgba(255, 255, 255, 0.8); /* Match FAQ color opacity */
    max-width: 700px; /* Match FAQ max-width */
    margin: 30px auto 0; /* Match FAQ margin */
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px; /* Match FAQ letter-spacing */
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    height: 450px;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Individual Slide */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    height: 100%;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 2;
}

/* Testimonial Card - Glassmorphism */
.testimonial-card-front {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.testimonial-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.testimonial-card-front:hover::before {
    left: 100%;
}

.testimonial-card-front:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 112, 21, 0.3);
    transform: translateY(-10px);
    box-shadow: 
        0 25px 80px rgba(249, 112, 21, 0.15),
        0 0 0 1px rgba(249, 112, 21, 0.1);
}

/* Quote Icon - Orange */
.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.9), rgba(249, 112, 21, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(249, 112, 21, 0.4);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Rating */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 30px;
    position: relative;
    z-index: 2;
}

.testimonial-rating .fa-star {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.testimonial-rating .fa-star.filled {
    color: #F97015;
    filter: drop-shadow(0 0 8px rgba(249, 112, 21, 0.6));
}

.testimonial-rating .fa-star.filled:hover {
    transform: scale(1.2) rotate(10deg);
}

.testimonial-rating .fa-star.empty {
    color: rgba(255, 255, 255, 0.2);
}

/* Review Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 35px 0;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 30px;
    z-index: 2;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: rgba(249, 112, 21, 0.5);
    font-size: 2.5rem;
    font-weight: 900;
    position: absolute;
    font-family: Georgia, serif;
    opacity: 0.7;
}

.testimonial-text::before {
    left: 5px;
    top: -15px;
}

.testimonial-text::after {
    right: 5px;
    transform: rotate(180deg);
    bottom: -20px;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.author-photo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F97015;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.author-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #F97015, transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.testimonial-card-front:hover .author-photo {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(249, 112, 21, 0.4);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.5px;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}

.author-location i {
    color: #F97015;
    font-size: 0.85rem;
}

/* Navigation Arrows - Orange */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.9), rgba(249, 112, 21, 0.6));
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 15px 40px rgba(249, 112, 21, 0.4),
        0 0 20px rgba(249, 112, 21, 0.3);
}

.testimonial-prev {
    left: -80px;
}

.testimonial-next {
    right: -80px;
}

.testimonial-nav i {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.testimonial-nav:hover i {
    transform: scale(1.2);
}

.testimonial-prev:hover i {
    transform: translateX(-3px) scale(1.2);
}

.testimonial-next:hover i {
    transform: translateX(3px) scale(1.2);
}

/* Dots - Orange */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(249, 112, 21, 0.3), 
        transparent
    );
    transition: left 0.6s ease;
}

.testimonial-dot:hover::before {
    left: 100%;
}

.testimonial-dot:hover {
    background: rgba(249, 112, 21, 0.4);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(249, 112, 21, 0.3);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, #F97015, rgba(249, 112, 21, 0.8));
    width: 32px;
    border-radius: 6px;
    box-shadow: 
        0 2px 8px rgba(249, 112, 21, 0.4),
        0 0 0 2px rgba(249, 112, 21, 0.1);
}

/* Particle Background Effect */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 112, 21, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 112, 21, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 20px;
    }
    
    .section-header-center h2 {
        font-size: 2.8rem; /* Match FAQ responsive */
    }
    
    .section-header-center p {
        font-size: 1.1rem; /* Match FAQ responsive */
    }
    
    .testimonial-prev {
        left: 20px;
    }
    
    .testimonial-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 16px;
    }

    .section-header-center {
        margin-bottom: 50px; /* Match FAQ mobile */
    }
    
    .section-header-center h2 {
        font-size: 2.4rem; /* Match FAQ mobile */
    }
    
    .section-header-center p {
        font-size: 1.1rem; /* Match FAQ mobile */
        margin-top: 20px; /* Match FAQ mobile */
    }

    .testimonials-carousel-wrapper {
        height: 480px;
        margin-bottom: 40px;
    }

    .testimonial-card-front {
        padding: 60px 30px 40px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .author-photo {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-prev {
        left: 15px;
    }
    
    .testimonial-next {
        right: 15px;
    }
    
    .quote-icon {
        top: -20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .testimonial-prev,
    .testimonial-next {
        display: none;
    }
    
    .testimonials-carousel-wrapper {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 12px;
    }

    .section-header-center h2 {
        font-size: 2rem; /* Match FAQ small mobile */
    }
    
    .section-header-center p {
        font-size: 1rem; /* Match FAQ small mobile */
    }

    .testimonials-carousel-wrapper {
        height: 550px;
    }

    .testimonial-card-front {
        padding: 55px 25px 35px;
        border-radius: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-location {
        justify-content: center;
    }
    
    .quote-icon {
        top: -20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        width: 25px;
    }
}

@media (max-width: 375px) {
    .testimonials-carousel-wrapper {
        height: 580px;
    }
    
    .testimonial-card-front {
        padding: 50px 20px 30px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .section-header-center h2 {
        font-size: 1.6rem;
    }
    
    .quote-icon {
        top: -18px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ============================================
   HERO SLIDER - NEW DESIGN CSS
   ADD THIS TO YOUR <style> TAG IN <head> SECTION
   (Around line 250-350 where your other styles are)
   ============================================ */

/* Hero Slider Container */
.hero-slider-new {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Hero Slide */
.hero-slide-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-new.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left align on desktop */
    min-height: 100vh;
    padding-bottom: 120px; /* Move content more upwards */
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Label */
.hero-label {
    display: inline-block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F97015;
    background: rgba(249, 112, 21, 0.12);
    border: 1px solid rgba(249, 112, 21, 0.35);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out 0.2s both;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Main Heading */
.hero-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
}

.hero-highlight {
    color: #F97015;
    font-weight: 900; /* Same thickness as white text */
}

/* Description */
.hero-description {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-btn:hover::before {
    opacity: 1;
}

/* Primary Button (Orange) */
.hero-btn-primary {
    background: #F97015;
    color: #FFFFFF;
    box-shadow: 0 10px 35px rgba(249, 112, 21, 0.45);
}

.hero-btn-primary:hover {
    background: #ff7d2b;
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(249, 112, 21, 0.65);
}

/* Secondary Button (Glassmorphism) */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1.2s ease-out 1s both, bounce 2s ease-in-out 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.8rem;
    color: #F97015;
    filter: drop-shadow(0 2px 8px rgba(249, 112, 21, 0.4));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .hero-content-wrapper {
        padding-bottom: 140px; /* Move content more upwards */
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1599px) {
    .hero-content-wrapper {
        padding: 0 50px;
        padding-bottom: 120px; /* Move content more upwards */
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Tablet Landscape */
@media (min-width: 969px) and (max-width: 1199px) {
    .hero-content-wrapper {
        padding: 0 40px;
        padding-bottom: 100px; /* Move content more upwards */
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        padding: 18px 45px;
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .hero-slider-new {
        min-height: 650px;
    }
    
    .hero-content-wrapper {
        padding: 0 35px;
        padding-bottom: 60px; /* Move content upwards */
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        gap: 16px;
    }
    
    .hero-btn {
        padding: 17px 42px;
        font-size: 0.98rem;
    }
}

/* Mobile Large (Portrait) */
@media (max-width: 768px) {
    .hero-slider-new {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: 0 24px;
        padding-bottom: 100px; /* Move content upwards */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-label {
        font-size: 0.8rem;
        letter-spacing: 2.5px;
        padding: 11px 26px;
        margin-bottom: 26px;
    }
    
    .hero-title {
        font-size: 3.4rem;
        margin-bottom: 24px;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        display: block;
    }
    
    .hero-highlight {
        font-weight: 900; /* Same thickness as white text */
    }
    
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 34px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .hero-btn {
        width: auto;
        min-width: auto;
        max-width: none;
        padding: 18px 55px;
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .hero-scroll-indicator {
        bottom: 35px;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.7rem;
    }
}

/* Mobile Medium */
@media (max-width: 640px) {
    .hero-content-wrapper {
        padding: 0 22px;
        padding-bottom: 90px; /* Move content upwards */
    }
    
    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2.2px;
        padding: 10px 24px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 22px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        gap: 14px;
    }
    
    .hero-btn {
        padding: 17px 52px;
        font-size: 1.08rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 0 20px;
        padding-bottom: 80px; /* Move content upwards */
    }
    
    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 9px 22px;
        margin-bottom: 22px;
    }
    
    .hero-title {
        font-size: 2.7rem;
        margin-bottom: 20px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.15rem;
        line-height: 1.55;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 13px;
    }
    
    .hero-btn {
        padding: 16px 50px;
        font-size: 1.05rem;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.6rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 380px) {
    .hero-content-wrapper {
        padding: 0 18px;
        padding-bottom: 70px; /* Move content upwards */
    }
    
    .hero-label {
        font-size: 0.68rem;
        letter-spacing: 1.8px;
        padding: 9px 20px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 28px;
    }
    
    .hero-btn {
        padding: 15px 48px;
        font-size: 1.02rem;
    }
}

/* Mobile Ultra Small */
@media (max-width: 360px) {
    .hero-content-wrapper {
        padding: 0 16px;
        padding-bottom: 70px; /* Move content upwards */
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-btn {
        padding: 15px 45px;
        font-size: 1rem;
    }
}
/* ============================================
   HERO SLIDER - NEW DESIGN CSS
   ADD THIS TO YOUR <style> TAG IN <head> SECTION
   (Around line 250-350 where your other styles are)
   ============================================ */

/* Hero Slider Container */
.hero-slider-new {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Hero Slide */
.hero-slide-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-new.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

/* Hero Content Wrapper - MOVED UPWARDS */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left align on desktop */
    min-height: 100vh;
    padding-bottom: 200px; /* Increased from 120px - moves content MORE upwards */
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Label */
.hero-label {
    display: inline-block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F97015;
    background: rgba(249, 112, 21, 0.12);
    border: 1px solid rgba(249, 112, 21, 0.35);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out 0.2s both;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Main Heading */
.hero-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
}

.hero-highlight {
    color: #F97015;
    font-weight: 900; /* Same thickness as white text */
}

/* Description */
.hero-description {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-btn:hover::before {
    opacity: 1;
}

/* Primary Button (Orange) */
.hero-btn-primary {
    background: #F97015;
    color: #FFFFFF;
    box-shadow: 0 10px 35px rgba(249, 112, 21, 0.45);
}

.hero-btn-primary:hover {
    background: #ff7d2b;
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(249, 112, 21, 0.65);
}

/* Secondary Button (Glassmorphism) */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1.2s ease-out 1s both, bounce 2s ease-in-out 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.8rem;
    color: #F97015;
    filter: drop-shadow(0 2px 8px rgba(249, 112, 21, 0.4));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .hero-content-wrapper {
        padding-bottom: 220px; /* Increased from 140px - moves content MORE upwards */
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1599px) {
    .hero-content-wrapper {
        padding: 0 50px;
        padding-bottom: 200px; /* Increased from 120px - moves content MORE upwards */
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Tablet Landscape */
@media (min-width: 969px) and (max-width: 1199px) {
    .hero-content-wrapper {
        padding: 0 40px;
        padding-bottom: 180px; /* Increased from 100px - moves content MORE upwards */
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        padding: 18px 45px;
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .hero-slider-new {
        min-height: 650px;
    }
    
    .hero-content-wrapper {
        padding: 0 35px;
        padding-bottom: 120px; /* Increased from 60px - moves content upwards */
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        gap: 16px;
    }
    
    .hero-btn {
        padding: 17px 42px;
        font-size: 0.98rem;
    }
}

/* Mobile Large (Portrait) */
@media (max-width: 768px) {
    .hero-slider-new {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: 0 24px;
        padding-bottom: 160px; /* Increased from 100px - moves content MORE upwards */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-label {
        font-size: 0.8rem;
        letter-spacing: 2.5px;
        padding: 11px 26px;
        margin-bottom: 26px;
    }
    
    .hero-title {
        font-size: 3.4rem;
        margin-bottom: 24px;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        display: block;
    }
    
    .hero-highlight {
        font-weight: 900; /* Same thickness as white text */
    }
    
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 34px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .hero-btn {
        width: auto;
        min-width: auto;
        max-width: none;
        padding: 18px 55px;
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .hero-scroll-indicator {
        bottom: 35px;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.7rem;
    }
}

/* Mobile Medium */
@media (max-width: 640px) {
    .hero-content-wrapper {
        padding: 0 22px;
        padding-bottom: 150px; /* Increased from 90px - moves content MORE upwards */
    }
    
    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2.2px;
        padding: 10px 24px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 22px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        gap: 14px;
    }
    
    .hero-btn {
        padding: 17px 52px;
        font-size: 1.08rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 0 20px;
        padding-bottom: 140px; /* Increased from 80px - moves content MORE upwards */
    }
    
    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 9px 22px;
        margin-bottom: 22px;
    }
    
    .hero-title {
        font-size: 2.7rem;
        margin-bottom: 20px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.15rem;
        line-height: 1.55;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 13px;
    }
    
    .hero-btn {
        padding: 16px 50px;
        font-size: 1.05rem;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.6rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 380px) {
    .hero-content-wrapper {
        padding: 0 18px;
        padding-bottom: 130px; /* Increased from 70px - moves content MORE upwards */
    }
    
    .hero-label {
        font-size: 0.68rem;
        letter-spacing: 1.8px;
        padding: 9px 20px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 28px;
    }
    
    .hero-btn {
        padding: 15px 48px;
        font-size: 1.02rem;
    }
}

/* Mobile Ultra Small */
@media (max-width: 360px) {
    .hero-content-wrapper {
        padding: 0 16px;
        padding-bottom: 130px; /* Increased from 70px - moves content MORE upwards */
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-btn {
        padding: 15px 45px;
        font-size: 1rem;
    }
}