/* Global Styles & Premium Overhaul */
:root {
  --bg-dark: #0f1c2d;
  --bg-darker: #080f18;
  --bg-light: #f4f7f9;
  --bg-cream: #e8ecf1;
  --bg-cream-dark: #7b8f9e;
  
  --text-dark: #0b1521;
  --text-muted: #4a5a6b;
  --text-light: #ffffff;
  --text-light-muted: rgba(255,255,255,0.7);

  --secondary: #c99c4b;
  --accent: var(--secondary);

  --font-main: 'Noto Sans', sans-serif;
  --font-heading: 'Frank Ruhl Libre', serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
  font-family: var(--font-main); 
  color: var(--text-dark); 
  background: var(--bg-light); 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading);
  font-weight: 600; 
  line-height: 1.1; 
  letter-spacing: -0.02em;
}

a { 
  text-decoration: none; 
  transition: var(--transition); 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Scale */
.text-huge { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5rem); }
.text-lg { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);}
.text-md { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.text-sm { font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Layout Utility */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-padding { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Buttons */
.btn-primary { 
  background: var(--accent); 
  color: var(--bg-darker); 
  padding: 1rem 2.5rem; 
  display: inline-block; 
  font-weight: 500;
  transition: var(--transition);
  border: none;
}
.btn-primary:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  display: inline-block;
  font-weight: 500;
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--text-light);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  display: inline-block;
}
.btn-dark:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.btn-call-now {
  background: linear-gradient(135deg, var(--accent), #a37931);
  color: var(--bg-darker);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(201, 156, 75, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}
.btn-call-now:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(201, 156, 75, 0.6);
  background: linear-gradient(135deg, #d8ad5c, #8a6528);
  color: var(--bg-darker);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: none;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  z-index: 1000;
  position: fixed;
  top: 0; left: 0; width: 100%;
}

body.scrolled .header {
  background: rgba(15, 28, 45, 1); /* matching --bg-dark with opacity */
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 82px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.header .btn-cta {
  background: var(--accent); 
  color: var(--bg-darker); 
  padding: 1rem 2.5rem; 
  display: inline-block; 
  font-weight: 500;
  transition: var(--transition);
  border: none;
  margin-left: 30px;
}

.header .btn-cta:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.scrolled .header {
  padding: 12px 0;
  border-bottom-color: transparent;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    color: #fff;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 6px;
    transition: 0.3s;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--secondary);
  }

  .navmenu li:hover>a::before,
  .navmenu .active::before {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 12px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 88%);
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 208px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    color: #333;
  }

  .navmenu .dropdown ul a::before {
    display: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--accent);
    padding-left: 24px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(14, 14, 16, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(rgba(15,28,45,0.4), rgba(8,15,24,0.6)), url('../images/hero-2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding-top: 12rem;
  padding-bottom: 4rem;
}
.hero-content {
  max-width: 800px;
}
.hero-content h1 { margin-bottom: 2rem; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Stats Section */
.stats-section { background: var(--bg-light); }
.stats-grid { display: flex; gap: 2rem; margin-top: 3rem; }
.stat-box {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-left: 4px solid var(--accent);
  flex: 1;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.stat-box h3 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--bg-dark); }

/* Commitment Section */
.commitment-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  /* Subtle blue dot pattern */
  color: var(--text-dark);
  position: relative;
}
.commitment-section .btn-outline { border-color: var(--accent); color: var(--accent); }
.commitment-section .btn-outline:hover { background: var(--accent); color: var(--text-light); }
.commitment-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: -20px 20px 0 var(--bg-cream-dark);
  margin-top: 0;
}

/* Services Section */
.services-section { 
  background-color: var(--bg-dark); 
  color: var(--text-light); 
}
.services-wrapper { display: flex; justify-content: space-between; position: relative; }
.services-list { width: 50%; display: flex; flex-direction: column; }
.service-item {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2vw, 1.5rem);
  color: rgba(255,255,255,0.6);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.service-item:hover::before, .service-item.active::before { width: 100%; }
.service-item:hover, .service-item.active {
  color: var(--text-light);
  padding-left: 2rem;
}
.service-item .bi-arrow-right { opacity: 0; transform: translateX(-20px); transition: var(--transition); }
.service-item:hover .bi-arrow-right, .service-item.active .bi-arrow-right { opacity: 1; transform: translateX(0); }

.services-image-container {
  width: 45%;
  height: 600px;
  position: sticky;
  top: 100px;
  background: var(--bg-darker);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.services-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.services-image-container img.scale-up {
  transform: scale(1.05);
}

/* Locations Section */
.locations-section {
  background-color: var(--bg-light);
  }
.locations-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.locations-list li a {
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.locations-list li a i {
  color: var(--accent);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.locations-list li a:hover {
  color: var(--accent);
}
.locations-list li a:hover i {
  transform: scale(1.2);
}

/* Testimonials */
.testimonials-section { background: var(--bg-light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 2rem; }
.testimonial-card {
  background: #eaeaea;
  padding: 3rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  z-index: -1;
}
.testimonial-card p.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-dark);
}
.client-info { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.client-img { 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  background: var(--accent); 
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* Integrity / Partner Section */
.integrity-section { padding: 8rem 0; border-top: 1px solid #eaeaea; }
.feature-box {
  background: #ffffff;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  border-left: 4px solid var(--bg-cream-dark);
}
.feature-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left-color: var(--accent);
}
.feature-box .icon {
  width: 50px;
  height: 50px;
  background: var(--bg-cream);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.feature-box:hover .icon {
  background: var(--accent);
  color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(rgba(15,28,45,0.5), rgba(8,15,24,0.7)), url('../images/cta-bg.jpg') center/cover no-repeat;
  padding: 10rem 0;
  color: var(--text-light);
  text-align: center;
}
.cta-banner h2 { margin: 0 auto 3rem; }

/* Footer */
footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 6rem 0 3rem;
}
.text-accent { color: var(--bg-cream-dark); margin-right: 0.5rem; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-top: 1rem;
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background: rgba(197, 160, 89, 0.1);
  transition: background 0.3s ease;
}
.footer-phone:hover {
  background: rgba(197, 160, 89, 0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4rem;
  margin-bottom: 4rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a { color: var(--text-light-muted); display: inline-flex; align-items: center; text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-list a:hover { color: var(--text-light); transform: translateX(5px); }

.locations-footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.footer-brand { font-family: var(--font-heading); text-align: center; font-size: clamp(4rem, 15vw, 15rem); font-weight: 600; line-height: 0.8; letter-spacing: -0.05em; opacity: 0.05; margin-top: -2rem;}
.footer-bottom { display: flex; justify-content: space-between; color: var(--text-light-muted); font-size: 0.9rem; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Scale Reveal */
.reveal-scale {
  clip-path: inset(5% 10% 5% 10% round 20px);
  transform: scale(0.95);
  opacity: 0.8;
  transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
}
.reveal-scale.active {
  clip-path: inset(0% 0% 0% 0% round 0px);
  transform: scale(1);
  opacity: 1;
}

/* Sticky Call Button */
.sticky-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  color: var(--bg-darker);
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition);
}
.sticky-call-btn:hover {
  transform: translateY(-5px);
  background-color: var(--bg-dark);
  color: var(--accent);
  box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}
.sticky-call-btn .call-icon {
  background-color: var(--bg-darker);
  color: var(--accent);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: var(--transition);
}
.sticky-call-btn .call-icon i {
  animation: ring-animation 2.5s infinite ease-in-out;
}
@keyframes ring-animation {
  0% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-10deg); }
  15% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(0); }
  100% { transform: rotate(0); }
}
.sticky-call-btn:hover .call-icon {
  background-color: var(--accent);
  color: var(--bg-darker);
}
.sticky-call-btn:hover .call-icon i {
  animation: none;
}
.sticky-call-btn .call-text {
  display: flex;
  flex-direction: column;
}
.sticky-call-btn .call-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.sticky-call-btn .call-availability {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0 20px 0; /* Add top padding to account for fixed header */
  background: var(--bg-darker);
  color: var(--text-light);
  font-size: 0.95rem;
}
.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--text-light);
}

.inner-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
  color: var(--text-light);
  position: relative;
  text-align: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(15,28,45,0.6), rgba(8,15,24,0.8)), url("../images/hero-2.jpg") top/cover no-repeat;
  pointer-events: none;
}
.inner-hero h1 {
  font-size: clamp(2.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
.inner-hero p.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.inner-hero .btn-call-now {
  position: relative;
  z-index: 2;
  display: none;
}


.page-content {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 4rem;
}

.main-body {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.main-body h1 {
  color: var(--bg-darker);
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.main-body h2 {
  color: var(--bg-dark);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.main-body p {
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.sidebar {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  border-top: 5px solid var(--accent);
  height: fit-content;
  position: sticky;
  top: 120px;
  transition: all 0.3s ease;
}
.sidebar:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.sidebar h3 {
  color: var(--bg-darker);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  padding-bottom: 0.5rem;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.sidebar h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sidebar ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.sidebar ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.8rem 0.5rem;
  border-radius: 6px;
}
.sidebar ul li a::before {
  content: '\F285'; /* bootstrap icon chevron-right */
  font-family: bootstrap-icons !important;
  font-size: 0.85rem;
  margin-right: 12px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.sidebar ul li a:hover {
  color: var(--bg-darker);
  background-color: rgba(201, 156, 75, 0.05);
  padding-left: 1rem;
}
.sidebar ul li a:hover::before {
  transform: translateX(4px);
}
.sidebar p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.sidebar p strong {
  color: var(--bg-darker);
}

/*--------------------------------------------------------------
# Premium Tables
--------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
table thead tr {
  background-color: var(--bg-darker);
  color: var(--accent);
  text-align: left;
}
table th, table td {
  padding: 1.25rem 1.5rem;
}
table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent);
}
table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
table tbody tr:nth-of-type(even) {
  background-color: rgba(201, 156, 75, 0.03);
}
table tbody tr:hover {
  background-color: rgba(201, 156, 75, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
table tbody tr:last-of-type {
  border-bottom: 3px solid var(--accent);
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: var(--accent);
  color: var(--bg-darker)!important;
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  visibility: hidden;
  opacity: 0;
}
.scroll-top:hover {
  background: var(--accent);
  color: var(--bg-darker);
}

/*--------------------------------------------------------------
# Details / Summary FAQ
--------------------------------------------------------------*/

details.faq-item[open] {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
details.faq-item
{border-bottom: 1px solid #eaeaea;}
summary.faq-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default triangle */
  background-color: #fff;
  transition: background-color 0.3s ease;
}
summary.faq-header::-webkit-details-marker {
  display: none; /* Hide default triangle in WebKit */
}
summary.faq-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.3s ease;
}
summary.faq-header:hover {
  background-color: rgba(201, 156, 75, 0.03);
}
summary.faq-header:hover h4 {
  color: var(--accent);
}
details.faq-item[open] summary.faq-header h4 {
  color: var(--accent);
}
/* Reusing the bi bi-plus-lg and bi bi-dash-lg icons via CSS */
details.faq-item summary.faq-header i::before {
  content: "\F4FE"; /* bi-plus-lg unicode */
  font-family: bootstrap-icons !important;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
details.faq-item[open] summary.faq-header i::before {
  content: "\F28E"; /* bi-dash-lg unicode */
}

details.faq-item .faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: #fff;
  color: var(--text-muted);
  line-height: 1.6;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .services-wrapper { flex-direction: column; }
  .services-list { width: 100%; }
  .services-image-container { display: none; }
  .locations-list { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-section { padding: 4rem 0; }
  .footer-top { grid-template-columns: 1fr; }
  .locations-footer-list { grid-template-columns: 1fr; }
}
.trust-payment-block {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #101a29;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;

}

.trust-payment-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    min-height: 78px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-payment-item:last-child {
    border-right: 0;
}

.trust-payment-item > i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #279ae4;
    background: rgba(39, 154, 228, 0.12);
    border: 1px solid rgba(39, 154, 228, 0.25);
    border-radius: 50%;

    font-size: 18px;
}

.trust-payment-item strong {
    display: block;
    margin-bottom: 4px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-payment-item span {
    display: block;

    color: #9ba9ba;
    font-size: 12px;
    line-height: 1.4;
}


/* Tablet */
@media (max-width: 991px) {

    .trust-payment-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-payment-item:nth-child(2) {
        border-right: 0;
    }

    .trust-payment-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}


/* Mobile */
@media (max-width: 575px) {

    .trust-payment-block {
        grid-template-columns: 1fr;
    }

    .trust-payment-item,
    .trust-payment-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .trust-payment-item:last-child {
        border-bottom: 0;
    }

    .trust-payment-item {
        padding: 16px;
        min-height: auto;
    }

    .trust-payment-item > i {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .trust-payment-item strong {
        font-size: 13px;
    }

    .trust-payment-item span {
        font-size: 11px;
    }
}
/* =========================================
   PAYMENT OPTIONS SECTION
========================================= */

.payment-options-section {
    position: relative;
    padding: 100px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.payment-options-header {
    max-width: 800px;
    margin-bottom: 55px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;

    color: #1f79b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #1f79b8;
}

.payment-options-header h2 {
    margin: 0 0 18px;

    color: #101b2d;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.section-intro {
    max-width: 700px;
    margin: 0;

    color: #687588;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================
   PAYMENT CONTENT
========================================= */

.payment-content {
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
    overflow: hidden;
}

.payment-content-item {
    display: flex;
    gap: 24px;
    padding: 32px;
}

.payment-content-item + .payment-content-item {
    border-top: 1px solid #e8edf2;
}

.payment-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1f79b8;
    background: #edf7fd;
    border: 1px solid #d6ecf8;
    border-radius: 12px;

    font-size: 21px;
}

.payment-content-item h3 {
    margin: 2px 0 10px;

    color: #172236;
    font-size: 20px;
    font-weight: 700;
}

.payment-content-item p {
    margin: 0;

    color: #667386;
    font-size: 15px;
    line-height: 1.8;
}

.payment-content-item p + p {
    margin-top: 16px;
}


/* =========================================
   PAYMENT SUMMARY CARD
========================================= */

.payment-summary {
    position: sticky;
    top: 30px;

    padding: 34px;
    background: #101b2d;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(16, 27, 45, 0.15);
}

.payment-summary-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;

    font-size: 22px;
}

.payment-summary-label {
    display: block;
    margin-bottom: 10px;

    color: #65b9eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.payment-summary h3 {
    margin: 0 0 28px;

    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
}


/* =========================================
   PAYMENT LIST
========================================= */

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.payment-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: #d5dce5;
    font-size: 14px;
    line-height: 1.5;
}

.payment-list li i {
    flex: 0 0 auto;
    margin-top: 2px;

    color: #54b7e9;
    font-size: 15px;
}


/* =========================================
   SUMMARY DIVIDER
========================================= */

.payment-summary-divider {
    height: 1px;
    margin: 28px 0 22px;

    background: rgba(255, 255, 255, 0.1);
}

.payment-summary-note {
    margin: 0 0 22px;

    color: #aeb9c8;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   CALL BUTTON
========================================= */

.payment-call-btn {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    color: #ffffff;
    background: #1f79b8;
    border: 1px solid #1f79b8;
    border-radius: 9px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.payment-call-btn > i {
    font-size: 19px;
}

.payment-call-btn span {
    display: flex;
    flex-direction: column;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.payment-call-btn small {
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-call-btn:hover {
    color: #ffffff;
    background: #185f91;
    border-color: #185f91;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .payment-options-section {
        padding: 75px 0;
    }

    .payment-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 575px) {

    .payment-options-section {
        padding: 60px 0;
    }

    .payment-options-header {
        margin-bottom: 35px;
    }

    .payment-content-item {
        gap: 16px;
        padding: 24px 20px;
    }

    .payment-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .payment-content-item h3 {
        font-size: 18px;
    }

    .payment-content-item p {
        font-size: 14px;
        line-height: 1.7;
    }

    .payment-summary {
        padding: 26px 22px;
    }

    .payment-summary h3 {
        font-size: 22px;
    }
}

@media (max-width: 991.98px) {
  .footer-bottom
  {flex-direction: column; align-items: center;}
  .footer-bottom p
  {margin: 0px!important}
}
/* =========================================
   PREMIUM FLOATING LANGUAGE SWITCHER
========================================= */

.language-switcher {
    position: fixed;
    right: 18px;
    top: 30%;
    transform: translateY(-50%);

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 8px;

    height: 42px;
    padding: 0 12px;

    background: rgba(8, 15, 24, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

/* Translate icon */

.language-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #d9a441;

    font-size: 16px;

    flex-shrink: 0;
}

/* Google Translate */

#google_translate_element {
    display: flex;
    align-items: center;

    height: 40px;
}

/* Remove Google default styling */

#google_translate_element .goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

/* Select */

#google_translate_element .goog-te-combo {
    width: 130px;
    height: 38px;

    margin: 0 !important;
    padding: 0 20px 0 2px;

    appearance: none;
    -webkit-appearance: none;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    cursor: pointer;
}

/* Dropdown options */

#google_translate_element .goog-te-combo option {
    background: #080f18;
    color: #ffffff;
}

/* Custom arrow */

.language-arrow {
    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;

    margin-left: -18px;

    pointer-events: none;

    transition: 0.3s ease;
}

/* Hover */

.language-switcher:hover {
    border-color: #d9a441;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(217, 164, 65, 0.08);
}

.language-switcher:hover .language-icon,
.language-switcher:hover .language-arrow {
    color: #d9a441;
}

/* =========================================
   HIDE GOOGLE BRANDING
========================================= */

#google_translate_element .goog-te-gadget > span {
    display: none !important;
}

#google_translate_element img {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {

    .language-switcher {
        position: absolute;
        top: 12px;
        left: 12px;

        transform: none;

        height: 36px;
        padding: 0 9px;

        z-index: 9999;
    }

    #google_translate_element {
        height: 34px;
    }

    #google_translate_element .goog-te-combo {
        width: 100%;
        height: 34px;

        font-size: 12px;
    }

    .language-icon {
        font-size: 14px;
    }

    .language-arrow {
        font-size: 9px;
    }
    .header
    {padding-top: 60px}
}
/* =========================================================
   COOKIE / LEGAL PAGE
========================================================= */

.legal-page {
    padding: 100px 0;
    background: #f7f9fc;
    color: #263142;
}

.legal-page .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */

.legal-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.legal-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c49a4a;
}

.legal-header h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    color: #101b2d;
}

.legal-header p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #687386;
}

/* Main Content */

.legal-content {
    padding: 55px 60px;
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(16, 27, 45, 0.06);
}

.legal-content > p:first-child {
    margin-top: 0;
    padding: 25px 30px;
    background: #f7f9fc;
    border-left: 4px solid #c49a4a;
    border-radius: 6px;
}

/* Sections */

.legal-section {
    padding: 35px 0;
    border-bottom: 1px solid #e8ecf1;
}

.legal-section:first-of-type {
    padding-top: 40px;
}

.legal-section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #101b2d;
}

.legal-subsection {
    margin-top: 28px;
}

.legal-subsection h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b293d;
}

.legal-content p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.85;
    color: #596579;
}

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

.legal-content strong {
    color: #1b293d;
    font-weight: 700;
}

/* List */

.legal-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #596579;
}

.legal-list li::before {
    content: "\f26a";
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "bootstrap-icons";
    font-size: 17px;
    color: #c49a4a;
}

/* Contact */

.legal-contact {
    padding-top: 40px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 22px 25px;
    background: #101b2d;
    border-radius: 10px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(196, 154, 74, 0.12);
    color: #c49a4a;
    font-size: 23px;
}

.contact-box span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aeb8c8;
}

.contact-box a {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #c49a4a;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .legal-page {
        padding: 80px 0;
    }

    .legal-content {
        padding: 45px 40px;
    }

}

@media (max-width: 767px) {

    .legal-page {
        padding: 60px 0;
    }

    .legal-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .legal-header h1 {
        font-size: 38px;
    }

    .legal-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .legal-content {
        padding: 30px 22px;
        border-radius: 10px;
    }

    .legal-content > p:first-child {
        padding: 20px;
    }

    .legal-section {
        padding: 28px 0;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-subsection h3 {
        font-size: 18px;
    }

    .legal-content p,
    .legal-list li {
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-box {
        align-items: flex-start;
        padding: 18px;
    }

}

@media (max-width: 480px) {

    .legal-page {
        padding: 45px 0;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 25px 18px;
    }

    .contact-box {
        flex-direction: column;
    }

}