/* Base Styles */
body {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  img {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header Styles */
.site-header {
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header container with spacing and alignment */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.logo {
  height: 60px;
  display: block;
}

/* Navigation Styles */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-list a i {
  font-size: 1.1em;
  margin-right: 0.25em;
}

.nav-list a:hover {
  color: #007bff;
}

/* Header Actions: Buttons for call, WhatsApp, email, Facebook */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.45rem 0.95rem;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, filter 0.2s;
  border: none;
  outline: none;
}

.header-action-btn i {
  font-size: 1.1em;
}

/* Individual button styles */
.call-btn {
  background: #ffc107;
  color: #222;
}

.call-btn:hover {
  background: #e6b206;
  color: #111;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 40px;      /* set width */
  height: 40px;     /* set height */
  display: flex;    /* center icon */
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;  /* adjust icon size as needed */
  padding: 0;         /* remove extra padding if any */
}

.whatsapp-btn:hover {
  background: #1ebc59;
  color: #fff;
}

.email-btn {
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  width: 40px;      /* set width */
  height: 40px;     /* set height */
  display: flex;    /* center icon */
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;  /* adjust icon size as needed */
  padding: 0;         /* remove extra padding if any */
}

.email-btn:hover {
  background: #0056b3;
  color: #fff;
}

.fb-btn {
  background: #1877f3;
  color: #fff;
  border-radius: 50%;
  width: 40px;      /* set width */
  height: 40px;     /* set height */
  display: flex;    /* center icon */
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;  /* adjust icon size as needed */
  padding: 0;         /* remove extra padding if any */
}

.fb-btn:hover {
  background: #145db2;
  color: #fff;
}

.header-action-btn:hover {
  filter: brightness(0.96);
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  text-decoration: none;
}

/* Hamburger Menu: Hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  margin-left: 0.5rem;
  color: #333;
}

.menu-toggle:focus {
  outline: 2px solid #007bff;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .header-container {
    padding: 0 1rem;
  }
  .main-nav .nav-list {
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions {
    gap: 0.6rem;
  }
}

@media (max-width: 650px) {

  .logo-link {
    margin-bottom: 0.4rem;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.3rem;
  }
  .logo {
    height: 50px;
    display: block;
  }
}
/* --- FORCE LOGO + ACTIONS IN SAME ROW --- */
.header-container {
  flex-wrap: nowrap !important;   /* Prevents stacking */
}

@media (max-width: 900px) {
  .header-container {
    flex-wrap: nowrap !important; /* Still prevent stacking on mobile */
  }
  .logo-link {
    margin-bottom: 0 !important;  /* Remove extra margin that causes stacking */
  }
  .header-actions {
    width: auto !important;
    margin-top: 0 !important;
    flex-wrap: nowrap !important; /* Prevent action buttons from wrapping */
    overflow-x: auto;             /* Allow scroll if too many buttons */
    gap: 0.45rem;
  }
}

/* On even smaller screens, shrink padding and logo size for fit */
@media (max-width: 650px) {
  .header-container {
    padding: 0 0.3rem !important;
  }
  .logo {
    height: 50px !important;
  }
  .header-actions {
    gap: 0.28rem !important;
    max-width: 60vw;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .header-actions::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 420px) {
  .logo {
    height: 32px !important;
  }
  .header-action-btn {
    font-size: 0.93rem !important;
    padding: 0.33rem 0.54rem !important;
  }
}

/* For Accessibility: Show focus on all header links and buttons */
.logo-link:focus,
.nav-list a:focus,
.header-action-btn:focus,
.menu-toggle:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
  /* Hero Section (Dark) */
  .hero {
    background: linear-gradient(to right, #111, #1e1e1e);
    color: #fff;
    padding: 4rem 0;
  }
  
  .hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    
  }
  
  .hero-text {
    max-width: 600px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    transition: background 0.3s ease;
  }
  
  .btn.primary {
    background: #ffc107;
    color: #000;
  }
  
  .btn.secondary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
  }





  .trusted-logos {
    background: linear-gradient(to right, #111, #1e1e1e); /* same as hero */
    color: #fff;
    padding: 3rem 0;
    text-align: center;
   
  }
  
  .trusted-logos .trusted-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffc107; /* match hero button */
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .trusted-logos .logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .trusted-logos .logo-row img {
    max-height: 50px;
    max-width: 120px;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  
  .trusted-logos .logo-row img:hover {
    filter: none;
    opacity: 1;
  }







  
  /* Categories */
  .categories {
    background-color: #e9ecef;
    padding: 4rem 0;
    text-align: center;
  }
  
  .category-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .category-card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 240px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-card img {
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  /* Specials Hero */
  .flag-day-specials-hero {
    background: linear-gradient(to right, #111, #1e1e1e); /* Dark gradient */
  color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .flag-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .flag-hero-text {
    flex: 1 1 400px;
    text-align: left;
  }
  
  .flag-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .flag-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
  }
  
  .flag-cta {
    display: inline-block;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
  }
  
  .flag-cta:hover {
    background: #e0ac06;
  }
  
  .flag-hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  /* Countdown */
  .countdown {
    background-color: #fff8e1;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 2px dashed #ffc107;
    border-radius: 10px;
    text-align: center;
  }
  
  .countdown p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
  }
  
  .timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d63384;
  }
  
  /* Services Section */
  .services-section {
    background-color: #f7f8fa;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .services-section .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    height: 150px;
    width: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    color: #007bff;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #333;
  }
  
  /* Money Transfer */
  .money-transfer {
    background-color: #d1ecf1;
    padding: 4rem 0;
    text-align: center;
  }
  
  .transfer-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .transfer-text {
    max-width: 400px;
    text-align: left;
  }
  
  /* Location */
  .location {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: #ffffff;
    padding: 4rem 0;
    text-align: center;
  }
  
  .testimonial {
    display: none;
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
  }
  
  .testimonial.active {
    display: block;
  }
  
  /* Footer */
  .site-footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
  }
  
  .site-footer a {
    color: #ffc107;
  }
  
  .social-media {
    margin: 1rem 0;
  }
  
  .social-icon {
    margin: 0 10px;
    font-size: 1.5rem;
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .flag-hero-content,
    .hero-content,
    .transfer-grid {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 300px;
    }
  
    .main-nav .nav-list {
      flex-direction: column;
      display: none;
    }
  
    .menu-toggle {
      display: inline-block;
    }
  
    .nav-list.show {
      display: flex;
    }
  
    .call-btn {
      display: none;
    }
  
    .services-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      padding: 1.5rem 1rem;
    }
  
    .service-card h3 {
      font-size: 1.1rem;
    }
  
    .service-card p {
      font-size: 0.9rem;
    }
  }



  .mobile-plans-section {
    background: #fff;
    padding: 2rem 0;
  }
  
  .mobile-plans-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .mobile-plans-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .mobile-plans-section .plans-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .plans-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .plan-card {
    background: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 2px 8px #0001;
    padding: 1.5rem 1rem;
    min-width: 220px;
    max-width: 300px;
    width: 100%;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .plan-logo img {
    height: 38px;
    margin-bottom: 1rem;
    max-width: 90%;
  }
  
  .plan-details {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .plan-details li {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .plans-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 900px) {
    .plans-grid {
      gap: 1.2rem;
    }
    .plan-card {
      min-width: 200px;
      padding: 1.2rem 0.8rem;
    }
  }
  
  @media (max-width: 700px) {
    .plans-grid {
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
    }
    .plan-card {
      max-width: 370px;
      width: 100%;
      min-width: unset;
    }
  }
  
  @media (max-width: 500px) {
    .mobile-plans-section {
      padding: 1rem 0;
    }
    .container {
      padding: 0 0.2rem;
    }
    .plan-card {
      padding: 1rem 0.5rem;
    }
    .plan-logo img {
      height: 32px;
    }
    .mobile-plans-section h2 {
      font-size: 1.25rem;
    }
  }


  




  .money-transfer-hero {
    background: linear-gradient(135deg, #f8fafc 60%, #e0f0fc 100%);
    padding: 2rem 0;
    font-family: 'Inter', Arial, sans-serif;
  }
  .money-transfer-hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .transfer-hero-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #0d225b;
  }
  .transfer-hero-text .highlight {
    color: #fc6c03;
    background: #fff6ea;
    padding: 0.1em 0.4em;
    border-radius: 8px;
  }
  .transfer-hero-lead {
    font-size: 1.18rem;
    color: #424874;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .transfer-hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.6rem;
    color: #393e46;
    width: 100%;
    max-width: 450px;
  }
  .transfer-hero-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.07rem;
    margin-bottom: 0.6rem;
  }
  .transfer-hero-features .icon {
    font-size: 1.3em;
    margin-right: 0.5em;
  }
  .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .transfer-btn-primary, .transfer-btn-secondary {
    display: inline-block;
    padding: 0.78rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 12px #0001;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0.5rem;
  }
  .transfer-btn-primary {
    background: #fc6c03;
    color: #fff;
    border: none;
  }
  .transfer-btn-primary:hover {
    background: #0d225b;
    color: #fff;
  }
  .transfer-btn-secondary {
    background: #fff;
    color: #0d225b;
    border: 2px solid #fc6c03;
  }
  .transfer-btn-secondary:hover {
    background: #fc6c03;
    color: #fff;
    border: 2px solid #fc6c03;
  }
  .partner-logos {
    display: flex;
    gap: 1.4rem;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .partner-logos img {
    max-width: 130px;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 2px 10px #0002;
    height: 48px;
    object-fit: contain;
  }
  
  @media (max-width: 650px) {
    .money-transfer-hero {
      padding: 1.3rem 0;
    }
    .transfer-hero-text h2 {
      font-size: 1.3rem;
    }
    .transfer-hero-lead {
      font-size: 1rem;
    }
    .transfer-hero-features {
      font-size: 0.98rem;
      max-width: 98vw;
    }
    .partner-logos {
      gap: 0.8rem;
    }
    .partner-logos img {
      max-width: 80px;
      height: 32px;
      padding: 0.3rem 0.6rem;
    }
    .cta-buttons {
      flex-direction: column;
      gap: 0.7rem;
      width: 100%;
      align-items: center;    /* <--- This centers the buttons */
    }
    .transfer-btn-primary, .transfer-btn-secondary {
      width: 90%;  /* Looks more visually centered than 100% */
      padding: 0.95rem 0.7rem;
      font-size: 1.03rem;
      max-width: 300px;      /* Prevents buttons from being too wide on tablets */
    }
  }

  .mobile-call-text {
    display: none;
    margin-left: 0.4em;
    font-size: 1rem;
    font-weight: 600;
  }
  .mobile-call-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background: #ffc107;
    color: #222;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
  }
  
  .mobile-call-btn:hover {
    background: #e6b206;
    color: #000;
    transform: scale(1.08);
  }
  
  /* Show only on mobile screens */
  @media (max-width: 900px) {
    .mobile-call-btn {
      display: flex;
    }
  }
  @media (max-width: 450px) {
    .mobile-call-btn {
      width: 48px; height: 48px; font-size: 1.5rem;
    }
    .tiktok-btn, .insta-btn, .fb-btn, .email-btn, .call-btn {
      width: 36px; height: 36px; font-size: 1.2rem;
    }
  }


  .insta-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    transition: filter 0.2s, box-shadow 0.2s;
  }
  .insta-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  }
  
  .tiktok-btn {
    background: #010101;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    transition: filter 0.2s, box-shadow 0.2s;
  }
  .tiktok-btn:hover {
    background: #25f4ee;
    color: #010101;
    box-shadow: 0 4px 18px rgba(37,244,238,0.17);
  }


  .reviews-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 32px rgba(30, 46, 100, 0.06);
    margin: 2rem 0;
    max-width: 100vw;
  }
  
  .review-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .review-google-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(100,100,100,0.07);
    margin-right: 0.4rem;
  }
  
  .review-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 0.2rem 0;
    color: #111;
  }
  
  .review-stars {
    color: #ffc107;
    font-size: 1.15rem;
    margin: 0.1rem 0 0.3rem 0;
  }
  
  .review-count {
    font-size: 0.96rem;
    color: #222;
    margin: 0;
  }
  
  .review-bold {
    font-weight: 600;
    color: #111;
  }
  
  .review-dot {
    color: #ccc;
    margin: 0 0.3em;
    font-weight: 700;
    font-size: 1.1em;
  }
  
  .review-google-mini {
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
  }
  
  .review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .review-block {
    background: #f9f9fa;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 10px rgba(100,100,100,0.04);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  
  .review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #eee;
  }
  
  .review-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .review-user-name {
    font-weight: 600;
    color: #1a237e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25em;
  }
  
  .review-verified {
    color: #25d366;
    font-size: 1em;
    vertical-align: middle;
  }
  
  .review-date {
    font-size: 0.87rem;
    color: #868e96;
  }
  
  .review-user-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.3rem;
  }
  
  .review-text {
    font-size: 1.08rem;
    color: #262626;
    font-weight: 500;
    margin-bottom: 0.2rem;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
  
  .review-owner-reply {
    background: #f2f5f8;
    border-radius: 10px;
    padding: 0.6em 0.8em;
    margin-top: 0.6em;
    font-size: 0.97rem;
    color: #455a64;
    border-left: 4px solid #ffc107;
  }
  .review-owner-reply .owner {
    color: #3e6edb;
    font-weight: 600;
    margin-right: 0.5em;
  }
  .review-owner-reply .owner-date {
    color: #bbb;
    font-size: 0.92em;
  }
  
  .see-all-reviews {
    display: inline-block;
    margin: 2rem auto 0 auto;
    background: #fff;
    color: #3e6edb;
    border: 1.5px solid #eee;
    border-radius: 20px;
    padding: 0.5em 1.4em;
    font-weight: 600;
    font-size: 1.04rem;
    transition: background 0.16s, box-shadow 0.15s, color 0.15s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    text-align: center;
  }
  .see-all-reviews i {
    color: #ffc107;
    margin-right: 0.5em;
    font-size: 1.3em;
  }
  .see-all-reviews:hover {
    background: #f4f8fb;
    color: #1a237e;
    box-shadow: 0 4px 18px rgba(30,46,100,0.06);
    border-color: #3e6edb;
  }
  
  /* Responsive tweaks for reviews */
  @media (max-width: 600px) {
    .review-container {
      max-width: 98vw;
      padding: 0 0.3rem;
    }
    .review-header {
      gap: 0.7rem;
    }
    .review-google-logo {
      width: 36px;
      height: 36px;
    }
    .review-title {
      font-size: 1.12rem;
    }
    .review-block {
      padding: 0.8rem 0.6rem;
      border-radius: 12px;
    }
    .review-list {
      gap: 0.95rem;
    }
    .review-avatar {
      width: 34px;
      height: 34px;
    }
    .review-user-name {
      font-size: 0.95rem;
    }
    .see-all-reviews {
      width: 95%;
      font-size: 1rem;
    }
  }


  .flyer-slideshow-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .flyer-slider-container {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  
  .flyer-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(60, 72, 120, 0.13);
    background: #f7f7fa;
    position: relative;
    min-height: 380px;
    display: flex;
  }
  
  .flyer-slide {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s;
    flex-shrink: 0;
  }
  
  .flyer-slide.active {
    display: flex;
    animation: flyerFadeIn 0.7s;
  }
  
  @keyframes flyerFadeIn {
    from { opacity: 0; transform: translateY(32px);}
    to   { opacity: 1; transform: translateY(0);}
  }
  
  .flyer-slide img {
    width: 100%;
    max-width: 480px;
    max-height: 370px;
    border-radius: 18px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  
  .flyer-slider-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #0d225b;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.18s, box-shadow 0.17s;
    opacity: 0.85;
  }
  .flyer-slider-arrow:active,
  .flyer-slider-arrow:hover {
    background: #ffc107;
    color: #111;
  }
  .flyer-slider-prev { left: -28px; }
  .flyer-slider-next { right: -28px; }
  
  .flyer-slider-dots {
    margin: 1.3rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 0.46rem;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .flyer-slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #bbb;
    opacity: 0.5;
    transition: background 0.22s, opacity 0.22s, box-shadow 0.22s;
    cursor: pointer;
    box-shadow: 0 0 0 0 #fff8e1;
    border: 0;
    display: inline-block;
  }
  .flyer-slider-dot.active {
    background: #ffc107;
    opacity: 1;
    box-shadow: 0 0 0 2px #fff8e1;
    border: 1.5px solid #ffc107;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .flyer-slider-container,
    .flyer-slide img,
    .flyer-slider {
      max-width: 98vw;
      min-height: 230px;
      border-radius: 12px;
    }
    .flyer-slider-arrow {
      font-size: 1.45rem;
      width: 33px; height: 33px;
      left: -13px; right: -13px;
    }
    .flyer-slider-dots {
      gap: 0.33rem;
      margin: 0.9rem 0 0 0;
    }
    .flyer-slider-dot,
    .flyer-slider-dot.active {
      width: 9.5px;
      height: 9.5px;
      box-shadow: 0 0 0 1.5px #fff8e1;
    }
  }
  @media (max-width: 370px) {
    .flyer-slider-arrow {
      width: 28px; height: 28px;
      font-size: 1.1rem;
    }
    .flyer-slider-dot,
    .flyer-slider-dot.active {
      width: 7.5px; height: 7.5px;
    }
  }