/* BASIC RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  /* HEADER */

  .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #0d0033;
    color: white;
  }

  .logoo{
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-right: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  
  .logo img {
    height: 40px;
  }
  
  .search-bar input {
    padding: 0.5rem 1rem;
    width: 300px;
    border: none;
    border-radius: 4px;
  }
  
  .user-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .user-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .user-links a:hover {
    color: #CFA366;
  }
  
  /* MAIN MENU */
  .main-menu {
    background-color: transparent;
    padding: 15px 0;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
  }
  
  .nav-logo {
    flex-shrink: 0;
  }
  
  .nav-logo .logoo {
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  
  .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .nav-links .nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: capitalize;
  }
  
  .nav-links .nav-link:hover {
    color: #CFA366;
  }
  
  .nav-links .nav-link.active {
    background: linear-gradient(135deg, #CFA366, #B8941F);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
    transition: all 0.3s ease;
  }
  
  .nav-links .nav-link.active:hover {
    background: linear-gradient(135deg, #B8941F, #CFA366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 163, 102, 0.4);
  }
  
  .nav-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  
  .nav-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .nav-btn.professional {
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    color: #333;
    text-decoration: none;
    border: 1px solid rgba(207, 163, 102, 0.2);
    box-shadow: 0 4px 12px rgba(207, 163, 102, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .nav-btn.professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .nav-btn.professional:hover::before {
    left: 100%;
  }
  
  .nav-btn.professional:hover {
    background: linear-gradient(135deg, #CFA366, #B8941F);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
      0 8px 25px rgba(207, 163, 102, 0.4),
      0 4px 15px rgba(184, 148, 31, 0.3);
  }
  
  .nav-btn.account {
    background: linear-gradient(135deg, #333, #444);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(207, 163, 102, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

/* Hide header logo when mobile navigation is open */
.main-menu.mobile-menu-open .logo-image {
  display: none;
}

/* Also hide via :has when the mobile panel itself is active (browser support permitting) */
@supports selector(:has(*)) {
  .main-menu:has(.mobile-nav-panel.active) .logo-image {
    display: none;
  }
}
  
  .nav-btn.account::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }
  
  .nav-btn.account:hover::before {
    left: 100%;
  }
  
  .nav-btn.account:hover {
    background: linear-gradient(135deg, #CFA366, #B8941F);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
      0 8px 25px rgba(207, 163, 102, 0.4),
      0 4px 15px rgba(184, 148, 31, 0.3);
  }
  
  /* Mobile Navigation Styles */
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile Navigation Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  
  
  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .nav-links {
      gap: 8px;
    }
    
    .nav-links .nav-link {
      font-size: 0.9rem;
      padding: 6px 12px;
    }
    
    .nav-btn {
      padding: 8px 14px;
      font-size: 0.8rem;
    }
  }
  
  /* Mobile Navigation - Only show hamburger on phones */
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: flex;
         position: absolute;
         top: 50px;
         background-color: #cfa366;
         right: 20px;
         /* color: black; */
    }
    
    .nav-links,
    .nav-buttons,
    .nav-actions {
      display: none;
    }
    
    .nav-container {
      justify-content: space-between;
      padding: 0 20px;
    }
    
    .nav-logo {
      position: absolute;
      top: -10px;
      left: 20px;
    }
    
    /* Mobile Navigation Panel - Complete Styling */
    .mobile-nav-panel {
      position: fixed;
      top: 0;
      left: -100%;
      width: 85%;
      max-width: 400px;
      height: 100vh;
      background: 
        linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #0d0033 100%),
        radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.08) 0%, transparent 60%);
      backdrop-filter: blur(20px);
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1002;
      transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      box-shadow: 
        4px 0 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(207, 163, 102, 0.15);
    }
    
    .mobile-nav-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(207, 163, 102, 0.05) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(184, 148, 31, 0.05) 60deg, transparent 120deg);
      animation: rotate 25s linear infinite;
      pointer-events: none;
    }
    
    .mobile-nav-panel.active {
      left: 0;
      display: flex;
      visibility: visible;
      opacity: 1;
    }
    
    /* Mobile Navigation Header */
    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
      position: relative;
      z-index: 2;
    }
    
    .mobile-nav-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.3), transparent);
    }
    
    .mobile-nav-logo img {
      height: 60px;
      width: auto;
      filter: brightness(0) invert(1);
    }
    
    .mobile-nav-close {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 24px;
      cursor: pointer;
      padding: 8px;
      line-height: 1;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .mobile-nav-close:hover {
      color: #CFA366;
      background: rgba(207, 163, 102, 0.2);
      border-color: #CFA366;
      transform: scale(1.1);
    }
    
    /* Mobile Navigation Content */
    .mobile-nav-content {
      padding: 0;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
      visibility: visible;
      height: 100%;
      overflow-y: auto;
      background: transparent;
    }
    
    .mobile-nav-links {
      margin-bottom: 20px;
      display: block;
      visibility: visible;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
      position: relative;
      z-index: 2;
      padding: 15px 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-links::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.3), transparent);
    }
    
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: rgba(255, 255, 255, 0.95);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      background: transparent;
    }
    
    .mobile-nav-link::after {
      content: '>';
      color: rgba(255, 255, 255, 0.6);
      font-size: 1rem;
      font-weight: 300;
      transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
      color: #CFA366;
      background: rgba(207, 163, 102, 0.1);
      padding-left: 30px;
      transform: translateX(5px);
    }
    
    .mobile-nav-link:hover::after {
      color: #CFA366;
      transform: translateX(3px);
    }
    
    .mobile-nav-link:last-child {
      border-bottom: none;
    }
    
    /* Mobile Navigation Buttons */
    .mobile-nav-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      visibility: visible;
      margin-top: auto;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
      position: relative;
      z-index: 2;
      padding: 15px 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-buttons::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.3), transparent);
    }
    
    .mobile-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
      margin-bottom: 8px;
      position: relative;
      overflow: hidden;
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      visibility: visible !important;
      opacity: 1 !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }
    
    .mobile-btn::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.5s ease;
    }
    
    .mobile-btn:hover::before {
      left: 100%;
    }
    
    .mobile-btn.pro {
      background: linear-gradient(135deg, #D9B77F, #CEA367);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 8px 18px rgba(207, 163, 102, 0.35);
    }
    
    .mobile-btn.pro:hover {
      background: linear-gradient(135deg, #CEA367, #A77F4B);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(207, 163, 102, 0.4);
    }
    
    .mobile-btn.account {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    }
    
    .mobile-btn.account:hover {
      background: linear-gradient(135deg, #CFA366, #B8941F);
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(207, 163, 102, 0.35);
    }
  }
  
  /* Desktop Navigation - Show all links and buttons on laptop and larger */
  @media (min-width: 769px) {
    .main-menu {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      background-color: transparent !important;
      position: absolute !important;
      top: -40px !important;
    }
    
    .mobile-menu-toggle {
      display: none !important;
    }
    
    .nav-links,
    .nav-buttons,
    .nav-actions {
      display: flex !important;
    }
    
    .mobile-nav-panel {
      display: none !important;
    }
  }
  
  @media (max-width: 480px) {
    .mobile-nav-panel {
      width: 90%;
    }
    
    .mobile-nav-header {
      padding: 15px 25px;
    }
    
    .mobile-nav-content {
      padding: 20px 25px;
    }
    
    .mobile-nav-links {
      padding: 15px 25px;
    }
    
    .mobile-nav-buttons {
      padding: 79px 20px;

    }
    
    .mobile-nav-link {
      font-size: 1rem;
      padding: 12px 20px;
    }
    
    .mobile-btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
  }




  @media (max-width: 480px) {
    /* Extra small mobile optimizations */
    body {
      padding-top: 70px;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    button, .btn, .nav-btn, .mobile-btn, .mobile-nav-link, .mobile-nav-close, .mobile-menu-toggle {
      min-height: 44px;
      min-width: 44px;
    }
    
    /* Improve readability on small screens */
    p, li {
      line-height: 1.6;
    }
  }

  /* Enhanced Touch Targets for All Mobile Devices */
  @media (max-width: 768px) {
    /* Mobile Menu Toggle - Ensure proper touch target */
    .mobile-menu-toggle {
      min-height: 44px;
      min-width: 44px;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Mobile Navigation Links - Touch friendly */
    .mobile-nav-link {
      min-height: 48px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    /* Mobile Navigation Close Button */
    .mobile-nav-close {
      min-height: 44px;
      min-width: 44px;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* All buttons and interactive elements */
    .btn, .nav-btn, .mobile-btn, button {
      min-height: 44px;
      min-width: 44px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Form inputs - Touch friendly */
    input[type="text"], input[type="email"], input[type="password"], input[type="tel"], 
    input[type="search"], textarea, select {
      min-height: 44px;
      padding: 12px 16px;
      font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Links and clickable elements */
    a, .clickable {
      min-height: 44px;
      display: flex;
      align-items: center;
      padding: 8px 12px;
    }
    
    /* Custom select elements */
    .custom-select, .custom-select-trigger {
      min-height: 44px;
      padding: 12px 16px;
    }
    
    /* Service cards and interactive cards */
    .service-item, .package-card, .card {
      min-height: 44px;
      padding: 16px;
    }
    
    /* Tab buttons */
    .tab-btn {
      min-height: 44px;
      padding: 12px 20px;
    }
  }

  /* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */
  
  /* Hero Section Responsive */
  @media (max-width: 1024px) {
    .hero-bannerr {
      padding: 80px 20px 60px;
    }
    
    .hero-content {
      margin-left: 30px;
    }
    
    .hero-content h2 {
      font-size: 2.5rem;
    }
    
    .hero-search {
      max-width: 600px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-bannerr {
      padding: 100px 15px 40px;
      text-align: center;
      margin-top: 0;
    }
    
    .hero-content {
      margin-left: 0;
      margin-bottom: 30px;
    }
    
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .hero-search {
      flex-direction: column;
      gap: 15px;
      max-width: 90%;
      margin: 0 auto;
    }
    
    .hero-search .field {
      width: 100%;
    }
    
    .hero-search .divider {
      display: none;
    }
    
    .hero-search .btn {
      width: 100%;
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-bannerr {
      padding: 80px 10px 30px;
    }
    
    .hero-content h2 {
      font-size: 1.8rem;
    }
    
    .hero-content p {
      font-size: 0.9rem;
    }
    
    .hero-search {
      max-width: 90%;
      margin: 0 auto;
    }
    
    .hero-search .input {
      padding: 12px 15px;
      font-size: 16px;
    }
    
    .hero-search .label {
      font-size: 0.9rem;
    }
  }

  /* Growth Section Responsive */
  @media (max-width: 1024px) {
    .growth-section {
      margin: 60px auto;
      padding: 0 20px;
    }
    
    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .stat-card {
      padding: 30px 20px;
    }
    
    .stat-card h3 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .growth-section {
      margin: 50px auto;
      padding: 0 15px;
    }
    
    .growth-header h1 {
      font-size: 2rem;
    }
    
    .growth-header h2 {
      font-size: 1.2rem;
    }
    
    .stats-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 15px;
    }
    
    .stat-card {
      padding: 25px 18px;
      width: 100%;
      margin: 0;
    }
    
    .stat-card h3 {
      font-size: 1.8rem;
    }
    
    .stat-card p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .growth-section {
      margin: 40px auto;
      padding: 0 10px;
    }
    
    .growth-header h1 {
      font-size: 1.6rem;
    }
    
    .growth-header h2 {
      font-size: 1rem;
    }
    
    .stats-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px;
    }
    
    .stat-card {
      padding: 20px 15px;
      width: 100%;
      margin: 0;
    }
    
    .stat-card h3 {
      font-size: 1.5rem;
    }
    
    .stat-card p {
      font-size: 0.85rem;
    }
  }
  
  /* Extra small screens */
  @media (max-width: 360px) {
    .growth-section {
      padding: 0 5px;
    }
    
    .stats-grid {
      gap: 10px;
    }
    
    .stat-card {
      padding: 15px 12px;
    }
    
    .stat-card h3 {
      font-size: 1.3rem;
    }
    
    .stat-card p {
      font-size: 0.8rem;
    }
  }

  /* FAQ Section Responsive */
  @media (max-width: 1024px) {
    .faq-section {
      margin: 60px auto;
      padding: 0 20px;
    }
    
    .faq-container {
      max-width: 800px;
    }
  }
  
  @media (max-width: 768px) {
    .faq-section {
      margin: 50px auto;
      padding: 0 15px;
    }
    
    .faq-main-title {
      font-size: 1.8rem;
    }
    
    .faq-item {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .faq-question h3 {
      font-size: 1rem;
    }
    
    .faq-answer {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .faq-section {
      margin: 40px auto;
    }
    
    .faq-main-title {
      font-size: 1.5rem;
    }
    
    .faq-item {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .faq-question h3 {
      font-size: 0.9rem;
    }
    
    .faq-answer {
      font-size: 0.85rem;
    }
    
    .faq-question {
      padding: 15px;
    }
  }

  /* Footer Responsive */
  @media (max-width: 1024px) {
    .site-footer .footer-inner {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-columns {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .footer-columns {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .footer-col h4 {
      font-size: 1rem;
    }
    
    .footer-col a {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-columns {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .footer-col {
      text-align: center;
    }
    
    .footer-social {
      justify-content: center;
    }
  }

  /* General Mobile Optimizations */
  @media (max-width: 768px) {
    body {
      font-size: 14px;
    }
    
    h1 {
      font-size: 1.8rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    h3 {
      font-size: 1.2rem;
    }
    
    .container {
      padding: 0 15px;
    }
  }
  
  @media (max-width: 480px) {
    body {
      font-size: 13px;
    }
    
    h1 {
      font-size: 1.6rem;
    }
    
    h2 {
      font-size: 1.3rem;
    }
    
    h3 {
      font-size: 1.1rem;
    }
    
    .container {
      padding: 0 10px;
    }
  }

 

  
  .hero-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.1;
  }
  
  .hero-content p {
    font-size: clamp(14px, 2.2vw, 18px);
    margin-bottom: 20px;
    opacity: 0.95;
  }
  
  .btn-shop {
    background-color: #CFA366;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn-shop:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  
  /* PROFESSIONALS SLIDER */
  .professionals-slider {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    background: 
      linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(207, 163, 102, 0.05) 100%),
      radial-gradient(circle at 30% 30%, rgba(207, 163, 102, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(184, 148, 31, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
  }
  
  .professionals-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 20% 20%, transparent 0deg, rgba(207, 163, 102, 0.1) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 80% 80%, transparent 0deg, rgba(184, 148, 31, 0.1) 60deg, transparent 120deg);
    animation: rotate 15s linear infinite;
    pointer-events: none;
    border-radius: 20px;
  }
  
  .professionals-slider .slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
  }
  
  .professionals-slider .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px;
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 20px;
    box-shadow: 
      0 25px 50px rgba(207, 163, 102, 0.2),
      0 10px 25px rgba(184, 148, 31, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(207, 163, 102, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .professionals-slider .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.1) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.1) 50%, transparent 70%);
    pointer-events: none;
    border-radius: 20px;
  }
  
  .professionals-slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CFA366, #B8941F, #D4AF37);
    border-radius: 20px 20px 0 0;
  }
  
  .slide-image {
    flex: 1;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    position: relative;
  }
  
  .slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    z-index: 1;
    pointer-events: none;
  }
  
  .slide-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .slide-image:hover img {
    transform: scale(1.05);
  }
  
  .slide-content {
    flex: 1;
    padding: 30px 20px;
    position: relative;
  }
  
  .slide-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  
  .slide-content .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
  }
  
  .slide-content .underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  
  .slide-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  
  .slide-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
  }
  
  .slide-content .see-more {
    color: #CFA366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(207, 163, 102, 0.1), transparent);
  }
  
  .slide-content .see-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #CFA366, #B8941F);
    transition: width 0.3s ease;
  }
  
  .slide-content .see-more:hover {
    color: #B8941F;
    background: linear-gradient(135deg, rgba(207, 163, 102, 0.2), rgba(184, 148, 31, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  
  .slide-content .see-more:hover::after {
    width: 100%;
  }
  
  .slider-nav {
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }
  
  .slider-nav .nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #e2e8f0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .slider-nav .nav-btn:hover {
    background: linear-gradient(135deg, #CFA366, #B8941F);
    border-color: #CFA366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 163, 102, 0.3);
  }
  
  .slider-nav .nav-btn:active {
    transform: translateY(0) scale(0.95);
  }
  
  /* Hide inactive slides */
  .professionals-slider .slide:not(.active) {
    display: none;
  }
  
  /* Responsive styles for professionals slider */
  @media (max-width: 768px) {
    .professionals-slider {
      margin: 60px auto;
      padding: 0 15px;
    }
    
    .professionals-slider .slide {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      width: 90%;
      margin: 0 auto;
    }
    
    .slide-image {
      max-width: 100%;
    }
    
    .slide-image img {
      height: 200px;
    }
    
    .slide-content h2 {
      font-size: 2rem;
    }
    
    .slide-content h3 {
      font-size: 1.3rem;
    }
    
    .slide-content p {
      font-size: 1rem;
    }
    /* make the action more prominent on mobile */
    .slide-content .see-more { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 12px; }
    
    /* Hide navigation buttons on mobile */
    .slider-nav {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .professionals-slider {
      margin: 40px auto;
      padding: 0 10px;
    }
    
    .professionals-slider .slide {
      padding: 15px;
      width: 90%;
    }
    
    .slide-content h2 {
      font-size: 1.8rem;
    }
    
    .slide-content h3 {
      font-size: 1.2rem;
    }
    
    .slide-content p {
      font-size: 0.95rem;
    }
    
    /* Ensure navigation buttons are hidden on mobile */
    .slider-nav {
      display: none !important;
    }
  }
  
  /* NEED HELP */
  .need-help {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .help-text {
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
  }
  
  .help-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* GENERIC PRODUCT SECTIONS (Featured, Crazy Deals) */
  .products {
    padding: 30px 20px;
    background-color: #fff;
    margin-bottom: 20px;
  }
  
  .products h2 {
    margin-bottom: 20px;
    color: #0d0033;
  }
  
  .product-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
  }
  
  .product-carousel .product {
    background: #f9f9f9;
    padding: 20px;
    min-width: 150px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .product-carousel .product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .product-carousel .product h3 {
    font-size: 1rem;
  }
  
  /* Delivery section (match the second image) */
  .delivery-section {
    background: 
      linear-gradient(135deg, #f5f5f5 0%, #f8fafc 100%),
      radial-gradient(circle at 30% 30%, rgba(207, 163, 102, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(184, 148, 31, 0.15) 0%, transparent 50%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 25% 25%, transparent 0deg, rgba(207, 163, 102, 0.1) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 75% 75%, transparent 0deg, rgba(184, 148, 31, 0.1) 60deg, transparent 120deg);
    animation: rotate 25s linear infinite;
    pointer-events: none;
  }
  
  .delivery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.05) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.05) 50%, transparent 70%);
    pointer-events: none;
  }
  .delivery-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 12px;
    box-shadow: 
      0 6px 20px rgba(207, 163, 102, 0.1),
      0 3px 10px rgba(184, 148, 31, 0.05);
    border: 1px solid rgba(207, 163, 102, 0.1);
  }
  .delivery-header { text-align: center; margin-bottom: 20px; }
  .delivery-header h2 { margin: 0 0 6px; font-size: 22px; color: #1f2937; }
  .delivery-header p { margin: 0; color: #6b7280; font-size: 14px; }
  .delivery-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
  }
  .delivery-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.03), transparent 50%, rgba(184, 148, 31, 0.03));
    border: 1px solid rgba(207, 163, 102, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 
      0 2px 10px rgba(207, 163, 102, 0.08),
      0 1px 5px rgba(184, 148, 31, 0.04);
    transition: all 0.3s ease;
  }
  
  .delivery-card:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 4px 15px rgba(207, 163, 102, 0.15),
      0 2px 8px rgba(184, 148, 31, 0.1);
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.08), transparent 50%, rgba(184, 148, 31, 0.08));
  }
  .delivery-logo img { width: 40px; height: 40px; object-fit: contain; }
  .delivery-text { display: flex; flex-direction: column; }
  .delivery-label { font-weight: 700; color: #111827; line-height: 1; }
  .delivery-deadline { color: #6b7280; font-size: 14px; }
  @media (max-width: 640px){ .delivery-cards { grid-template-columns: 1fr; } }
  /* --- Presse grid (single bordered box with inner dividers) --- */
  .press-section{ 
    background: 
      linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%),
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.15) 0%, transparent 50%);
    padding:80px 0; 
    color:#fff; 
    position: relative;
    overflow: hidden;
  }
  
  .press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 25% 25%, transparent 0deg, rgba(207, 163, 102, 0.1) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 75% 75%, transparent 0deg, rgba(184, 148, 31, 0.1) 60deg, transparent 120deg);
    animation: rotate 30s linear infinite;
    pointer-events: none;
  }
  
  .press-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.05) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.05) 50%, transparent 70%);
    pointer-events: none;
  }
.press-inner{ max-width:1200px; margin:0 auto; padding:0 20px; text-align:center; }
.press-eyebrow{
  display:inline-block; font-size:12px; letter-spacing:.16em; opacity:.85; text-transform:uppercase;
  position:relative; margin-bottom:14px;
}
.press-eyebrow::after{ content:""; display:block; width:46px; height:3px; background:#6d28d9; border-radius:999px; margin:8px auto 0; }
.press-title{ font-size:clamp(28px,4.8vw,48px); font-weight:800; line-height:1.1; margin:6px 0 28px; }

.press-grid{
  width:min(1000px,95vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(207, 163, 102, 0.4);
  border-radius:12px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(207, 163, 102, 0.08) 100%),
    radial-gradient(circle at 50% 50%, rgba(184, 148, 31, 0.15) 0%, transparent 70%);
  box-shadow: 
    0 15px 40px rgba(207, 163, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
}

.press-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.1) 50%, transparent 70%);
  pointer-events: none;
}
.press-item{
  display:grid; place-items:center;
  min-height:130px;
  padding:38px 12px;
  border-left:1px solid rgba(207, 163, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.press-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(207, 163, 102, 0.1), transparent),
    radial-gradient(circle at 50% 50%, rgba(184, 148, 31, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
}

.press-item:hover::before {
  opacity: 1;
}

.press-item:hover {
  background: 
    linear-gradient(135deg, rgba(207, 163, 102, 0.15), rgba(184, 148, 31, 0.1));
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 25px rgba(207, 163, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.press-item:first-child{ border-left:none; }

/* brand wordmarks (swap for images if you have them) */
.brand{ color:#fff; opacity:.95; user-select:none; white-space:nowrap; }
.brand--vogue{ font-family:"Didot","Bodoni MT",serif; font-size:clamp(28px,3vw,40px); letter-spacing:.12em; }
.brand--grazia{ font-family:"Didot","Bodoni MT",serif; font-size:clamp(26px,2.8vw,36px); letter-spacing:.22em; }
.brand--elle{ font-family:"Didot","Bodoni MT",serif; font-size:clamp(26px,2.8vw,36px); letter-spacing:.35em; }
.brand--marie{ font-family:"Segoe UI",Roboto,Arial,sans-serif; font-weight:800; font-size:clamp(22px,2.6vw,32px); text-transform:lowercase; letter-spacing:.02em; }

/* responsive */
@media (max-width:1000px){
  .press-grid{ grid-template-columns:repeat(2,1fr); }
  .press-item:nth-child(3),
  .press-item:nth-child(4){ border-top:1px solid #232327; }
  .press-item:nth-child(3){ border-left:none; }
}
@media (max-width:520px){
  .press-grid{ grid-template-columns:1fr; }
  .press-item{ border-left:none; border-top:1px solid #232327; }
  .press-item:first-child{ border-top:none; }
}

  /* FOOTER (dark multi-column) */
  .site-footer {
    background: 
      linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%),
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.15) 0%, transparent 50%);
    color: rgba(255,255,255,0.85);
    padding: 48px 24px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #CFA366, #B8941F, #D4AF37);
    box-shadow: 0 0 20px rgba(207, 163, 102, 0.5);
  }
  
  .site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(207, 163, 102, 0.05) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(184, 148, 31, 0.05) 60deg, transparent 120deg);
    animation: rotate 40s linear infinite;
    pointer-events: none;
  }
  .site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  .footer-brand { display: flex; flex-direction: column; gap: 16px; }
  .footer-logo { font-weight: 800; letter-spacing: 6px; color: #fff; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn { 
    width: 36px; 
    height: 36px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 8px; 
    background: 
      linear-gradient(135deg, rgba(207, 163, 102, 0.2), rgba(184, 148, 31, 0.1));
    transition: all 0.25s ease; 
    border: 1px solid rgba(207, 163, 102, 0.3);
  }
  .social-btn:hover { 
    background: linear-gradient(135deg, #CFA366, #B8941F);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  .footer-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
  .footer-col h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin: 10px 0; }
  .footer-col a { 
    color: rgba(255,255,255,0.85); 
    text-decoration: none; 
    font-size: 0.95rem; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 8px;
    border-radius: 8px;
  }
  
  .footer-col a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(207, 163, 102, 0.2), rgba(184, 148, 31, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
  }
  
  .footer-col a:hover { 
    color: #CFA366; 
    text-decoration: none;
    transform: translateY(-2px);
  }
  
  .footer-col a:hover::before {
    opacity: 1;
  }
  @media (max-width: 900px){ .site-footer .footer-inner { grid-template-columns: 1fr; } .footer-columns { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px){ .footer-columns { grid-template-columns: 1fr; } }
  
  /* SUPPORT BUTTON */
  .support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0d0033;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999;
  }
  .hero-bannerr {
    position: relative;
    width: 100%;
    min-height: 110vh;
    background: url('./dbl.jpeg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 16px 88px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-bannerr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-bannerr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(207, 163, 102, 0.05) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(184, 148, 31, 0.05) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  
  /* Hero content styling */
  .hero-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    margin-bottom: 30px;
  }
  
  .btn-shop {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff5f00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
/***********************************
   GROWTH SECTION LAYOUT
************************************/
  .growth-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    background: 
      linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(207, 163, 102, 0.05) 100%),
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.15) 0%, transparent 50%);
    border-radius: 30px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .growth-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
      conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(207, 163, 102, 0.2) 60deg, transparent 120deg, rgba(184, 148, 31, 0.2) 180deg, transparent 240deg, rgba(212, 175, 55, 0.2) 300deg, transparent 360deg);
    animation: rotate 25s linear infinite;
    pointer-events: none;
  }
  
  .growth-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.1) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.1) 50%, transparent 70%);
    pointer-events: none;
    border-radius: 30px;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .growth-header {
    margin-bottom: 60px;
  }
  
  .growth-header .purple-line {
    width: 60px;
    height: 3px;
    background: #CFA366;
    margin: 0 auto 20px;
  }
  
  .growth-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  
  .growth-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .growth-header p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  @media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-card { padding: 28px 22px; }
    .stat-card h3 { font-size: 2rem; }
  }
  @media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-card { padding: 22px 18px; border-radius: 10px; }
    .stat-card h3 { font-size: 1.8rem; }
    .stat-card p { font-size: 0.95rem; }
    .cta-button { width: 100%; }
  }
  
  
  .stat-card {
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 
      0 8px 32px rgba(207, 163, 102, 0.15),
      0 4px 16px rgba(184, 148, 31, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(207, 163, 102, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 40px rgba(207, 163, 102, 0.25),
      0 10px 20px rgba(184, 148, 31, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.1), transparent 50%, rgba(184, 148, 31, 0.1));
  }
  
  .stat-card:hover::before {
    opacity: 1;
  }
  
  .stat-card.featured {
    border: 2px solid #CFA366;
  }
  
  .stat-card .purple-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #CFA366;
    border-radius: 12px 12px 0 0;
  }
  
  .stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.1;
  }
  
  .stat-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .cta-button {
    background: #CFA366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  
  .cta-button:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  
  .cta-button:hover {
    background: #333;
  }
  
  /* Featured Products Section Container */
  /********** Container & Header **********/
  .featured-products {
    max-width: 1200px;
    margin: 40px auto;
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.08) 0%, transparent 50%);
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(207, 163, 102, 0.2);
    box-shadow: 
      0 8px 32px rgba(207, 163, 102, 0.15),
      0 4px 16px rgba(184, 148, 31, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(207, 163, 102, 0.05) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(184, 148, 31, 0.05) 60deg, transparent 120deg);
    animation: rotate 30s linear infinite;
    pointer-events: none;
  }
  
  .featured-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .title-group h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #0d0033;
  }
  .title-group p {
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
  }
  
  .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pagination span {
    color: #999;
    font-size: 0.9rem;
  }
  .pagination a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  /********** Carousel **********/
  .featured-products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* The scrollable track of items */
  .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;       /* horizontal scrolling */
    scroll-behavior: smooth;/* smooth scroll on arrow clicks */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  /* Big hero card (first item) */
  .big-feature-card {
    flex: 0 0 auto;       /* do not shrink */
    width: 350px;         /* bigger width for the hero card */
    background: 
      linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 
      0 2px 8px rgba(207, 163, 102, 0.1),
      0 1px 4px rgba(184, 148, 31, 0.05);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(207, 163, 102, 0.1);
  }
  .big-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 8px 25px rgba(207, 163, 102, 0.15),
      0 4px 12px rgba(184, 148, 31, 0.1);
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.1), transparent 50%, rgba(184, 148, 31, 0.1));
  }
  .big-feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* Smaller product cards */
  .product-card {
    flex: 0 0 auto;   /* do not shrink */
    width: 180px;     /* card width */
    background: 
      linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 
      0 2px 8px rgba(207, 163, 102, 0.1),
      0 1px 4px rgba(184, 148, 31, 0.05);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(207, 163, 102, 0.1);
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 8px 25px rgba(207, 163, 102, 0.15),
      0 4px 12px rgba(184, 148, 31, 0.1);
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.1), transparent 50%, rgba(184, 148, 31, 0.1));
  }
  .product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .product-card h4 {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }
  
  /********** Arrows **********/
  .arrow {
    background: #CFA366;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.8;
    flex-shrink: 0;
  }
  .arrow:hover {
    opacity: 1;
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  .arrow.left {
    margin-right: 10px;
  }
  .arrow.right {
    margin-left: 10px;
  }
  .arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #666;
  }
  /* FAQ SECTION */
  .faq-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
    background: 
      linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
      radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.15) 0%, transparent 50%);
    border-radius: 24px;
    box-shadow: 
      0 30px 60px rgba(207, 163, 102, 0.2),
      0 15px 30px rgba(184, 148, 31, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(207, 163, 102, 0.1) 60deg, transparent 120deg),
      conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(184, 148, 31, 0.1) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    border-radius: 24px;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 0px;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px 24px 0 0;
    position: relative;
  }
  
  .faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #CFA366, #B8941F, #D4AF37);
    border-radius: 24px 24px 0 0;
  }
  
  .faq-title {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #CFA366, #B8941F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  
  .faq-header .purple-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CFA366, #B8941F);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
  }
  
  .faq-header .purple-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
  }
  
  .faq-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  
  .faq-container {
    max-width: 700px;
    margin: 0 auto;
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 0 0 24px 24px;
    box-shadow: 
      0 15px 40px rgba(207, 163, 102, 0.15),
      0 8px 20px rgba(184, 148, 31, 0.1);
    overflow: hidden;
    border: 1px solid rgba(207, 163, 102, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.05) 50%, transparent 70%),
      linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.05) 50%, transparent 70%);
    pointer-events: none;
  }
  
  .faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
  }
  .faq-item .faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  
  .faq-item.active .faq-answer{
    max-height: 800px; /* large enough to fit your biggest answer */
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #CFA366, #B8941F);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .faq-item.active::before {
    opacity: 1;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }
  
  .faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(168, 85, 247, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .faq-question:hover::before {
    opacity: 1;
  }
  
  .faq-question:hover {
    background-color: #f8fafc;
  }
  
  .faq-question:active {
    background-color: #f1f5f9;
  }
  
  .faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
    text-align: left;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  
  .faq-icon {
    font-size: 1.4rem;
    color: #CFA366;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(207, 163, 102, 0.1);
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #CFA366, #B8941F);
    color: white;
    box-shadow: 0 4px 12px rgba(207, 163, 102, 0.3);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 40px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(168, 85, 247, 0.01));
  }
  
  .faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 30px 40px 40px;
    opacity: 1;
  }
  
  .faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
  }
  
  .faq-answer p:last-child {
    margin-bottom: 0;
  }
  
  .faq-answer ul,
  .faq-answer ol {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 25px;
    font-size: 1.05rem;
  }
  
  .faq-answer li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .faq-answer ul li::before {
    content: '•';
    color: #CFA366;
    font-weight: bold;
    position: absolute;
    left: -20px;
  }
  
  .faq-answer ol li {
    counter-increment: list-counter;
  }
  
  .faq-answer ol li::before {
    content: counter(list-counter) '.';
    color: #CFA366;
    font-weight: bold;
    position: absolute;
    left: -25px;
  }
  
  .faq-answer ul ul,
  .faq-answer ol ol {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .faq-answer ul ul li::before {
    content: '◦';
    color: #B8941F;
  }
  
  .faq-answer strong {
    color: #1e293b;
    font-weight: 700;
  }
  
  .cut-offs {
    max-width: 1200px;
    margin: 40px auto; /* center horizontally, add spacing from top/bottom */
    padding: 20px;
    text-align: center;
  }
  
  .cut-offs-header {
    margin-bottom: 20px;
  }
  
  /* .cut-offs-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #0d0033;
  } */
  
  .cut-offs-header span {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
  }
  
  .cut-offs-container {
    display: flex;
    gap: 20px;
    justify-content: center; /* center the cards horizontally */
  }
  
  .cut-off-card {
    flex: 0 0 auto;
    width: 200px; /* adjust card width if you like */
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.05), transparent 50%, rgba(184, 148, 31, 0.05));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 
      0 2px 5px rgba(207, 163, 102, 0.08),
      0 1px 3px rgba(184, 148, 31, 0.04);
    border: 1px solid rgba(207, 163, 102, 0.1);
    transition: all 0.3s ease;
  }
  
  .cut-off-card:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 6px 20px rgba(207, 163, 102, 0.12),
      0 3px 10px rgba(184, 148, 31, 0.08);
    background: 
      linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
      linear-gradient(45deg, rgba(207, 163, 102, 0.1), transparent 50%, rgba(184, 148, 31, 0.1));
  }
  
  .cut-off-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .cut-off-card p {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }

/* MAIN MENU BAR */
  
 
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  /* MAIN MENU BAR - Desktop Navigation - Removed duplicate */
  .nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    display: inline-block;
  }
  
  /* MEGA MENU */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    display: none;
  }
  
  .mega-column {
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid #eee;
  }
  
  .mega-column:last-child {
    border-right: none;
  }
  
  .category-header {
    background: #f5f5f5;
    padding: 8px 12px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
    border-radius: 4px;
  }
  
  /* iPhone grid layout */
  .mega-column:first-child .category-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .mega-column:first-child .category-list li {
    margin: 0;
  }
  
  .mega-column:first-child .category-list a {
    text-align: center;
    padding: 8px 5px;
    font-size: 12px;
    line-height: 1.2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #333;
  }
  
  .mega-column:first-child .category-list a:hover {
    background: #e0e0e0;
  }
  
  /* Apple Watch grid */
  .watch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .watch-grid a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .watch-grid a:hover {
    background: #e0e0e0;
    color: #333;
  }
  
  /* iPad grid */
  .ipad-grid,
  .ipad-air-grid,
  .ipad-mini-grid,
  .ipad-pro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }
  
  .ipad-grid a,
  .ipad-air-grid a,
  .ipad-mini-grid a,
  .ipad-pro-grid a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 10px;
    transition: all 0.2s ease;
  }
  
  .ipad-grid a:hover,
  .ipad-air-grid a:hover,
  .ipad-mini-grid a:hover,
  .ipad-pro-grid a:hover {
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
  }

  /* Samsung specific styles */
  .samsung-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .samsung-list li {
    margin: 0;
  }

  .samsung-list a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    padding: 8px 5px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    height: 100%;
    transition: all 0.2s ease;
  }

  .samsung-list a:hover {
    background: #e0e0e0;
    color: #333;
  }

  .samsung-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }

  .samsung-grid a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 8px 10px;
    transition: all 0.2s ease;
  }

  .samsung-grid a:hover {
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
  }
  
  .nav-item:hover .mega-menu {
    display: flex;
  }

  /* Store specific styles */
  .nav-item:has(> .nav-link:contains("Store")) .mega-menu {
    width: 1200px;
    transform: translateX(-50%);
    display: none;
  }

  .store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }

  .store-grid a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 8px 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .store-grid a:hover {
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
  }

  /* New styles for the Store mega menu */
  .nav-item:has(> .nav-link:contains("Store")) .mega-menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .nav-item:has(> .nav-link:contains("Store")) .mega-column {
    padding: 0;
    border-right: 1px solid #eee;
  }

  .nav-item:has(> .nav-link:contains("Store")) .mega-column:last-child {
    border-right: none;
  }

  .nav-item:has(> .nav-link:contains("Store")) .category-header {
    background: #f5f5f5;
    color: #333;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 4px;
  }

  /* Add a "New" badge to new items */
  .store-grid a[data-new]::after {
    content: "New";
    background: #28a745;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
  }

  /* Accessories specific styles */
  .nav-item:has(> .nav-link:contains("Accessories")) .mega-menu {
    width: 1400px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .nav-item:has(> .nav-link:contains("Accessories")) .mega-column {
    padding: 0;
    border-right: 1px solid #eee;
  }

  .nav-item:has(> .nav-link:contains("Accessories")) .mega-column:last-child {
    border-right: none;
  }

  .accessories-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .accessories-grid a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 8px 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .accessories-grid a:hover {
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
  }

  /* .category-header {
    background: #f5f5f5;
    color: #333;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 4px;
  } */

/* Navigation Bar Styles */
.page-navigation {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.page-navigation li {
    margin: 0;
    padding: 0;
}

.page-navigation a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-navigation a:hover {
    background-color: #e9ecef;
}

  .page-navigation a.active {
    background-color: #CFA366;
    color: white;
  }

  .page-navigation a.active:hover {
    background-color: #B8941F;
  }

/* Main Navigation */
.main-navigation {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-item i {
    font-size: 1.2rem;
}

.nav-item:hover {
    background-color: #e9ecef;
}

  .nav-item.active {
    background-color: #CFA366;
    color: white;
  }

/* Icons */
.icon-apple, .icon-samsung, .icon-xiaomi, .icon-honor,
.icon-motorola, .icon-others, .icon-accessories, .icon-protection,
.icon-computing, .icon-laptops, .icon-store, .icon-devices {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


#cart-template {
    display: inline-block;
}

/* Cart Styles */
.cart-container {
    position: relative;
    display: inline-block;
    z-index: 1001; /* Ensure the container is above other elements */
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Make sure the icon is visible */
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

.cart-count:not(:empty) {
    display: flex !important;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 1002;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 10px;
    /* Ensure the dropdown is visible */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cart-items {
    min-height: 100px; /* Minimum height to show empty state */
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: white;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
    background: white;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #333;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #ff1f1f;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 2px solid #eee;
    margin-top: auto;
    background: white;
}

.cart-total span {
    font-weight: bold;
    color: #333;
}

#cart-total {
    font-size: 1.1rem;
    color: #4834d4;
}

.empty-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: white;
}

/* Add overlay when cart is open */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.show {
    display: block;
    opacity: 1;
}

/* Ensure the cart dropdown is visible on mobile */
@media (max-width: 768px) {
    .cart-dropdown {
        width: 300px;
        right: 0;
    }
}


.mobile-menu-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #0d0033;
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-container.active {
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0d0033;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobile-menu-back,
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mobile-menu-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* New Mobile Navigation Styles */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:after {
  content: '›';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-submenu.active {
  opacity: 1;
  transform: translateX(0);
}

.submenu-section {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-section h3 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submenu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-section ul li {
  margin: 8px 0;
}

.submenu-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: 0.3s;
}

.submenu-section ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Animation for menu items */
.mobile-nav-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.3s;
}

.mobile-menu-container.active .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.1s * var(--item-index, 0));
}


/* Add to Cart Button Styles */
  .add-to-cart,
  .add-to-cart-btn {
    background-color: #CFA366;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
  }

  .add-to-cart:hover,
  .add-to-cart-btn:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
  }

.add-to-cart:active,
.add-to-cart-btn:active {
    transform: translateY(1px);
}

/* Added to Cart Animation */
.add-to-cart.added,
.add-to-cart-btn.added {
    animation: addedToCart 1s ease;
}

@keyframes addedToCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        background-color: #48BB78;
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .add-to-cart,
    .add-to-cart-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Checkout Button */
  .checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #CFA366;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
  }

  .checkout-btn:hover {
    background-color: #B8941F;
    transform: translateY(-1px);
  }

/* Cart Animation */
@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.bounce {
    animation: bounce 0.3s ease;
}

/* Scrollbar Styles for Cart Items */
.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* ----- Theme tokens (tweak as needed) ----- */
:root{
  --hero-fg: #ffffff;
  --btn-dark: #000000;

  --sb-bg: #ffffff;
  --sb-text: #0f172a;   /* slate-900 */
  --sb-muted: #6b7280;  /* gray-500 */
  --sb-stroke: #e5e7eb; /* gray-200 */
  --sb-shadow: 0 10px 30px rgba(0,0,0,.10);
  --sb-radius: 18px;
}

/* ----- Hero layout (keeps your existing content centered) ----- */
.hero-banner{
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 60vh;
  padding: 48px 16px 88px; /* extra bottom room for the search bar */
}

.hero-content{
  text-align: center;
  color: var(--hero-fg);
  display: grid;
  gap: 8px;
}

.hero-content h2{
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-content p{
  margin: 0 0 10px;
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .95;
}

.btn-shop{
  display: inline-block;
  background: var(--btn-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
}

/* ----- Search bar inside hero ----- */
.hero-search {
  width: min(800px, 90vw);
  margin: 30px auto 10px;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-search::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.hero-search::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(207, 163, 102, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(184, 148, 31, 0.05) 50%, transparent 70%);
  pointer-events: none;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-search:focus-within{
  box-shadow: 0 0 0 2px #111 inset, var(--sb-shadow);
}

.hero-search .field {
  flex: 1 1 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-search .field:last-of-type {
  border-right: none;
}

.hero-search .label {
  font-size: 14px;
  line-height: 1.2;
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
  user-select: none;
}

.hero-search .input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 1.4;
  color: #111827;
  width: 100%;
  font-weight: 500;
}

/* Custom dropdown styling */
.hero-search select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  color: #6b7280;
}

.hero-search select.input:hover {
  color: #111827;
}

.hero-search select.input:focus {
  color: #111827;
}

.hero-search select.input option {
  background-color: #fff;
  color: #111827;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
}

.hero-search select.input option:hover {
  background-color: #f9fafb;
}

.hero-search select.input option:checked {
  background-color: #f3f4f6;
  color: #111827;
}

/* Content Section Styling */
.content-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.content-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.content-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card strong {
  color: #1a1a1a;
  font-weight: 600;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CGU Page Styling */
.cgu-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

.cgu-section {
  margin-bottom: 50px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  word-wrap: break-word;
}

  .cgu-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #CFA366;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

.cgu-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin: 25px 0 15px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cgu-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cgu-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.cgu-section li {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
  overflow: hidden;
  max-width: 100%;
}

.service-item {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
}

.service-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #6c757d;
  text-align: center;
  margin: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

  .contact-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #CFA366 0%, #B8941F 100%);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(207, 163, 102, 0.3);
  }

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.contact-item p {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments for CGU page */
@media (max-width: 768px) {
  .cgu-content {
    padding: 20px 0;
    margin: 0 15px;
  }
  
  .cgu-section {
    padding: 20px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cgu-section h2 {
    font-size: 24px;
  }
  
  .cgu-section h3 {
    font-size: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Additional overflow prevention */
.container {
  overflow-x: hidden;
  max-width: 100%;
}

main.container {
  overflow-x: hidden;
  max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 60px 0;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .content-card {
    padding: 24px 20px;
  }
  
  .content-card h2 {
    font-size: 22px;
  }
}

.hero-search .input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.hero-search .divider{
  width: 1px;
  background: var(--sb-stroke);
  margin: 8px 0;
}

.hero-search .btn {
    align-self: center;
    border: none;
    background: #CFA366;
    color: #fff;
  font-weight: 600;
    font-size: 16px;
  padding: 20px 32px;
  border-radius: 0 16px 16px 0;
    cursor: pointer;
  transition: all 0.3s ease;
    white-space: nowrap;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .hero-search .btn:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }
  .hero-search .btn:active{ transform: translateY(1px); }


/* ===== NEW SECTIONS STYLES ===== */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #CEA367 0%, #B8941F 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content .title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

  .hero-content .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

/* ===== NEW SECTIONS STYLES ===== */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #CEA367 0%, #B8941F 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content .title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

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

.service-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

  .service-card .price {
    display: block;
    font-weight: 600;
    color: #CFA366;
    font-size: 1.1rem;
  }

  .service-link {
    display: inline-block;
    color: #CFA366;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(207, 163, 102, 0.1), transparent);
    position: relative;
    overflow: hidden;
  }
  
  .service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.3), transparent);
    transition: left 0.5s ease;
    border-radius: 20px;
  }
  
  .service-link:hover::before {
    left: 100%;
  }
  
  .service-link:hover {
    color: #B8941F;
    background: linear-gradient(135deg, rgba(207, 163, 102, 0.2), rgba(184, 148, 31, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 102, 0.3);
  }

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

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

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
  .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #CFA366 0%, #B8941F 100%);
    color: white;
    text-align: center;
  }

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

  .cta-button {
    background: white;
    color: #CFA366;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(207, 163, 102, 0.3);
  }

/* ===== AMAZING PARTICLE EFFECTS ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #CFA366, #B8941F);
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(207, 163, 102, 0.5);
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 6s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  animation-duration: 8s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 6s;
  animation-duration: 7s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 7s;
  animation-duration: 9s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 8s;
  animation-duration: 6s;
}

.particle:nth-child(10) {
  left: 95%;
  animation-delay: 9s;
  animation-duration: 8s;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.nav-link {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 163, 102, 0.5), transparent);
  transition: left 0.8s ease;
  border-radius: 25px;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(207, 163, 102, 0.15), rgba(184, 148, 31, 0.1));
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 25px;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(207, 163, 102, 0.3),
    0 4px 15px rgba(184, 148, 31, 0.2);
  border: 1px solid rgba(207, 163, 102, 0.3);
  background: linear-gradient(135deg, rgba(207, 163, 102, 0.1), rgba(184, 148, 31, 0.05));
}

  .nav-link.active {
    background: linear-gradient(135deg, #CFA366, #B8941F);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 
      0 6px 20px rgba(207, 163, 102, 0.4),
      0 3px 10px rgba(184, 148, 31, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
  }

.nav-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: shimmer-active 2s ease-in-out infinite;
  border-radius: 20px;
}

.nav-link.active:hover {
  background: linear-gradient(135deg, #B8941F, #CFA366);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(207, 163, 102, 0.5),
    0 5px 20px rgba(184, 148, 31, 0.4);
}

@keyframes shimmer-active {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* ===== GLOWING EFFECTS ===== */
.btn-shop, .cta-button, .hero-search .btn {
  position: relative;
  overflow: hidden;
}

.btn-shop::before, .cta-button::before, .hero-search .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-shop:hover::before, .cta-button:hover::before, .hero-search .btn:hover::before {
  left: 100%;
}

/* ===== PULSING ANIMATIONS ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(207, 163, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(207, 163, 102, 0.6), 0 0 40px rgba(184, 148, 31, 0.3);
  }
}

.stat-card.featured {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== FLOATING ELEMENTS ===== */
@keyframes float-up {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.slide-image img {
  animation: float-up 4s ease-in-out infinite;
}

.slide-image:nth-child(2) img {
  animation-delay: 1s;
}

.slide-image:nth-child(3) img {
  animation-delay: 2s;
}

/* ===== SHIMMER EFFECTS ===== */
@keyframes shimmer-effect {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero-content h2 {
  background: linear-gradient(45deg, #ffffff, #CFA366, #B8941F, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-effect 3s ease-in-out infinite;
}

/* ===== MAGNETIC HOVER EFFECTS ===== */
.press-item, .stat-card, .product-card, .big-feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-item:hover, .stat-card:hover, .product-card:hover, .big-feature-card:hover {
  transform: translateY(-8px) scale(1.05);
}

/* ===== NAVIGATION CONTAINER ENHANCEMENTS ===== */
.nav-links {
  position: relative;
  z-index: 10;
}

.nav-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(207, 163, 102, 0.05), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-links:hover::before {
  opacity: 1;
}

/* ===== ENHANCED NAVIGATION SPACING ===== */
.nav-links .nav-link {
  margin: 0 5px;
  position: relative;
  z-index: 2;
}

/* ===== PULSING ACTIVE STATE ===== */
@keyframes pulse-active {
  0%, 100% {
    box-shadow: 
      0 6px 20px rgba(207, 163, 102, 0.4),
      0 3px 10px rgba(184, 148, 31, 0.3);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(207, 163, 102, 0.6),
      0 4px 15px rgba(184, 148, 31, 0.5);
  }
}

.nav-link.active {
  animation: pulse-active 3s ease-in-out infinite;
}

/* ===== ENHANCED SHADOWS ===== */
.hero-search, .professionals-slider .slide, .stat-card, .faq-container {
  box-shadow: 
    0 20px 40px rgba(207, 163, 102, 0.15),
    0 10px 20px rgba(184, 148, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* --- Compact hero search controls on mobile --- */
@media (max-width: 768px) {
  .hero-search {
    width: min(560px, 92vw);
    border-radius: 14px;
    margin: 20px auto 8px;
  }
  .hero-search .field {
    padding: 12px 14px;
  }
  .hero-search .label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .hero-search .input {
    padding: 9px 12px;
    font-size: 14.5px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
  }
  .hero-search select.input {
    padding-right: 34px; /* space for chevron */
    background-position: right 10px center;
    background-size: 18px 18px;
    min-height: 40px;
  }
  .hero-search select.input option { font-size: 14.5px; padding: 10px 12px; }
  .hero-search .btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .hero-search {
    width: 94vw;
    border-radius: 12px;
    margin: 16px auto 6px;
  }
  .hero-search .field {
    padding: 10px 12px;
  }
  .hero-search .label {
    font-size: 12.5px;
    margin-bottom: 6px;
  }
  .hero-search .input {
    padding: 8px 10px;
    font-size: 13.5px;
  }
  .hero-search select.input {
    padding-right: 30px;
    background-position: right 8px center;
    background-size: 14px 14px;
    min-height: 38px;
  }
  .hero-search select.input option { font-size: 13.5px; padding: 9px 10px; }
  .hero-search .btn {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* ===== Custom mobile select (compact, modern) ===== */
@media (max-width: 768px) {
  .custom-select { position: relative; width: 100%; }
  .custom-select.is-open .custom-options { display: block; }
  .custom-select select { display: none; }
  .custom-select-trigger{
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; width: 100%;
    padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 10px;
    background: #fff; color:#111827; font-size: 14.5px; cursor: pointer;
    box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  }
  .custom-select-trigger .chev{ width: 18px; height: 18px; color: #6b7280; }
  .custom-options{
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    display: none; max-height: 220px; overflow: auto;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    z-index: 20;
  }
  .custom-option{ padding: 10px 12px; font-size: 14.5px; color:#374151; cursor: pointer; }
  .custom-option:hover{ background: #f9fafb; }
  .custom-option.is-selected{ background: #fff7ea; color:#111827; font-weight: 600; }
}

/* Ensure desktop uses native select only */
@media (min-width: 769px) {
  .custom-select{ display: none !important; }
  .custom-select select{ display: inline-block !important; }
}

/* ===== PROFESSIONAL CARDS SLIDER STYLES ===== */
.professional-cards-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.professional-cards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(207, 163, 102, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cards-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.cards-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1a1a1a, #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cards-header p {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.cards-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
  height: 650px;
  /* Allow vertical scrolling while enabling horizontal gestures inside */
  touch-action: pan-y;
}

.cards-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
  /* Ensure vertical scroll remains enabled on mobile */
  touch-action: pan-y;
}

.card-slide {
  min-width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 0;
}

.card-slide.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 500px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 600px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

.card-image-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-overlay {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #CFA366, #B8941F);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(207, 163, 102, 0.3);
}

.card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.service-tag {
  background: #f3f4f6;
  color: #6b7280;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.learn-more-btn {
  background: linear-gradient(135deg, #CFA366, #B8941F);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.learn-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.learn-more-btn:hover::before {
  left: 100%;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(207, 163, 102, 0.4);
}

.slider-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0;
  box-sizing: border-box;
}

.nav-arrow {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  flex-shrink: 0;
}

.nav-arrow:hover {
  background: linear-gradient(135deg, #CFA366, #B8941F);
  border-color: #CFA366;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207, 163, 102, 0.3);
}

.nav-arrow:active {
  transform: translateY(0) scale(0.95);
}

.prev-arrow {
  margin-left: -28px;
}

.next-arrow {
  margin-right: 108px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.indicator.active {
  background: linear-gradient(135deg, #CFA366, #B8941F);
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(207, 163, 102, 0.3);
}

/* Logo Image Styling */
.logo-image {
  height: 150px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover .logo-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.footer-logo-image {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.indicator.active::before {
  background: white;
}

.indicator:hover {
  background: rgba(207, 163, 102, 0.6);
  transform: scale(1.1);
}

/* Responsive styles for professional cards slider */
@media (max-width: 768px) {
  .professional-cards-section {
    padding: 80px 0;
  }
  
  .cards-header h2 {
    font-size: 2.5rem;
  }
  
  .cards-header p {
    font-size: 1.1rem;
  }
  
  .cards-slider-container {
    height: auto;
    padding: 0 20px;
  }
  
  .cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    height: auto;
  }
  
  .card-slide {
    position: relative !important;
    display: flex !important;
    min-width: 100%;
    opacity: 1;
    transform: none;
    height: auto;
  }
  
  .card-slide.active {
    display: flex !important;
    opacity: 1;
    transform: none;
    z-index: 1;
  }
  
  .service-card {
    width: 100%;
    max-width: none;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .nav-arrow {
    display: none;
  }
  
  .slider-indicators {
    display: none;
  }
}

@media (max-width: 480px) {
  .professional-cards-section {
    padding: 60px 0;
  }
  
  .cards-header h2 {
    font-size: 2rem;
  }
  
  .cards-header p {
    font-size: 1rem;
  }
  
  .cards-slider-container {
    padding: 0 15px;
  }
  
  .cards-wrapper {
    gap: 15px;
  }
  
  .card-image-container {
    height: 220px;
  }
  
  .card-content {
    padding: 16px;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.95rem;
  }
  
  .card-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .learn-more-btn {
    width: 100%;
  }
  
  .nav-arrow {
    display: none;
  }
  
  .slider-indicators {
    display: none;
  }
}

/* ===== RESPONSIVE PARTICLE EFFECTS ===== */
@media (max-width: 768px) {
  .particle {
    width: 3px;
    height: 3px;
  }
  
  .particle:nth-child(n+6) {
    display: none;
  }
}

/* ===== ADDITIONAL MOBILE RESPONSIVENESS IMPROVEMENTS ===== */
@media (max-width: 768px) {
  /* Ensure proper spacing on mobile */
  .container, .main-content, .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  /* Hero section mobile improvements */
  .hero-bannerr, .hero-section {
    padding: 60px 16px 40px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-search {
    margin-top: 30px;
    padding: 20px;
  }
  
  /* Cards and grid improvements */
  .cards-grid, .services-grid, .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .card, .service-item, .stat-card {
    margin-bottom: 16px;
  }
  
  /* Form improvements */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Button improvements */
  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Text improvements */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Spacing improvements */
  .section {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  
  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Video responsiveness */
  video {
    width: 100%;
    height: auto;
  }
  
  /* Table responsiveness */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Modal improvements */
  .modal {
    padding: 20px;
    margin: 20px;
  }
  
  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
  
  /* Additional touch target improvements */
  .slider-nav .nav-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px;
  }
  
  .slider-indicators .indicator {
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
  }
  
  /* Professional cards mobile improvements */
  .professional-card {
    margin-bottom: 20px;
  }
  
  .professional-card .card-image-container {
    height: 200px;
  }
  
  .professional-card .card-content {
    padding: 16px;
  }
  
  /* FAQ mobile improvements */
  .faq-question {
    padding: 16px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }
  
  /* Footer mobile improvements */
  .footer-social .social-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px;
  }
  
  /* Search form mobile improvements */
  .hero-search .field {
    margin-bottom: 16px;
  }
  
  .hero-search .btn {
    width: 100%;
    margin-top: 16px;
  }
  
  /* Navigation mobile improvements */
  .nav-container {
    padding: 0 16px;
  }
  
  .nav-logo {
    left: 16px;
  }
  
  .mobile-menu-toggle {
    right: 16px;
  }
}

@media (max-width: 480px) {
  .press-grid {
    margin-left: -11px;
  }
}

/* --- Pro dashboard: hourly picker and time chips --- */
.day-time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.day-time-slot { padding: 10px 12px; border-radius: 8px; text-align: center; font-weight: 600; cursor: pointer; user-select: none; border: 1px solid #e5e7eb; }
.day-time-slot.free { background: #e6f0ff; color: #1e3a8a; }
.day-time-slot.selected { background: #1e3a8a; color: #fff; border-color: #1e3a8a; }
.day-time-slot.booked { background: #fee2e2; color: #991b1b; border-color: #fecaca; cursor: not-allowed; }

.time-chip { display: inline-flex; align-items: center; gap: 6px; background: #eef2ff; color: #1e3a8a; border-radius: 16px; padding: 6px 10px; margin: 4px 6px; }
.btn-remove-chip { background: transparent; border: none; color: #1e3a8a; cursor: pointer; font-size: 14px; }