@charset "utf-8";

/* ==========================================================================
   1. VARIABLES & ROOT STYLES
   ========================================================================== */
:root {
  --font-primary: "articulat-cf", -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Brand Colors */
  --brand-primary: #ffa500;
  --brand-primary-dark: #E58F00; /* hover/active */
  --brand-secondary: #608396;
  --brand-info: #545e63;
  --brand-success: #28a745;
  --brand-warning: #ffc107;
  --brand-danger: #dc3545;
  --brand-light: #f5f5f5;
  --brand-dark: #272f33;

  /* Theme Colors */
  --navbar-dark: #2e333d;
}

/* ==========================================================================
   2. BASE TYPOGRAPHY & RESETS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

body, p, li {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.7;
  color:var(--brand-dark);
}

/* ==========================================================================
   3. BULMA COLOR CLASS OVERRIDES
   ========================================================================== */

/* Primary */
.is-primary {
  background-color: var(--brand-primary) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.button.is-primary:hover, 
.button.is-primary.is-hovered {
  background-color: var(--brand-primary-dark)!important;
}

/* Primary Outlined */
.button.is-primary.is-outlined {
  background-color: transparent !important;
  color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  transition: all 0.3s ease;
}

.button.is-primary.is-outlined:hover, 
.button.is-primary.is-outlined.is-hovered,
.button.is-primary.is-outlined:focus,
.button.is-primary.is-outlined.is-focused {
  background-color: var(--brand-primary) !important;
  color: #fff !important;
  border-color: var(--brand-primary) !important;
}

/* Secondary */
.is-secondary {
  background-color: var(--brand-secondary) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.button.is-secondary:hover, 
.button.is-secondary.is-hovered {
  background-color: #5a6268 !important;
}

/* Other Bulma Colors */
.is-info { background-color: var(--brand-info) !important; color: #fff !important; }
.is-success { background-color: var(--brand-success) !important; color: #fff !important; }
.is-warning { background-color: var(--brand-warning) !important; color: rgba(0, 0, 0, 0.7) !important; }
.is-danger { background-color: var(--brand-danger) !important; color: #fff !important; }
.is-light { background-color: var(--brand-light) !important; color: rgba(0, 0, 0, 0.7) !important; }
.is-dark { background-color: var(--brand-dark) !important; color: #fff !important; }

/* Text Color Utility Overrides */
.has-text-primary { color: var(--brand-primary) !important; }
.has-text-secondary { color: var(--brand-secondary) !important; }
.has-text-info { color: var(--brand-info) !important; }
.has-text-success { color: var(--brand-success) !important; }
.has-text-warning { color: var(--brand-warning) !important; }
.has-text-danger { color: var(--brand-danger) !important; }

/* Background Color Utility Overrides */
.has-background-primary { background-color: var(--brand-primary) !important; }
.has-background-secondary { background-color: var(--brand-secondary) !important; }
.has-background-info { background-color: var(--brand-info) !important; }
.has-background-success { background-color: var(--brand-success) !important; }
.has-background-warning { background-color: var(--brand-warning) !important; }
.has-background-danger { background-color: var(--brand-danger) !important; }
.has-background-light { background-color: var(--brand-light) !important; }
.has-background-dark { background-color: var(--brand-dark) !important; }

/* Custom Brand Utilities */
.bg-orange { background-color: var(--brand-primary) !important; }
.text-orange { color: var(--brand-primary) !important; }

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */

/* Sticky Header Wrapper */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Navbar Logo */
.logo-img {
  max-height: 80px;
}
.navbar{border-top:1px solid rgba(0, 0, 0, 0.35)}
/* Navbar Base */
.navbar.has-text-centered .container {
  display: flex;
  justify-content: center;
}

.navbar-menu.is-justify-content-center {
  justify-content: center;
}

.navbar-menu.is-justify-content-center .navbar-item {
  margin-left: 1rem;
  margin-right: 1rem;
}

.navbar-start, .navbar-end {
  margin: 0 !important;
  display: flex;
}

.navbar-item, .navbar-link {
  display: flex;
  align-items: center;
}

.navbar-burger {
  color: white;
}

/* Navbar Hover & Active States */
.navbar-item.has-text-light:hover,
.navbar-link.has-text-light:hover,
.navbar-item.has-dropdown:hover > .navbar-link.has-text-light,
.navbar-item.has-dropdown.is-active > .navbar-link.has-text-light,
.navbar-item.has-dropdown:hover .navbar-link,
.navbar-link.is-active,
.navbar-link:focus,
.navbar-link:focus-within {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

/* Dropdown Arrow */
.navbar-link:not(.is-arrowless)::after {
  border-color: #ffffff !important;
}

/* Dropdown Menu */
.navbar-dropdown {
  background-color: var(--navbar-dark) !important;
  border-top: none !important;
}

.navbar-dropdown .navbar-item {
  color: #ffffff !important;
}

.navbar-dropdown .navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background-image: url("/assets/img/hm-slider-01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65); /* Subtle dark overlay */
  z-index: 1;
}

.hero .hero-body {
  position: relative;
  z-index: 2; /* Bring content above overlay */
}

.hero .button {
  transition: background-color 0.3s ease;
}

.hero .button:hover {
  background-color: var(--brand-primary-dark)!important;
}

/* Trust Indicators */
.trust-indicators {
  font-weight: 500;
  font-size: 1.1rem;
}

.trust-item {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   6. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.services-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card > div:first-child {
  flex-grow: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.service-link::after {
  content: '→';
  margin-left: 8px;
  font-size: 1.2rem;
  transition: margin-left 0.3s ease;
}

.service-link:hover::after {
  margin-left: 12px;
}

/* ==========================================================================
   7. FOOTER STYLING
   ========================================================================== */
.footer a:hover {
  color: var(--brand-primary) !important;
}

.footer .title {
  letter-spacing: 1px;
}

.footer hr {
  height: 1px;
}

/* ==========================================================================
   8. UTILITY & MISC
   ========================================================================== */
.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
}

/* FAQ Styles */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-item .faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .faq-question .icon {
  transition: transform 0.3s ease;
}

.faq-item.is-active .faq-question .icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   9. MEDIA QUERIES
   ========================================================================== */

/* Desktop (min-width: 1024px) */
@media screen and (min-width: 1024px) {
  .hours-banner {
    display: none;
  }

  #hours-banner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
  }

  .is-scrolled #hours-banner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-item, .navbar-link {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }
}

/* Mobile/Tablet (max-width: 1023px) */
@media screen and (max-width: 1023px) {
  .overlay-column {
    display: none;
  }

  .navbar.has-background-orange {
    background-color: var(--brand-primary) !important;
  }

  .navbar-menu {
    background-color: var(--navbar-dark) !important;
    box-shadow: none;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .navbar-menu.is-active {
    max-height: calc(100vh - 150px); /* Account for Logo/Top Bar heights approx */
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    overflow-y: auto;
    transition: max-height 0.6s ease-in-out, padding 0.4s ease-in-out;
  }

  .navbar-item {
    color: #ffffff !important;
    background-color: var(--navbar-dark) !important;
    text-align: left !important;
    justify-content: flex-start !important;
    transition: background-color 0.2s ease;
  }

  .navbar-link {
    color: #ffffff !important;
    text-align: left !important;
    transition: background-color 0.2s ease;
  }

  .navbar-item.has-dropdown .navbar-dropdown {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none;
  }

  .navbar-item.has-dropdown.is-active .navbar-dropdown {
    max-height: 1200px;
    transition: max-height 0.8s ease-in-out;
  }
}

/* Prevent scroll on body when navbar is open */
html.navbar-open {
  overflow: hidden !important;
}

/* Specific Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 24px;
    margin-left:24px;
    margin-right:24px;
  }
  .footer-brand{text-align: center;}
}

/* ==========================================================================
   10. REVIEWS SECTION (GSAP)
   ========================================================================== */
.reviews-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-stars {
  font-size: 1rem;
}

.review-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-dark);
}

.review-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-secondary);
}
.border-top-primary {
    border-top: 2px solid #ff8c00; /* Matching the orange theme color */
}
.coupon-card {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  background-color: #fff;
}
.coupon-card:hover {
  transform: scale(1.02);
  border-color: #f15a24;
}
.coupon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand-primary);
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 5px;
  font-size: 0.8rem;
}
.coupon-code {
  font-family: monospace;
  background: var(--brand-primary);
  padding: 5px 10px;
  border: 1px solid #ddd;
  display: inline-block;
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}
.expiry-text {
  color: #888;
  font-size: 0.85rem;
  margin-top: 10px;
}
@media print {
  .hero, .navbar, footer, .why-choose, .service-area, .reviews, .scripts-include {
    display: none !important;
  }
  .section {
    padding: 0 !important;
  }
  .coupon-card {
    break-inside: avoid;
    border: 2px solid #000;
    margin-bottom: 20px;
  }
}