
  :root {
    --black: #1a1a1a;
    --white: #ffffff;
    --accent: #003366;
    --accent-light: #e6eff9;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-400: #757575;
    --gray-600: #424242;
    --gray-800: #212121;
    --border-color: #cccccc;
    --success: #2e7d32;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-hover: 0 6px 20px rgba(0,51,102,0.2);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: auto; }
  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    font-size: 15px;
    line-height: 1.6;
  }
  h1,h2,h3,h4 { 
    font-family: 'Merriweather', serif; 
    line-height: 1.3; 
    font-weight: 700;
  }

  /* TRADITIONAL NAV */
  nav {
    position: static;
    background: var(--white);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .logo { 
    font-family: 'Merriweather', serif; 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--accent);
  }
  .logo span { color: var(--black); }
  .nav-links { 
    display: flex; 
    gap: 1.5rem; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
  }
  .nav-links a { 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--gray-600); 
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover { 
    color: var(--accent); 
    border-bottom-color: var(--accent);
  }
  .nav-cta { 
    background: var(--accent); 
    color: var(--white); 
    padding: 0.6rem 1.2rem; 
    border: 2px solid var(--accent);
    font-size: 0.9rem; 
    font-weight: 600; 
    text-decoration: none; 
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .nav-cta:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }
.nav-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-btn-secondary { 
  background: var(--white); 
  color: var(--accent); 
  padding: 0.6rem 1.2rem; 
  border: 2px solid var(--accent);
  font-size: 0.9rem; 
  font-weight: 600; 
  text-decoration: none; 
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-btn-secondary:hover { 
  background: var(--accent); 
  color: var(--white);
}
  /* HERO - Traditional Layout */
  /* HERO WITH BACKGROUND IMAGE */
.hero {
  position: relative;
  padding: 5rem 2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* Replace with your actual image path */
  background-image: url('../imgs/hero/slider-img.jpg.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Optional: parallax effect */
}

/* Dark overlay for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.7) 100%); */
  z-index: 1;
}

/* Ensure content is above overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--accent);
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.hero h1 { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
  color: var(--white);
  line-height: 1.2;
}

.hero h1 span { 
  color: var(--accent);
  font-weight: 700;
}

.hero p { 
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.9); 
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-ctas { 
  display: flex; 
  gap: 0.75rem; 
  flex-wrap: wrap; 
  margin-bottom: 2rem; 
}

.btn-primary {
  background: var(--accent); 
  color: var(--white);
  padding: 0.75rem 1.5rem; 
  border: 2px solid var(--accent);
  font-size: 0.95rem; 
  font-weight: 600; 
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-primary:hover { 
  background: var(--white); 
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border: 2px solid var(--accent); 
  color: var(--accent);
  padding: 0.75rem 1.5rem; 
  border-radius: 4px;
  font-size: 0.95rem; 
  font-weight: 600; 
  text-decoration: none;
  background: transparent;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-secondary:hover { 
  background: var(--white); 
  color: var(--accent);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-stats { 
  display: flex; 
  gap: 2rem; 
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.hero-stat .num { 
  font-family: 'Merriweather', serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--accent);
}

.hero-stat .lbl { 
  font-size: 0.85rem; 
  color: var(--accent); 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
    min-height: 500px;
    background-attachment: scroll; /* Disable parallax on mobile */
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
/* Tab Styles */
.product-tabs {
  margin-top: 2rem;
}

.tab-buttons {
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 12px 32px;
  margin: 0 8px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent);
  background: white;
  color: var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #f0f8ff;
}

.tab-btn.active {
  background: var(--accent);
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

/* Product Specs Table */
.product-specs {
  margin: 1rem 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #dee2e6;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 8px;
  text-align: left;
  font-size: 14px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #333;
}

.specs-table td:last-child {
  color: var(--accent);
  font-weight: 600;
}

.specs-table .moq {
  text-align: center;
  background: #fff3cd;
  color: #856404;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 4px;
  }
  
  .specs-table td {
    font-size: 13px;
    padding: 6px;
  }
}
  .product-card-mini {
    background: var(--white); 
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .product-card-mini:hover {
    box-shadow: var(--shadow-md);
  }
  .product-card-mini:first-child { 
    grid-column: 1 / -1; 
    background: var(--accent); 
    color: var(--white); 
  }
  .product-card-mini:first-child .pcard-name { color: var(--gray-200); }
  .pcard-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
  .pcard-name { 
    font-size: 0.7rem; 
    font-weight: 600; 
    color: var(--gray-400); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 0.3rem;
  }
  .pcard-title { 
    font-family: 'Merriweather', serif; 
    font-size: 1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
  }
  .pcard-tag { 
    display: inline-block; 
    background: var(--accent-light); 
    color: var(--accent); 
    font-size: 0.7rem; 
    padding: 0.2rem 0.6rem; 
    border: 1px solid var(--accent);
    font-weight: 600;
    border-radius: 4px;
  }

  /* SECTION COMMONS - Traditional */
  section { padding: 3rem 2rem; }
  .container-wide { max-width: 1200px; margin: 0 auto; }
  .section-tag { 
    font-size: 0.75rem; 
    font-weight: 700; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
  }
  .section-title { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    color: var(--black);
  }
  .section-sub { 
    color: var(--gray-600); 
    font-size: 1rem; 
    max-width: 600px; 
    margin-bottom: 2rem;
  }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto 2rem; }

  /* STATIC TICKER */
  .ticker-wrap { background: var(--accent); color: var(--white); padding: 1rem 0; overflow: hidden; }
  .ticker { display: flex; animation: ticker 25s linear infinite; white-space: nowrap; }
  .ticker-item { font-family: 'Open Sans', sans-serif; font-size: 0.875rem; font-weight: 400; padding: 0 2.5rem;}
  .ticker-item span { color: #ffd700; margin-right: 2.5rem; }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* PRODUCTS GRID - Shadow Cards */
  .products-grid { margin-top: 2rem; }
  .prod-card {
    border-radius: 4px;
    background: var(--white);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .prod-card:hover { 
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
  .prod-card-img {
    /* height: 180px;  */
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .prod-card-img img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    transition: transform 0.3s ease;
  }
  .prod-card:hover .prod-card-img img {
    transform: scale(1.03);
  }
  .prod-card-body { padding: 1.25rem; }
  .prod-card-body h3 { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
  }
  .prod-card-body p { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
    margin-bottom: 1rem; 
  }
  .prod-tags { 
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
    margin-top: 0.5rem;
  }

  .prod-tag { 
    font-size: 0.8rem; 
    font-weight: 600;
    padding: 0.5rem 0.9rem; 
    border: 2px solid;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .prod-tag:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }

  .btn-icon {
    font-size: 1rem;
    line-height: 1;
  }

  /* WhatsApp Button - Green */
  .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #128C7E;
  }
  .btn-whatsapp:hover {
    background: #128C7E;
    border-color: #075E54;
  }

  /* Enquiry Button - Traditional Blue */
  .btn-enquiry {
    background: var(--accent);
    color: #ffffff;
    border-color: #002244;
  }
  .btn-enquiry:hover {
    background: #002244;
    border-color: var(--black);
  }

  /* Featured Card Button Overrides */
  .prod-card.featured .btn-whatsapp {
    background: #ffffff;
    color: #25D366;
    border-color: #ffffff;
  }
  .prod-card.featured .btn-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
  }

  .prod-card.featured .btn-enquiry {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  .prod-card.featured .btn-enquiry:hover {
    background: #ffffff;
    color: var(--accent);
  }

  /* Responsive Button Adjustments */
  @media (max-width: 575px) {
    .prod-tag {
      font-size: 0.75rem;
      padding: 0.4rem 0.7rem;
    }
    .btn-icon {
      font-size: 0.9rem;
    }
  }

  /* CLIENTS SECTION - Logo Grid with Placeholders */
  .clients-section { 
    background: var(--gray-100); 
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .client-logos { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center; 
    flex-wrap: wrap; 
    justify-content: center;
    padding: 1.5rem 0;
  }
  .client-logo { 
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--gray-600);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .client-logo:hover {
    box-shadow: var(--shadow-md);
  }
  .client-logo img {
    max-width: 100%;
    max-height: 50px;
    opacity: 0.7;
  }
  .client-logo img:hover {
    opacity: 1;
  }

  /* MARKETPLACE COLLECTIONS */
  .marketplace-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  .marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .marketplace-card {
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .marketplace-card:hover {
    box-shadow: var(--shadow-md);
  }
  .marketplace-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
  }
  .marketplace-card .btn-shop {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .marketplace-card .btn-shop:hover {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* MILESTONES SECTION */
  .milestones-section {
    background: var(--accent);
    color: var(--white);
    padding: 2.5rem 2rem;
  }
  .milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .milestone-item .number {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
  }
  .milestone-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
  }

  /* USP CARDS - Shadow Style */
  .usp-section { background: var(--white); }
  .usp-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .usp-card { 
    border-radius: 4px; 
    padding: 1.5rem; 
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .usp-card:hover { 
    box-shadow: var(--shadow-hover);
  }
  .usp-icon { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    display: block;
    color: var(--accent);
  }
  .usp-card h3 { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
  }
  .usp-card p { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
  }

  /* VIDEO TESTIMONIALS */
  .video-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .video-card {
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .video-card:hover {
    box-shadow: var(--shadow-md);
  }
  .video-placeholder {
    height: 160px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
  }
  .video-placeholder:hover {
    background: var(--gray-200);
    color: var(--accent);
  }
  .video-title {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Merriweather', serif;
  }

  /* TESTIMONIALS - Simple Cards */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-card { 
  border-radius: 4px; 
  padding: 1.5rem; 
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
}
.testi-stars { 
  color: #ffc107; 
  font-size: 1rem; 
  margin-bottom: 0.75rem; 
  letter-spacing: 0.1rem;
}
.testi-text { 
  font-size: 0.95rem; 
  color: var(--gray-800); 
  margin-bottom: 1rem; 
  font-style: italic;
}
.testi-author { 
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
}
.testi-name { 
  font-weight: 700; 
  font-size: 0.9rem;
  font-family: 'Merriweather', serif;
}
.testi-biz { 
  font-size: 0.8rem; 
  color: var(--gray-400); 
}

/* Google Reviews Badge - Horizontal Wide */
.google-reviews-badge-wrapper {
  margin: 2rem auto;
  max-width: 900px;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  width: 100%;
  justify-content: center;
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  flex-shrink: 0;
}

.review-rating {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-shrink: 0;
}

.rating-score {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.25rem;
}

.rating-total {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.review-divider {
  color: var(--gray-300);
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
}

.review-count {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-shrink: 0;
}

.count-number {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.1rem;
}

.count-label {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Responsive */
@media (max-width: 768px) {
  .google-reviews-badge-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .google-reviews-badge {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    justify-content: center;
  }
  
  .review-stars {
    font-size: 1rem;
  }
  
  .rating-score {
    font-size: 1.1rem;
  }
  
  .review-divider {
    display: none;
  }
}
  /* FAQ - Simple Accordion */
  .faq-section { background: var(--white); }
  .faq-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .faq-item { 
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .faq-item:hover {
    box-shadow: var(--shadow-md);
  }
  .faq-q { 
    font-weight: 700; 
    font-size: 0.95rem; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-toggle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.2s;
  }
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  .faq-a { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
    display: none;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
  }
  .faq-item.active .faq-a { 
    display: block; 
  }

  /* QUOTE FORM - Traditional */
  .quote-strip { 
    background: var(--accent-light); 
    border-top: 2px solid var(--accent); 
    border-bottom: 2px solid var(--accent); 
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
  }
  .quote-form { 
    display: flex; 
    gap: 0.75rem; 
    flex-wrap: wrap; 
    margin-top: 1rem;
  }
  .quote-form input, .quote-form select {
    flex: 1; 
    min-width: 150px; 
    padding: 0.6rem 1rem; 
    border: 2px solid var(--border-color);
    border-radius: 4px; 
    background: var(--white); 
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .quote-form input:focus, .quote-form select:focus { 
    border-color: var(--accent); 
    outline: none;
    box-shadow: var(--shadow-md);
  }
  .quote-form button { 
    background: var(--accent); 
    color: var(--white); 
    padding: 0.6rem 1.5rem; 
    border: 2px solid var(--accent);
    border-radius: 4px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .quote-form button:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* FINAL CTA - Traditional */
  .final-cta-section {
    background: var(--accent); 
    text-align: center; 
    padding: 3rem 2rem;
    color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
  }
  .final-cta-section h2 { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    font-family: 'Merriweather', serif;
  }
  .final-cta-section p { 
    color: var(--gray-200); 
    font-size: 1rem; 
    margin-bottom: 2rem; 
  }
  .cta-cluster { 
    display: flex; 
    gap: 0.75rem; 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  .btn-gold { 
    background: #ffd700; 
    color: var(--black); 
    padding: 0.75rem 1.75rem; 
    border: 2px solid #ffd700;
    border-radius: 4px; 
    font-size: 0.95rem; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-gold:hover { 
    background: var(--white); 
    border-color: var(--white);
    box-shadow: var(--shadow-md);
  }
  .btn-ghost { 
    border: 2px solid var(--white); 
    color: var(--white); 
    padding: 0.75rem 1.75rem; 
    border-radius: 4px; 
    font-size: 0.95rem; 
    font-weight: 600; 
    text-decoration: none; 
    background: transparent;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-ghost:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* FOOTER - Traditional */
  footer { 
    background: var(--gray-800); 
    color: var(--gray-200); 
    padding: 2.5rem 2rem; 
  }
  .footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-logo { 
    font-family: 'Merriweather', serif; 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 1rem;
    color: var(--white);
  }
  .footer-logo span { color: #ffd700; }
  .footer-desc { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    margin-bottom: 1rem; 
  }
  .footer-contact { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    line-height: 1.8; 
  }
  .footer-contact a { 
    color: var(--gray-200); 
    text-decoration: none; 
  }
  .footer-contact a:hover { text-decoration: underline; }
  .footer-col h4 { 
    font-family: 'Merriweather', serif; 
    font-size: 0.9rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    color: var(--gray-200); 
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-600);
    padding-bottom: 0.5rem;
  }
  .footer-col ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    padding: 0; 
  }
  .footer-col ul a { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    text-decoration: none; 
  }
  .footer-col ul a:hover { 
    color: var(--white); 
    text-decoration: underline; 
  }
  .footer-bottom { 
    border-top: 1px solid var(--gray-600); 
    padding-top: 1.5rem; 
    margin-top: 2rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.8rem; 
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badges { 
    display: flex; 
    gap: 0.75rem; 
    flex-wrap: wrap; 
  }
  .trust-badge { 
    background: var(--gray-600); 
    border: 1px solid var(--gray-400); 
    border-radius: 4px; 
    padding: 0.3rem 0.7rem; 
    font-size: 0.75rem; 
    color: var(--gray-200);
    box-shadow: var(--shadow-sm);
  }

  /* CHAT WIDGET PLACEHOLDER */
  .chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
  }
  .chat-widget:hover {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow-hover);
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .nav-links { display: none; }
  }
  
  @media (max-width: 575px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
    .quote-form { flex-direction: column; }
    .quote-form button { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-cluster { flex-direction: column; align-items: center; }
    .btn-gold, .btn-ghost { width: 100%; max-width: 280px; }
    .client-logo { width: 100px; height: 50px; font-size: 0.75rem; }
  }

  /* Partners Section */
.partners-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}


/* Partners Grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.partner-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 150px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.partner-logo-img {
  max-width: 120px;
  height: 50px;
  object-fit: contain;
}

.fpo {
  color: #000;
  font-family: Arial, sans-serif;
  border: 3px solid #000;
  padding: 0.25rem 0.75rem;
  border-radius: 50%;
  font-size: 1.2rem;
}

.snabbit {
  color: #ff6b6b;
  font-family: Arial, sans-serif;
}

.trackon {
  color: #333;
  font-family: Arial, sans-serif;
}

/* Solutions Section */
.solutions-section {
  max-width: 800px;
  margin: 0 auto;
}

.solutions-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.solutions-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .partners-grid {
    gap: 1rem;
  }
  
  .partner-card {
    padding: 1rem 1.5rem;
    min-width: 120px;
  }
  
  .partner-logo {
    font-size: 1.2rem;
    height: 40px;
  }
  
  .solutions-title {
    font-size: 1.5rem;
  }
  
  .solutions-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .partners-section {
    padding: 2rem 0;
  }
  
  .partner-card {
    min-width: 100px;
    padding: 0.75rem 1rem;
  }
  
  .partner-logo {
    font-size: 1rem;
  }
}

/* Social Media QR Section Styling */
.social-qr-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.qr-card {
  background: var(--white, #ffffff);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%; /* Ensures all cards are same height in a row */
  border: 1px solid rgba(0,0,0,0.05);
}

.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.qr-code {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #ffffff);
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.twitter { background: #000000; }
.social-icon.linkedin { background: #0A66C2; }
.social-icon.youtube { 
  background: #FF0000; 
}
#submitBtn {
  position: relative;
  min-width: 140px;
}

#submitBtn .spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
  /* Social Media Icons - Circular Outlined */
  .social-icons {
    display: flex;
    gap: 12px;
    margin: 1.2rem 0;
  }
  
  .social-icons a {
    color: var(--gray-400);
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .social-icons svg {
    width: 18px;
    height: 18px;
  }