/* ===== CUSTOM STYLES (EMBEDDED FOR PORTABILITY) ===== */
:root {
  --c-navy: #0B2545;
  --c-teal: #1FA2A6;
  --c-orange: #F45B2A;
  --c-gold: #D4AF37;
  --c-sand: #f8f5f0;
  --c-white: #ffffff;
  --font-heading: 'Playfair Display', serif;
}
body {
  font-family: 'Poppins', sans-serif;
  scroll-padding-top: 85px;
}

html {
  scroll-padding-top: 85px;
}
.custom-navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(11,37,69,0.15);
  min-height: 85px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.custom-navbar:hover {
  box-shadow: 0 5px 25px rgba(11,37,69, 0.2);
}

.contact-cta {
  background: #2ac4cd;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.navbar-logo-img {
  height: 95px;
  width: auto;
  transition: height 0.2s ease;
}
@media (max-width: 768px) { .navbar-logo-img { height: 70px; } }
@media (max-width: 480px) { .navbar-logo-img { height: 60px; } }

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy) !important;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--c-gold) !important;
  position: relative;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.navbar-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
}

.navbar-buttons {
  display: flex;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
  position: relative;
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.35);
  transform: scale(1.05);
}

.hamburger-line {
  height: 3px;
  width: 22px;
  background: linear-gradient(90deg, #D4AF37, #F4C430);
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--c-navy) 0%, #163A5F 100%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-content {
  padding: 100px 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  margin: 0.25rem 0;
}

.mobile-nav-link:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
  color: #f8f5f0;
}
.mobile-nav-link i { color: var(--c-gold); width: 28px; text-align: center; }
.mobile-menu-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1023px) {
  .navbar-desktop { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}
body.menu-open { overflow: hidden; }

/* Hero Section - Professional & Responsive */
.hero-gradient {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 85px);
  min-height: 500px;
  max-height: calc(100vh - 85px);
  overflow: hidden;
  width: 100%;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Ensure carousel container maintains aspect ratio */
  min-width: 100%;
  min-height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  will-change: transform, opacity;
  /* Ensure images maintain quality when scaled */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center center;
  /* Force image to fill entire container */
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Fade effect */
.hero-slide[data-effect="fade"] {
  opacity: 0;
  transform: scale(1);
}

.hero-slide[data-effect="fade"].active {
  opacity: 1;
  transform: scale(1);
}

/* Slide effect - slides in from right */
.hero-slide[data-effect="slide"] {
  transform: translateX(100%);
  opacity: 0;
}

.hero-slide[data-effect="slide"].active {
  transform: translateX(0);
  opacity: 1;
}

.hero-slide[data-effect="slide"].prev {
  transform: translateX(-100%);
  opacity: 0;
}

/* Zoom in effect - starts zoomed in and zooms out */
.hero-slide[data-effect="zoom-in"] {
  transform: scale(1.15);
  opacity: 0;
}

.hero-slide[data-effect="zoom-in"].active {
  transform: scale(1);
  opacity: 1;
}

/* Zoom out effect - starts zoomed out and zooms in */
.hero-slide[data-effect="zoom-out"] {
  transform: scale(0.85);
  opacity: 0;
}

.hero-slide[data-effect="zoom-out"].active {
  transform: scale(1);
  opacity: 1;
}

/* Legacy support for hero-video class */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.88) 0%, rgba(11, 37, 69, 0.72) 50%, rgba(212, 175, 55, 0.35) 100%);
  z-index: 2;
}

.hero-body {
  position: relative;
  z-index: 3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem 0;
  margin: 0;
  overflow: hidden;
}

.hero-body .container {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-body .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}

#top {
  height: calc(100vh - 85px);
  scroll-margin-top: 85px;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.875rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  opacity: 0.95;
}

.title.is-1 { 
  font-family: var(--font-heading); 
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1; 
  margin-bottom: 1.25rem;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: white;
}

.subtitle.is-4 { 
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem); 
  max-width: 750px; 
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  text-align: center;
  word-wrap: break-word;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.95);
}

/* Trust Badges - Enhanced and Professional */
.hero-trust {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 2rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: calc(100% - 2rem);
}

.hero-trust:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
}

.trust-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 0.3rem; 
  padding: 0 1.15rem;
  min-width: fit-content;
  flex: 0 0 auto;
}

.trust-number { 
  font-family: var(--font-heading); 
  font-size: 1.85rem; 
  font-weight: 800; 
  color: white;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trust-label { 
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.98); 
  font-size: 0.825rem;
  text-align: center;
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.trust-stars { 
  color: #FFD700; 
  font-size: 0.875rem;
  line-height: 1;
  margin-top: 0.2rem;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.trust-divider { 
  width: 1px; 
  height: 42px; 
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 520px;
}

.hero-buttons .button {
  padding: 0.95rem 2.15rem;
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 50px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Responsive adjustments - Desktop/Tablet */
@media (max-width: 1023px) {
  .hero-body {
    padding: 2rem 0;
  }
  
  .hero-body .container {
    padding: 0 1.5rem;
  }
  
  .hero-body .hero-container {
    gap: 1.15rem;
    max-width: 100%;
  }
  
  .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
  }
  
  .title.is-1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.12;
    margin-bottom: 1.15rem;
  }
  
  .subtitle.is-4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .hero-trust {
    margin-top: 1.15rem;
    padding: 1.15rem 1.65rem;
    max-width: 650px;
    width: calc(100% - 2rem);
  }
  
  .trust-item {
    padding: 0 0.85rem;
  }
  
  .trust-number {
    font-size: 1.65rem;
  }
  
  .trust-label {
    font-size: 0.775rem;
  }
  
  .trust-divider {
    height: 38px;
  }
  
  .hero-buttons {
    gap: 0.85rem;
    max-width: 100%;
  }
  
  .hero-buttons .button {
    padding: 0.85rem 1.85rem;
    font-size: 1rem;
    min-height: 48px;
  }
}

/* Tablet landscape optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-gradient {
    height: calc(100vh - 85px);
    min-height: 350px;
    max-height: calc(100vh - 85px);
  }
  
  .hero-body {
    padding: 1rem 0;
  }
  
  .hero-body .hero-container {
    gap: 0.5rem;
  }
  
  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.1em;
  }
  
  .title.is-1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.15;
  }
  
  .subtitle.is-4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .hero-buttons {
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    gap: 0.5rem;
  }
  
  .hero-buttons .button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-trust {
    margin-top: 0.5rem;
    padding: 0.85rem 1.1rem;
    max-width: 500px;
  }
  
  .trust-item {
    padding: 0 0.55rem;
  }
  
  .trust-number {
    font-size: 1.4rem;
  }
  
  .trust-label {
    font-size: 0.7rem;
  }
  
  .trust-divider {
    height: 28px;
  }
}

/* Mobile styles handled by mobile.css */

/* Buttons */
.button.is-warning {
  background: var(--c-gold);
  color: var(--c-navy);
  border: none;
  font-size: 1rem;
  white-space: nowrap;
}
.button.is-warning:hover {
  background: #c19d2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}
.button.is-white.is-outlined {
  border-color: white;
  color: white;
  font-size: 1rem;
  white-space: nowrap;
}
.button.is-white.is-outlined:hover {
  background: white;
  color: var(--c-navy);
}

/* Ensure buttons container is responsive */
.buttons.is-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.footer {
  background: var(--c-navy);
  color: white;
  padding: 3rem 0 2rem;
}
.footer a { color: #ddd; text-decoration: none; }
.footer a:hover { color: var(--c-gold); }
.footer-section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--c-gold);
}
.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  color: white;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--c-gold);
  color: var(--c-navy);
}
.certification-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-right: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.certification-badge i { color: var(--c-gold); margin-right: 0.4rem; }

/* Image Carousel Animation */
.image-carousel {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  border-radius: 4px;
}

.image-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInOut 8s infinite;
}

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

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

@keyframes fadeInOut {
  0%, 100% { opacity: 0; z-index: 1; }
  5%, 45% { opacity: 1; z-index: 2; }
  50%, 95% { opacity: 0; z-index: 1; }
}

/* Review Carousel */
.review-carousel-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.review-carousel {
  display: flex;
  /* Animation now handled by JavaScript */
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  padding: 0 10px;
}

.review-slide .card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  background: white;
}

.review-text {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.review-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #D4AF37;
  font-size: 1.2rem;
}

.reviewer-name {
  color: var(--c-navy);
  font-weight: 600;
}

/* Review Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.review-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.review-dots .dot:hover {
  transform: scale(1.2);
}

.review-dots .dot.active {
  background: var(--c-gold);
  transform: scale(1.3);
}

/* Removed CSS animation since we're using JavaScript */

/* Fraud Modal */
#fraudWarningModal .modal-card-head {
  background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
}
#callNowBtn {
  background-color: var(--c-gold);
  color: var(--c-navy);
  border: none;
}
#callNowBtn:hover {
  background-color: #c19d2f !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* FAQ Section Styles */
.faq-section {
  padding: 4rem 1.5rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--c-gold);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question.active {
  background: rgba(11, 37, 69, 0.02);
  border-bottom: 2px solid var(--c-gold);
}

.faq-title {
  font-weight: 600;
  color: var(--c-navy);
  font-size: 1rem;
}

.faq-icon {
  color: var(--c-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem;
  background: #fafbfc;
  border-top: 1px solid #e0e0e0;
  color: #666;
  line-height: 1.6;
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}



