/* ========================================
   FONT SETUP — QUESTRIAL 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;
  --primary-color: #D4AF37; /* Gold Primary Color */
}

/* 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;
}

/* ========================================
   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;
  }
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 8px 0;
    padding: 0 16px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: block;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Desktop Image - Default */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide .desktop-image {
    display: block;
}

.slide .mobile-image {
    display: none;
}

/* ========================================
   NAVIGATION DOTS - GOLD COLOR
   ======================================== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
}

/* Inactive Dot */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect - Gold */
.dot:hover {
    background: #D4AF37;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Active Dot - Gold */
.dot.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: #D4AF37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* ========================================
   RESPONSIVE OPTIMIZATIONS
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .slider-container {
        height: 480px;
    }
    .slider-dots {
        gap: 10px;
    }
}

/* Mobile - Switch to Mobile Images */
@media (max-width: 768px) {
    .hero-slider {
        padding: 0 12px;
        margin: 6px 0;
    }
    
    .slider-container {
        height: 460px;
        border-radius: 12px;
    }
    
    /* 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;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-slider {
        padding: 0 8px;
    }
    
    .slider-container {
        height: 420px;
        border-radius: 12px;
    }
    
    .slide .mobile-image {
        object-fit: cover;
        object-position: center center;
    }
    
    .slider-dots {
        gap: 8px;
        padding: 12px 0;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .slider-container {
        height: 380px;
        border-radius: 10px;
    }
}

/* ========================================
   LOADING OPTIMIZATION
   Prevent layout shift while images load
   ======================================== */
.slide img {
    background: #f5f5f5;
}

/* ===================================
   ABOUT PHILOSOPHY SECTION STYLES
   Premium, Elegant & Fully Responsive
   =================================== */

/* === BASE STYLES === */
.about-philosophy-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Questrial', sans-serif;
}

.about-philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* === CONTENT LAYOUT === */
.about-philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* === IMAGE SIDE === */
.about-philosophy-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-philosophy-image:hover img {
    transform: scale(1.05);
}

/* === TEXT SIDE === */
.about-philosophy-text {
    padding: 20px 0;
}

.about-philosophy-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
}

.about-philosophy-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-philosophy-description {
    margin-bottom: 32px;
}

.about-philosophy-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.about-philosophy-description p:last-child {
    margin-bottom: 0;
}

/* === BUTTON === */
.about-philosophy-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #D4AF37;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.02em;
    width: auto;
    white-space: nowrap;
}

.about-philosophy-btn:hover {
    background-color: #C19E31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.about-philosophy-btn:active {
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */

/* Large Desktop (1200px+) */
@media screen and (min-width: 1200px) {
    .about-philosophy-section {
        padding: 100px 40px;
    }
    
    .about-philosophy-content {
        gap: 80px;
    }
}

/* Desktop (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .about-philosophy-section {
        padding: 80px 32px;
    }
    
    .about-philosophy-content {
        gap: 60px;
    }
}

/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .about-philosophy-section {
        padding: 60px 24px;
    }
    
    .about-philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-philosophy-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-philosophy-title {
        font-size: 2.25rem;
    }
    
    .about-philosophy-description p {
        font-size: 1rem;
    }
}

/* Mobile Large (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .about-philosophy-section {
        padding: 50px 20px;
    }
    
    .about-philosophy-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-philosophy-label {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }
    
    .about-philosophy-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-philosophy-description {
        margin-bottom: 28px;
    }
    
    .about-philosophy-description p {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .about-philosophy-btn {
        padding: 15px 36px;
        font-size: 0.9375rem;
        width: auto;
        min-width: 180px;
    }
}

/* Mobile Small (up to 575px) */
@media screen and (max-width: 575px) {
    .about-philosophy-section {
        padding: 40px 16px;
    }
    
    .about-philosophy-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .about-philosophy-text {
        padding: 0;
    }
    
    .about-philosophy-label {
        font-size: 0.75rem;
        margin-bottom: 14px;
    }
    
    .about-philosophy-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
    
    .about-philosophy-description {
        margin-bottom: 24px;
    }
    
    .about-philosophy-description p {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .about-philosophy-btn {
        padding: 14px 32px;
        font-size: 0.875rem;
        width: auto;
        min-width: 160px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media screen and (max-width: 375px) {
    .about-philosophy-section {
        padding: 36px 12px;
    }
    
    .about-philosophy-content {
        gap: 24px;
    }
    
    .about-philosophy-title {
        font-size: 1.5rem;
    }
    
    .about-philosophy-description p {
        font-size: 0.8125rem;
    }
    
    .about-philosophy-btn {
        padding: 12px 28px;
        font-size: 0.8125rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.about-philosophy-btn:focus-visible {
    outline: 3px solid #D4AF37;
    outline-offset: 4px;
}

/* === PRINT STYLES === */
@media print {
    .about-philosophy-section {
        padding: 20px;
    }
    
    .about-philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .about-philosophy-btn {
        display: none;
    }
}

/* ===================================
   WHY CHOOSE 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, #D4AF37, #E6C35A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 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, #FEF9E7, #F9E79F);
    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, #D4AF37, #E6C35A);
}

.why-choose-icon {
    color: #D4AF37;
    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 #D4AF37;
    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;
    }
}

/* --- Follow Our Journey Section --- */
.follow-our-journey {
    background: #F7F8FA;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

/* Section Header */
.follow-our-journey .section-header {
    margin-bottom: 30px;
}

.follow-our-journey .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1A1D1F;
    margin-bottom: 10px;
}

.follow-our-journey .section-header p {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

/* --- Image Grid --- */
.follow-our-journey .image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 10px 30px;
    box-sizing: border-box;
}

/* Image Items */
.follow-our-journey .image-item {
    width: 230px;
    height: 230px;
    border-radius: 30%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.follow-our-journey .image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.follow-our-journey .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Follow Button --- */
.follow-our-journey .follow-button {
    display: inline-block;
    padding: 14px 30px;
    background: #F2173A;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(242, 23, 58, 0.3);
    transition: all 0.3s ease;
}

.follow-our-journey .follow-button:hover {
    background: #D11535;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 23, 58, 0.4);
}

/* --- Social Buttons --- */
.follow-our-journey .social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.follow-our-journey .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.2px;
    white-space: nowrap;
    min-width: max-content;
}

/* Icons */
.follow-our-journey .social-button i {
    font-size: 1.1rem;
}

/* Instagram Button */
.follow-our-journey .social-button.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.follow-our-journey .social-button.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(220, 39, 67, 0.4);
}

/* Facebook Button */
.follow-our-journey .social-button.facebook {
    background: #1877F2;
    color: #fff;
}

.follow-our-journey .social-button.facebook:hover {
    background: #145DBF;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(24, 119, 242, 0.4);
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    .follow-our-journey .image-grid {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 10px 15px;
        justify-content: flex-start;
    }

    .follow-our-journey .image-grid::-webkit-scrollbar {
        display: none;
    }

    .follow-our-journey .image-item {
        width: 150px;
        height: 150px;
    }

    .follow-our-journey .section-header h2 {
        font-size: 1.5rem;
    }

    .follow-our-journey .section-header p {
        font-size: 0.9rem;
    }

    .follow-our-journey .follow-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .follow-our-journey .social-buttons {
        gap: 12px;
        margin-top: 22px;
    }

    .follow-our-journey .social-button {
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 36px;
    }

    .follow-our-journey .social-button i {
        font-size: 1rem;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .follow-our-journey {
        padding: 40px 15px;
    }

    .follow-our-journey .image-grid {
        gap: 12px;
        padding: 10px 18px;
    }

    .follow-our-journey .image-item {
        width: 130px;
        height: 130px;
    }

    .follow-our-journey .section-header h2 {
        font-size: 1.4rem;
    }

    .follow-our-journey .follow-button {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .follow-our-journey .social-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .follow-our-journey .social-button {
        padding: 9px 20px;
        font-size: 0.88rem;
        border-radius: 30px;
        min-width: max-content;
    }
}

/* ===============================
   STEAL DEAL OFFERS SECTION CSS
   =============================== */

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #D4AF37;
  --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;
  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;
}

.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;
  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;
  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(212, 175, 55, 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(212, 175, 55, 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;
  }
}

/* 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;
  }
}

/* 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;
  }
  
  .steal-deal-viewport {
    border-radius: var(--card-radius-large);
  }
  
  .steal-deal-slide {
    aspect-ratio: 16 / 9;
  }
  
  .steal-deal-desktop-image {
    display: block;
  }
  
  .steal-deal-mobile-image {
    display: none;
  }
  
  .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;
  }
  
  .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;
  }
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
  .steal-deal-slide::before {
    content: '';
    display: block;
    padding-top: 56.25%;
  }
  
  .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;
  }
}

/* Custom Furniture Quote Section Styles */
.quote-section {
    background-color: #D4AF37;
    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: #D4AF37;
    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;
    }
}

/* ================================
   FAQ SECTION - Gold Theme
   Modern Rounded Aesthetic
   Gold Color: #D4AF37
================================ */

:root {
  --faq-primary: #D4AF37;
  --faq-primary-solid: #D4AF37;
  --faq-primary-rgba-08: rgba(212, 175, 55, 0.08);
  --faq-open-bg: #FEF9E7;
  --faq-open-bg-hover: #FDF5D9;
}

/* Section */
.faq-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

/* Items wrapper */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Single item */
.faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 28px;
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Active / opened item */
.faq-item.active {
    border-color: var(--faq-primary-solid);
    box-shadow: 0 8px 24px var(--faq-primary-rgba-08);
}

/* Question row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.24s ease, transform 0.12s ease;
    border-radius: 28px;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: #F9FAFB;
}

/* Opened question uses gold tint */
.faq-item.active .faq-question {
    background: var(--faq-open-bg);
}

.faq-item.active .faq-question:hover {
    background: var(--faq-open-bg-hover);
}

/* Question text */
.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    flex: 1;
    padding-right: 20px;
    line-height: 1.2;
}

/* Icon circle - Gold */
.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 50%;
    transition: background 0.28s ease, transform 0.28s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #D4AF37;
    transform: rotate(180deg);
}

.faq-icon i {
    color: #6B7280;
    font-size: 14px;
    transition: color 0.28s ease;
}

.faq-item.active .faq-icon i {
    color: #FFFFFF;
}

/* Collapsible answer area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Answer content */
.faq-answer-content {
    padding: 0 28px 28px 28px;
    color: #000000;
    border-top: 1px solid #F3F4F6;
    padding-top: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

/* "Still Have Questions?" CTA — white container with gold border */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 32px;
    border: 2px solid #D4AF37;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

/* CTA text */
.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #000000;
    margin-bottom: 24px;
    font-size: 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA button - Gold */
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.24s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    border: none;
}

.faq-cta-btn:hover {
    background: #C19E31;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Focus / accessibility */
.faq-question:focus,
.faq-cta-btn:focus,
.faq-icon:focus {
    outline: 3px solid rgba(212, 175, 55, 0.3);
    outline-offset: 2px;
    border-radius: 8px;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
    .faq-container { 
        padding: 0 20px; 
    }
}

@media (max-width: 768px) {
    .faq-section { 
        padding: 60px 16px; 
    }

    .faq-header h1 { 
        font-size: 2rem; 
    }

    .faq-header p { 
        font-size: 0.95rem; 
    }

    .faq-item { 
        border-radius: 24px; 
    }

    .faq-question { 
        padding: 20px 22px; 
    }

    .faq-question-text { 
        font-size: 1rem; 
    }

    .faq-icon { 
        width: 32px; 
        height: 32px; 
    }

    .faq-answer-content {
        padding: 0 22px 22px 22px;
        font-size: 0.95rem;
    }

    /* CTA adjustments */
    .faq-cta { 
        padding: 40px 30px; 
        border-radius: 28px; 
    }
    .faq-cta h3 { 
        font-size: 1.5rem; 
    }
    .faq-cta p { 
        font-size: 0.95rem; 
    }
    .faq-cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 28px;
        white-space: normal;
        border-radius: 50px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .faq-header h1 { 
        font-size: 1.6rem; 
    }

    .faq-cta { 
        padding: 35px 24px; 
        border-radius: 24px; 
    }

    .faq-cta-btn {
        padding: 18px 32px;
        font-size: 0.95rem;
        width: 100%;
    }
}
/* ========================================
   CATEGORY CAROUSEL SECTION - GOLD THEME
   ======================================== */

.category-carousel {
  /* Local Variables */
  --primary: #D4AF37; /* GOLD */
  --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 !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 - BOLD */
.category-item span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 140px;
}

/* Navigation Arrows - GOLD 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 - GOLD */
.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(212, 175, 55, 0.3);
}

/* ========================================
   CATEGORY CAROUSEL - 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;
    font-weight: 700;
    max-width: 100px;
  }
}