:root {
  --bg-dark: #0d1b2a;
  --bg-medium: #1b263b;
  --bg-light: #f8f9fa;
  --bg-light-alt: #ffffff;
  /* Use pure white for a cleaner look */
  --text-light: #e0e1dd;
  --text-dark: #1a1a1a;
  --text-body: #415a77;
  /* Softer color for body text */
  --text-muted: #afb7bd;
  --primary: #82662c;
  /* Darker Gold for 4.5:1 contrast */
  --primary-hover: #9c7b35;
  --border-color: #dee2e6;
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --font-family: 'Heebo', sans-serif;
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg-light-alt);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  text-align: start;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(144, 113, 49, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Accessibility Focus States --- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  z-index: 2001;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.skip-link:focus {
  transform: translate(-50%, 0);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 700px;
  margin: 20px auto 30px;
  line-height: 1.6;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px var(--shadow-soft);
  padding: 10px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-hover);
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav-list a:not(.btn) {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  text-decoration: none;
}

.lang-switch {
  padding: 6px 14px !important;
  border: 1px solid var(--primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  background: transparent;
  color: var(--primary) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.lang-switch:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(144, 113, 49, 0.2);
}

.lang-switch::after {
  display: none !important;
}

.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-list a:not(.btn):hover::after {
  width: 100%;
}

.nav-list a:not(.btn):hover {
  color: var(--text-dark);
}

.nav-list .btn {
  margin-inline-start: 15px;
}

/* --- NEW: Header Dropdown --- */
.has-sub {
  position: relative;
}

.has-sub>a::after {
  content: '▾';
  font-size: 1.1rem;
  margin-inline-start: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  top: 1px;
}

.has-sub:hover>a::after {
  transform: rotate(180deg);
}

.nav-list .has-sub:hover>a::after {
  width: 0;
  /* Prevents underline on parent link */
}

.sub-menu {
  position: absolute;
  top: 100%;
  right: 50%;
  /* Position relative to parent */
  transform: translateX(50%);
  /* Center the dropdown */
  list-style: none;
  padding: 10px 0;
  margin: 10px 0 0 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px var(--shadow-medium);
  border: 1px solid #f0f0f0;
  min-width: 230px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.sub-menu li a {
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  font-weight: 400;
  color: var(--text-body);
}

.sub-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.sub-menu li a::after {
  display: none;
  /* Hide underline effect in dropdown links */
}

/* --- END: Header Dropdown --- */


/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Prestigious Gray Background */
  background: radial-gradient(circle at 50% 50%, #4a4e54 0%, #2a2d32 100%);
  color: white;
  text-align: center;
  padding: 80px 0 120px;
  overflow: hidden;
}

/* Animated Ambient Background Blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(144, 113, 49, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatBlob 15s infinite alternate;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  filter: blur(90px);
  animation: floatBlob 20s infinite alternate-reverse;
  z-index: 1;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 20px) scale(1.05);
  }
}

.hero-overlay {
  display: none;
}

.hero h1 {
  color: white;
  max-width: 850px;
  margin: 0 auto 24px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.1;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  font-size: 1.3rem;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero>.container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-brand {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  color: #FEE09A;
  background: linear-gradient(135deg, #FEE09A 0%, #e3c06d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: clamp(2px, 1vw, 5px);
  margin-bottom: 8px;
  display: block;
  line-height: 1.1;
  filter: drop-shadow(0 4px 15px rgba(254, 224, 154, 0.2));
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 50px;
  display: block;
}

.eyebrow {
  display: none;
}

.cta-note {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-pills {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.trust-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-pills .pill:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.trust-pills .pill::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.trust-row {
  display: none;
}


/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #7d6124 100%);
  color: #ffffff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(144, 113, 49, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(144, 113, 49, 0.5);
  background: linear-gradient(135deg, #b8934a 0%, #907131 100%);
  color: #fff;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: white;
  color: var(--bg-dark);
  border-color: white;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow: 0 12px 35px rgba(144, 113, 49, 0.38);
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 12px 35px rgba(144, 113, 49, 0.32);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 16px 45px rgba(144, 113, 49, 0.46);
    transform: translateY(-2px);
  }
}

/* --- Buttons on Dark Backgrounds --- */
.btn-on-dark {
  background: linear-gradient(135deg, #FEE09A 0%, #e3c06d 100%);
  color: #1a150a;
  /* High contrast: 11:1 ratio */
  border: 1px solid #e3c06d;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-on-dark:hover {
  background: linear-gradient(135deg, #fff2cc 0%, #FEE09A 100%);
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(254, 224, 154, 0.4);
}

.btn-on-dark.btn-glow {
  box-shadow: 0 12px 35px rgba(254, 224, 154, 0.3);
  animation: btnPulseGoldVibrant 3s ease-in-out infinite;
}

@keyframes btnPulseGoldVibrant {

  0%,
  100% {
    box-shadow: 0 12px 35px rgba(254, 224, 154, 0.25);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 16px 45px rgba(254, 224, 154, 0.5);
    transform: translateY(-2px);
  }
}

.btn-ghost-on-dark {
  background: transparent;
  border: 2px solid #FEE09A;
  color: #ffffff;
}

.btn-ghost-on-dark:hover {
  background: #FEE09A;
  color: #000000;
  border-color: #FEE09A;
}


/* --- Cards --- */
.grid {
  display: grid;
  gap: 30px;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 25px var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px var(--shadow-soft);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-body);
}

.card-link {
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

.card-link:hover {
  transform: translateX(4px);
}

/* --- Why Us Section --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.split-content {
  text-align: start;
}

.split-content .section-title {
  text-align: start;
  margin-bottom: 20px;
}

.split-content .section-title::after {
  margin: 15px 0 0 0;
}

.split-image img {
  border-radius: 12px;
  box-shadow: 0 15px 50px var(--shadow-medium);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.list-check li {
  position: relative;
  padding-inline-start: 35px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.list-check li::before {
  content: '✔';
  position: absolute;
  inset-inline-start: 0;
  top: -2px;
  color: white;
  background: var(--primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* --- Contact Form --- */
#contact {
  text-align: center;
}

.contact-form {
  max-width: 800px;
  margin: 40px auto 0;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--bg-light);
  text-align: right;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(144, 113, 49, 0.2);
  background-color: #fff;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* --- Footer --- */
.site-footer {
  background: radial-gradient(circle at 50% 50%, #4a4e54 0%, #2a2d32 100%);
  color: var(--text-muted);
  padding: 70px 0 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 50px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.site-footer p {
  opacity: 0.8;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 12px;
}

.site-footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.whatsapp-link {
  color: #25d366 !important;
  font-weight: 600;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px !important;
}

.whatsapp-link:hover {
  color: #1ebe57 !important;
  text-decoration-thickness: 2px !important;
}

.legal {
  text-align: center;
  border-top: 1px solid #415a77;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}


/* --- Contact Page Components --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.contact-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-link:hover {
  color: var(--primary-hover);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px 30px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* --- WhatsApp & Phone Floating Buttons --- */
.wa-float,
.phone-float {
  position: fixed;
  width: 60px;
  height: 60px;
  left: 30px;
  /* Stays on left for RTL consistency */
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 99;
  transition: transform 0.3s, background 0.3s;
}

.wa-float {
  bottom: 30px;
  background-color: #25D366;
}

.phone-float {
  bottom: 100px;
  background: linear-gradient(135deg, #FEE09A 0%, #e3c06d 100%);
  color: #1a150a;
  border: 1px solid #d4b260;
  box-shadow: 0 4px 15px rgba(227, 192, 109, 0.4);
  display: none;
  /* Hidden on desktop */
}

.wa-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

.phone-float:hover {
  transform: scale(1.1) translateY(-2px);
  background: linear-gradient(135deg, #fff2cc 0%, #FEE09A 100%);
  box-shadow: 0 6px 20px rgba(227, 192, 109, 0.6);
}

.wa-float svg,
.phone-float svg {
  width: 28px;
  height: 28px;
}

/* --- Animations & Micro-interactions --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for card grids */
.grid>* {
  transition-delay: calc(var(--i, 0) * 100ms);
}


/* --- Mobile Navigation --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Responsive & Mobile --- */
@media (max-width: 992px) {

  /* HIDE DROPDOWN on mobile, will require JS to handle */
  .has-sub .sub-menu {
    display: none;
  }

  .has-sub>a::after {
    display: none;
  }

  /* Hide arrow on mobile nav */

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
  }

  .nav-header-actions {
    gap: 10px;
  }

  .lang-switch {
    min-width: 70px;
    padding: 4px 10px !important;
    font-size: 0.8rem;
  }

  .nav-list.is-active {
    transform: translateX(0);
  }

  .nav-list a {
    font-size: 1.5rem;
  }

  .nav-list .btn {
    margin: 20px 0 0 0;
  }

  .nav-toggle {
    display: block;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-image {
    grid-row: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid>div:not(:last-child) {
    margin-bottom: 20px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero {
    min-height: 70vh;
  }

  .trust-row {
    gap: 10px 20px;
    font-size: 0.9rem;
  }

  .wa-float,
  .phone-float {
    width: 50px;
    height: 50px;
    left: 20px;
  }

  .wa-float {
    bottom: 20px;
  }

  .phone-float {
    display: flex;
    /* Show only on mobile */
    bottom: 80px;
  }

  .wa-float svg,
  .phone-float svg {
    width: 24px;
    height: 24px;
  }

  .logo img {
    height: 38px;
  }
}

/* --- Interior pages --- */
.page {
  background: var(--bg-light-alt);
  min-height: 100vh;
}

.page-hero {
  position: relative;
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #3d4147 0%, #505860 50%, #2d3139 100%);
  color: white;
  text-align: center;
}

.page-hero.narrow {
  padding: 120px 0 70px;
}

.page-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  margin: 10px auto 0;
}

.content-wrapper,
.content {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2,
.content h2 {
  margin-top: 0;
}

.content-wrapper ul,
.content ul,
.content-wrapper ol,
.content ol {
  padding-inline-start: 22px;
}

.cta-section {
  text-align: center;
  padding-top: 60px;
}

.cta-section p {
  color: var(--text-body);
}

/* Trust Pills Mobile Improvements */
@media (max-width: 768px) {
  .trust-pills {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 30px;
  }

  .trust-pills .pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* --- Buttons variants --- */
.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.97rem;
  background: #fff;
  box-shadow: 0 4px 20px var(--shadow-soft);
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

table thead {
  background: var(--bg-light);
}

table th,
table td {
  padding: 14px 16px;
  text-align: start;
  border-bottom: 1px solid #f0f0f0;
}

table th {
  color: var(--text-dark);
}

table tbody tr:hover {
  background: #fafafa;
}

/* --- Accessibility --- */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-dark);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for all interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Remove default focus outline when using custom */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Focus-visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .btn-glow {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000;
    --shadow-soft: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.3);
  }

  .card,
  .contact-card,
  .faq-item {
    border-width: 2px;
  }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  background: var(--bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: var(--text-muted);
  font-weight: 300;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs li:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* --- Internal Linking / Related Services --- */
.related-services {
  padding: 60px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.related-services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.related-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* --- Cookie Notice --- */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  border-top: 1px solid rgba(130, 102, 44, 0.3);
}

.cookie-notice.is-visible {
  transform: translateY(0);
}

.cookie-notice .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-notice p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cookie-notice .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}