/* ============================================
   GLOBAL CSS — Reset, Variables, Typography
   ============================================ */

/* === CSS Variables === */
:root {
  /* Colors */
  --color-bg-light: #fbfcff;
  --color-bg-dark: #77787c;
  --color-bg-dark-solid: #1e222c;
  --color-primary: #ecdc85;
  --color-primary-dark: #d2a84a;
  --color-primary-darker: #c48b29;
  --color-text-dark: #1e222c;
  --color-text-body: #343841;
  --color-text-muted: #4a5565;
  --color-text-light: #ffffff;
  --color-border: #d1d5dc;
  --color-card-bg: #ffffff;
  --color-overlay-dark: rgba(30, 34, 44, 0.4);
  --color-star: #fadc4b;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  --space-section: 8rem;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Avenir Next', 'Nunito', sans-serif;
  --font-mono: 'Inter', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.625rem;
  --fs-hero: 4.5rem;
  --fs-giant: 4.875rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1440px;
  --section-px: clamp(1.25rem, 5.5vw, 5rem);
  --section-py: clamp(4rem, 8vw, 8rem);
}

.smart-page {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto!important;
  padding: 0 var(--section-px)!important;
}

/* Header/Nav base styles available site-wide */
.header .nav {
  width: 100%;
  padding: 1rem 0;
}

.header .nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header .nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}

.header .nav__logo img {
  width: clamp(250px, 15vw, 248px);
  height: auto;
  object-fit: contain;
}

.header .main-nav,
.header .nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .main-nav li,
.header .nav__menu li {
  list-style: none;
}

.header .main-nav a,
.header .main-nav a:visited,
.header .nav__menu a,
.header .nav__menu a:visited {
  color: var(--color-text-light);
  text-decoration: none !important;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.71;
  transition: opacity var(--transition-base);
  white-space: nowrap;
	text-transform: uppercase;
}

.header .main-nav a:hover,
.header .nav__menu a:hover {
  opacity: 0.75;
}

.header .nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.header .nav__phone,
.header .nav__phone:visited {
  color: var(--color-text-light);
  text-decoration: none !important;
display: flex;
align-items:center;
gap: 20px;
}

.header .nav__hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .header .nav__menu,
  .header .main-nav {
    display: none;
  }

  .header .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.375rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
		align-items:end;
  }

  .header .nav__hamburger span {
    display: block;
    height: 2px;
    border-radius: 1px;
    background-color: var(--color-text-light);
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: min(42rem, 88dvh);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.25rem 1.25rem 1.75rem;
  background: rgba(30, 34, 44, 0.76);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1200;
  transform: translateY(-108%);
  transition: transform var(--transition-slow);
  pointer-events: none;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(119, 120, 124, 0.4) 0%, rgba(30, 34, 44, 0.6) 100%);
}

.mobile-nav > * {
  position: relative;
  z-index: 1;
}

.mobile-nav.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
	padding-top: 120px;
}

.mobile-nav__link,
.mobile-nav__link:visited {
  color: var(--color-text-light);
  text-decoration: none !important;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: uppercase;
	margin-bottom: 40px;
	display: block;
}

.mobile-nav__phone,
.mobile-nav__phone:visited {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-light);
  text-decoration: none !important;
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.011em;
  line-height: 1.25;
}

.mobile-nav__phone-icon {
  width: 4rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--color-bg-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav__phone-icon img,
.mobile-nav__phone-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .mobile-nav,
  .overlay {
    display: none !important;
  }
}

/* Fixed talk badge */
.talk-badge {
  position: fixed;
  right: clamp(0.75rem, 2.5vw, 2rem);
  bottom: clamp(0.75rem, 2.5vw, 2rem);
  width: clamp(5rem, 12vw, 10.3125rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: block;
  background-image: url('../../images/ui/group-7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1050;
  transition: transform var(--transition-base), opacity var(--transition-base);
  animation: talk-badge-pulse 2.6s ease-out infinite;
}

.talk-badge::after {
  content: '';
  position: absolute;
  inset: -0.35rem;
  border-radius: 50%;
  border: 1px solid rgba(29, 34, 55, 0.35);
  pointer-events: none;
  animation: talk-badge-ring 2.6s ease-out infinite;
}

.talk-badge:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  animation-play-state: paused;
}

.talk-badge:hover::after {
  animation-play-state: paused;
}

@keyframes talk-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(29, 34, 55, 0.45);
  }
  60% {
    box-shadow: 0 0 0 0.65rem rgba(29, 34, 55, 0);
  }
}

@keyframes talk-badge-ring {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }
  70%,
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .talk-badge,
  .talk-badge::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .talk-badge {
    width: clamp(4.5rem, 24vw, 6.5rem);
  }
}

/* Footer styles available site-wide */
.footer {
  background-color: var(--color-bg-dark);
  border-top: 1.5px solid var(--color-border);
  position: relative;
  overflow: hidden;
	background-image:url("/wp-content/uploads/2026/04/ServicesSection.webp");
}

.footer__inner {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(15rem, 1.2fr) minmax(10rem, 0.8fr) minmax(12rem, 1fr) minmax(14rem, 1fr);
  gap: 1.5rem;
  align-items: start;
}

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

.footer__brand img {
  width: 15.5rem;
  height: auto;
  max-width: 100%;
  display: block;
}

.footer__tagline {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 18.75rem;
}

.footer__col-title {
  font-family: var(--font-primary);
  font-size:18px;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: -0.031em;
  line-height: 1.93;
  margin-bottom: 1rem;
}

.footer__nav,
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link,
.footer__link,
.footer__nav-link:visited,
.footer__link:visited {
  font-family: var(--font-secondary);
font-size: 18px; 
  color: var(--color-text-light);
  text-decoration: none !important;
  letter-spacing: -0.011em;
  line-height: 1.43;
  transition: opacity var(--transition-base);
}

.footer__nav-link {
  font-weight: 500;
}



.footer__nav-link:hover,
.footer__link:hover,
.footer__contact-item:hover {
  opacity: 0.75;
}

.footer__links--contact {
  gap: 1.5rem;
}

.footer__contact-item,
.footer__contact-item:visited {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: -0.009em;
  line-height: 1.43;
  text-decoration: none !important;
  transition: opacity var(--transition-base);
}

.footer__contact-item svg,
.footer__contact-item img {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.footer__contact-item img {
  object-fit: contain;
}

.footer__bottom {
  border-top: 1px solid rgba(209, 213, 220, 0.2);
  padding: 1.25rem 0 2rem;
  margin-top: 0;
}

.footer__copy {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: -0.011em;
  line-height: 1.43;
	text-align: center;
}
.footer__copy a{
	  color: var(--color-text-light);
}
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}
/* === Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.smart-page a {
  color: inherit;
  text-decoration: none;
}

.smart-page ul,
.smart-page ol {
  list-style: none;
}

.smart-page button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.smart-page input,
.smart-page textarea,
.smart-page select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
	  border-bottom: 1px solid rgba(30,34,44,0.2);
		padding-bottom: 6px;
}

/* === Typography Scale === */
.smart-page h1,
.smart-page h2,
.smart-page h3,
.smart-page h4,
.smart-page h5,
.smart-page h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

/* === Utility Classes === */
.smart-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
