/* ==========================================================================
   MAIN STYLESHEET - Optimized Fluid Typography
   ==========================================================================
   
   TABLE OF CONTENTS:
   1.  Variables & Root (Fluid Typography System)
   2.  Reset & Base
   3.  Typography (Fluid Headings, Paragraphs)
   4.  Layout (Fluid Containers, Sections)
   5.  Header & Navigation
   6.  Hero
   7.  Subhero
   8.  Page Title & Breadcrumbs
   9.  Section Titles
   10. Content Sections
   11. UI Components
   12. Footer
   13. Utilities & Animations
   14. Font Overrides
   15. Print & Accessibility
   
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES & ROOT - OPTIMIZED FLUID TYPOGRAPHY
   ========================================================================== */

:root {
  /* Fonts */
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Merriweather", serif;
  --nav-font: "Poppins", sans-serif;

  /* Colors - Primary */
  --background-color: #ffffff;
  --default-color: #59524e;
  --heading-color: #3d3430;
  --accent-color: #8f7c51;
  --surface-color: #ffffff;
  --contrast-color: #e0d2af;

  /* Colors - Navigation */
  --nav-color: #3d3430;
  --nav-hover-color: #8f7c51;
  --nav-active-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3d3430;
  --nav-dropdown-hover-color: #8f7c51;

  /* Colors - Footer */
  --footer-text-color: #e8e0d5;
  --footer-accent-color: #b9a876;

  /* ==========================================================================
     FLUID TYPOGRAPHY SYSTEM
     
     Formula: clamp(min, preferred, max)
     Preferred = vw-coefficient + rem-base
     
     Target: 16px @ mobile → 18px @ 1200px → 22px @ 4K
     ========================================================================== */

  /* Body: 16px → 18px @ lg → 22px max */
  --ft-body-min: 1rem;                    /* 16px */
  --ft-body-target: 0.17vw + 0.95rem;     /* Hits 18px @ 1200px */
  --ft-body-max: 1.375rem;                /* 22px */

  /* Lead: 18px → 20px @ lg → 26px max */
  --ft-lead-min: 1.125rem;                /* 18px */
  --ft-lead-target: 0.22vw + 1.05rem;     /* Hits 20px @ 1200px */
  --ft-lead-max: 1.625rem;                /* 26px */

  /* H1: 32px → 42px @ lg → 64px max */
  --ft-h1-min: 2rem;                      /* 32px */
  --ft-h1-target: 0.85vw + 1.35rem;       /* Hits 42px @ 1200px */
  --ft-h1-max: 4rem;                      /* 64px */

  /* H2: 26px → 34px @ lg → 52px max */
  --ft-h2-min: 1.625rem;                  /* 26px */
  --ft-h2-target: 0.65vw + 1.15rem;       /* Hits 34px @ 1200px */
  --ft-h2-max: 3.25rem;                   /* 52px */

  /* H3: 22px → 28px @ lg → 42px max */
  --ft-h3-min: 1.375rem;                  /* 22px */
  --ft-h3-target: 0.5vw + 1rem;           /* Hits 28px @ 1200px */
  --ft-h3-max: 2.625rem;                  /* 42px */

  /* H4: 20px → 24px @ lg → 34px max */
  --ft-h4-min: 1.25rem;                   /* 20px */
  --ft-h4-target: 0.35vw + 0.95rem;       /* Hits 24px @ 1200px */
  --ft-h4-max: 2.125rem;                  /* 34px */

  /* H5: 18px → 20px @ lg → 28px max */
  --ft-h5-min: 1.125rem;                  /* 18px */
  --ft-h5-target: 0.25vw + 0.9rem;        /* Hits 20px @ 1200px */
  --ft-h5-max: 1.75rem;                   /* 28px */

  /* H6: 16px → 18px @ lg → 24px max */
  --ft-h6-min: 1rem;                      /* 16px */
  --ft-h6-target: 0.17vw + 0.85rem;       /* Hits 18px @ 1200px */
  --ft-h6-max: 1.5rem;                    /* 24px */

  /* ==========================================================================
     FLUID CONTAINER WIDTHS
     ========================================================================== */
  
  /* Standard Bootstrap-compatible containers */
  --container-sm: clamp(540px, 95vw, 720px);
  --container-md: clamp(720px, 90vw, 960px);
  --container-lg: clamp(960px, 85vw, 1140px);
  --container-xl: clamp(1140px, 80vw, 1320px);
  --container-xxl: clamp(1320px, 75vw, 1536px);
  
  /* Extended containers for ultra-wide */
  --container-2xl: clamp(1536px, 70vw, 1920px);
  --container-3xl: clamp(1920px, 65vw, 2560px);
  --container-4k: clamp(2560px, 60vw, 3200px);

  /* Content width (for articles/text) */
  --content-width-sm: clamp(600px, 90vw, 720px);
  --content-width-md: clamp(720px, 70vw, 900px);
  --content-width-lg: clamp(900px, 55vw, 1100px);

  /* ==========================================================================
     FLUID SPACING
     ========================================================================== */
  
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
  --space-xl: clamp(3rem, 6vw, 6rem);
  --space-2xl: clamp(4rem, 8vw, 10rem);

  scroll-behavior: smooth;
}

/* Theme Variants */
.light-background {
  --background-color: #f9f7f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(51, 51, 51, 0.6);
  --default-color: #f0f0f0;
  --heading-color: #ffffff;
  --surface-color: #4a4a4a;
  --contrast-color: #2d2d2d;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  
  /* Fluid body font: 16px → 18px @ 1200px → 22px @ 4K */
  font-size: clamp(
    var(--ft-body-min),
    var(--ft-body-target),
    var(--ft-body-max)
  );
  
  font-weight: 400;
  line-height: clamp(1.6, 0.03vw + 1.55, 1.75);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s, text-decoration-color 0.3s;
  font-family: var(--default-font);
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

/* --- Base Headings --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* --- Fluid Headings --- */
h1 {
  font-size: clamp(var(--ft-h1-min), var(--ft-h1-target), var(--ft-h1-max));
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: clamp(-0.5px, -0.05vw, -2px);
}

h2 {
  font-size: clamp(var(--ft-h2-min), var(--ft-h2-target), var(--ft-h2-max));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: clamp(-0.3px, -0.03vw, -1.5px);
}

h3 {
  font-size: clamp(var(--ft-h3-min), var(--ft-h3-target), var(--ft-h3-max));
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: clamp(-0.2px, -0.02vw, -1px);
}

h4 {
  font-size: clamp(var(--ft-h4-min), var(--ft-h4-target), var(--ft-h4-max));
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  font-size: clamp(var(--ft-h5-min), var(--ft-h5-target), var(--ft-h5-max));
  font-weight: 600;
  line-height: 1.3;
}

h6 {
  font-size: clamp(var(--ft-h6-min), var(--ft-h6-target), var(--ft-h6-max));
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Paragraphs --- */
p {
  font-family: var(--default-font);
  font-size: clamp(
    var(--ft-body-min),
    var(--ft-body-target),
    var(--ft-body-max)
  );
  line-height: clamp(1.6, 0.03vw + 1.55, 1.75);
  max-width: clamp(55ch, 5vw + 50ch, 75ch);
}

/* --- Lead Paragraphs --- */
.lead,
.entry-content > p:first-of-type {
  font-size: clamp(
    var(--ft-lead-min),
    var(--ft-lead-target),
    var(--ft-lead-max)
  );
  line-height: clamp(1.55, 0.03vw + 1.5, 1.7);
  font-weight: 400;
}

/* --- Small Text --- */
small,
.small {
  font-size: clamp(0.8125rem, 0.1vw + 0.75rem, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
}

.wp-caption-text,
figcaption {
  font-size: clamp(0.8125rem, 0.1vw + 0.75rem, 0.9375rem);
  line-height: 1.5;
  color: #666666;
}

/* --- Blockquotes --- */
blockquote p {
  font-size: clamp(1.0625rem, 0.2vw + 1rem, 1.375rem);
  line-height: clamp(1.6, 0.03vw + 1.55, 1.75);
  font-style: italic;
  color: #555555;
}

/* --- Lists --- */
ul, ol {
  font-family: var(--default-font);
  line-height: clamp(1.6, 0.03vw + 1.55, 1.75);
}

/* --- Sidebar/Widget Text --- */
.sidebar p,
.widget p,
aside p {
  font-size: clamp(0.875rem, 0.12vw + 0.8rem, 1rem);
  line-height: 1.65;
}

/* --- Typography Spacing --- */
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: clamp(1.5em, 0.5vw + 1.5em, 2.5em);
}

/* --- Links in Text --- */
p a {
  color: #2563eb;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  text-decoration-thickness: clamp(1px, 0.05vw + 1px, 2px);
  text-underline-offset: clamp(2px, 0.05vw + 2px, 4px);
  transition: all 0.2s ease;
}

p a:hover {
  color: #1d4ed8;
  text-decoration-color: rgba(29, 78, 216, 0.7);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #2563eb;
}

/* ==========================================================================
   LEGACY BROWSER FALLBACK
   ========================================================================== */

@supports not (font-size: clamp(1rem, 2vw, 3rem)) {
  /* Mobile */
  body { font-size: 16px; line-height: 1.6; }
  p { font-size: 16px; }
  .lead { font-size: 18px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }
  
  @media (min-width: 768px) {
    body { font-size: 16px; }
    p { font-size: 16px; }
    .lead { font-size: 18px; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
  }
  
  /* lg breakpoint - 18px body ✓ */
  @media (min-width: 1200px) {
    body { font-size: 18px; }
    p { font-size: 18px; }
    .lead { font-size: 20px; }
    h1 { font-size: 42px; }
    h2 { font-size: 34px; }
    h3 { font-size: 28px; }
    h4 { font-size: 24px; }
    h5 { font-size: 20px; }
    h6 { font-size: 18px; }
  }
  
  @media (min-width: 1920px) {
    body { font-size: 20px; }
    p { font-size: 20px; }
    .lead { font-size: 22px; }
    h1 { font-size: 52px; }
    h2 { font-size: 42px; }
    h3 { font-size: 34px; }
    h4 { font-size: 28px; }
    h5 { font-size: 24px; }
    h6 { font-size: 20px; }
  }
  
  @media (min-width: 2560px) {
    body { font-size: 22px; }
    p { font-size: 22px; }
    .lead { font-size: 26px; }
    h1 { font-size: 64px; }
    h2 { font-size: 52px; }
    h3 { font-size: 42px; }
    h4 { font-size: 34px; }
    h5 { font-size: 28px; }
    h6 { font-size: 24px; }
  }
}

/* ==========================================================================
   4. LAYOUT - FLUID CONTAINERS
   ========================================================================== */

/* --- Main Container --- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

/* --- Container Variants --- */
.container-sm {
  max-width: var(--container-sm);
}

.container-md {
  max-width: var(--container-md);
}

.container-lg {
  max-width: var(--container-lg);
}

.container-xl {
  max-width: var(--container-xl);
}

.container-xxl {
  max-width: var(--container-xxl);
}

/* --- Ultra-wide Containers (1920px+) --- */
@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container-2xl);
    padding-left: clamp(1.5rem, 2vw, 3rem);
    padding-right: clamp(1.5rem, 2vw, 3rem);
  }
  
  .container-2xl {
    max-width: var(--container-2xl);
  }
}

@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container-3xl);
  }
  
  .container-3xl {
    max-width: var(--container-3xl);
  }
}

@media (min-width: 3840px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container-4k);
  }
  
  .container-4k {
    max-width: var(--container-4k);
  }
}

/* --- Content Containers (for articles/text) --- */
.entry-content,
.post-content,
.article-content {
  max-width: var(--content-width-md);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1920px) {
  .entry-content,
  .post-content,
  .article-content {
    max-width: var(--content-width-lg);
  }
}

/* --- Sections --- */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: var(--space-lg) 0;
  scroll-margin-top: clamp(60px, 5vw + 50px, 100px);
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .container,
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* Logo */
.header .logo {
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 130px;
  max-width: 130px;
}

.header .logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 32px;
  object-fit: contain;
  transition: all 0.3s;
}

.header .logo:hover img {
  opacity: 0.85;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Logo responsive */
@media (min-width: 576px) {
  .header .logo {
    width: 150px;
    max-width: 150px;
  }
  .header .logo img {
    max-height: 36px;
  }
}
@media (min-width: 768px) {
  .header .logo {
    width: 170px;
    max-width: 170px;
  }
  .header .logo img {
    max-height: 40px;
  }
}
@media (min-width: 992px) {
  .header .logo {
    width: 190px;
    max-width: 190px;
  }
  .header .logo img {
    max-height: 44px;
  }
}
@media (min-width: 1200px) {
  .header .logo {
    width: 220px;
    max-width: 220px;
  }
  .header .logo img {
    max-height: 50px;
  }
}
@media (min-width: 1400px) {
  .header .logo {
    width: 250px;
    max-width: 250px;
  }
  .header .logo img {
    max-height: 56px;
  }
}
@media (min-width: 1800px) {
  .header .logo {
    width: 270px;
    max-width: 270px;
  }
  .header .logo img {
    max-height: 60px;
  }
}
@media (max-width: 399.98px) {
  .header .logo {
    width: 110px;
    max-width: 110px;
  }
  .header .logo img {
    max-height: 28px;
  }
}

/* Scrolled state */
.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  --background-color: rgba(61, 52, 48, 0.9);
}

.scrolled .header .logo img {
  max-height: 28px;
}
@media (min-width: 576px) {
  .scrolled .header .logo img {
    max-height: 30px;
  }
}
@media (min-width: 768px) {
  .scrolled .header .logo img {
    max-height: 34px;
  }
}
@media (min-width: 992px) {
  .scrolled .header .logo img {
    max-height: 38px;
  }
}
@media (min-width: 1200px) {
  .scrolled .header .logo img {
    max-height: 42px;
  }
}
@media (min-width: 1400px) {
  .scrolled .header .logo img {
    max-height: 46px;
  }
}
@media (min-width: 1800px) {
  .scrolled .header .logo img {
    max-height: 50px;
  }
}

/* Header CTA */
.header .cta-btn {
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Mobile header */
@media (max-width: 1199.98px) {
  .header {
    padding: 12px 0;
  }
  .header .container,
  .header .container-fluid {
    gap: 10px;
  }
  .header .logo {
    order: 1;
    flex: 0 1 auto;
    min-width: 0;
  }
  .header .cta-btn {
    order: 2;
    margin: 0 0 0 auto;
    padding: 6px 14px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .header .navmenu {
    order: 3;
    flex-shrink: 0;
  }
}

@media (max-width: 767.98px) {
  .header .cta-btn {
    padding: 5px 12px;
    font-size: 10px;
  }
}
@media (max-width: 399.98px) {
  .header .logo img {
    max-height: 28px;
    max-width: 110px;
  }
  .header .cta-btn {
    padding: 4px 10px;
    font-size: 9px;
  }
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a {
    color: #fff;
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0;
    transition: all 0.3s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  /* Dropdowns */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    font-weight: 400;
  }
  .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(--nav-dropdown-hover-color);
  }

  .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;
  }
}

/* Mobile Navigation */
@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: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a {
    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 {
    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 {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active 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);
    transition: all 0.5s;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(61, 52, 48, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(61, 52, 48, 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(61, 52, 48, 0.9);
    transition: 0.3s;
  }

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

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero img {
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-family: var(--default-font);
  font-weight: 300;
}

/* Hero typography responsive */
.hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.hero h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.hero p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
.hero .lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 576px) {
  .hero h1 {
    font-size: 38px;
    letter-spacing: -0.6px;
  }
  .hero h2 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .lead {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 46px;
    letter-spacing: -0.8px;
  }
  .hero h2 {
    font-size: 38px;
  }
  .hero p {
    font-size: 20px;
  }
  .hero .lead {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 54px;
    letter-spacing: -1px;
  }
  .hero h2 {
    font-size: 44px;
  }
  .hero p {
    font-size: 22px;
  }
  .hero .lead {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 60px;
    letter-spacing: -1.2px;
  }
  .hero h2 {
    font-size: 48px;
  }
  .hero p {
    font-size: 24px;
  }
  .hero .lead {
    font-size: 26px;
  }
}
@media (min-width: 1920px) {
  .hero h1 {
    font-size: 84px;
    letter-spacing: -2.2px;
  }
  .hero h2 {
    font-size: 66px;
    letter-spacing: -1.6px;
  }
  .hero p {
    font-size: 30px;
  }
  .hero .lead {
    font-size: 32px;
  }
}
@media (min-width: 2560px) {
  .hero h1 {
    font-size: 108px;
    letter-spacing: -3px;
  }
  .hero h2 {
    font-size: 84px;
    letter-spacing: -2.2px;
  }
  .hero p {
    font-size: 36px;
  }
  .hero .lead {
    font-size: 40px;
  }
}
@media (min-width: 3840px) {
  .hero h1 {
    font-size: 140px;
    letter-spacing: -4px;
  }
  .hero h2 {
    font-size: 110px;
    letter-spacing: -3px;
  }
  .hero p {
    font-size: 46px;
  }
  .hero .lead {
    font-size: 52px;
  }
}

/* Hero buttons */
.hero .btn-get-started {
  background: var(--heading-color);
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  display: inline-block;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
  font-family: var(--default-font);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

/* Force white text */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p {
  color: #fff !important;
}

/* ==========================================================================
   7. SUBHERO
   ========================================================================== */
.subhero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.subhero .subhero-bg,
.subhero > picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.subhero .subhero-bg img,
.subhero > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .subhero .subhero-bg img,
  .subhero > picture img {
    image-rendering: auto;
    backface-visibility: hidden;
  }
}

.subhero .subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
}

.subhero .container {
  position: relative;
  z-index: 3;
}

.subhero h1,
.subhero h2,
.subhero h3,
.subhero h4,
.subhero h5,
.subhero h6 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--heading-font);
  margin-bottom: 0.75rem;
}

.subhero p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-family: var(--default-font);
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

/* Breadcrumbs */
.subhero .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-family: var(--default-font);
}
.subhero .breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.7);
}
.subhero .breadcrumbs ol li + li {
  padding-left: 10px;
}
.subhero .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
}
.subhero .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.subhero .breadcrumbs ol li a:hover {
  color: var(--accent-color);
}
.subhero .breadcrumbs ol li.current {
  color: var(--accent-color);
}

/* Subhero responsive */
.subhero {
  min-height: 280px;
  height: 45vh;
  max-height: 380px;
  padding: 100px 0 40px 0;
}
.subhero h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .subhero {
    min-height: 320px;
    height: 40vh;
    max-height: 450px;
    padding: 120px 0 50px 0;
  }
  .subhero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 1200px) {
  .subhero {
    min-height: 380px;
    height: 36vh;
    max-height: 520px;
    padding: 140px 0 60px 0;
  }
  .subhero h1 {
    font-size: 44px;
    letter-spacing: -0.8px;
  }
}
@media (min-width: 1920px) {
  .subhero {
    min-height: 450px;
    height: 30vh;
    max-height: 620px;
    padding: 170px 0 75px 0;
  }
  .subhero h1 {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
}

/* Variants */
.subhero.subhero-tall {
  min-height: 350px;
  height: 55vh;
  max-height: 500px;
}
.subhero.subhero-minimal {
  min-height: 200px;
  height: 30vh;
  max-height: 280px;
}

/* ==========================================================================
   8. PAGE TITLE & BREADCRUMBS
   ========================================================================== */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* ==========================================================================
   9. SECTION TITLES
   ========================================================================== */
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/* ==========================================================================
   10. CONTENT SECTIONS
   ========================================================================== */

/* --- Services --- */
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}

.services .details {
  margin: 0px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--accent-color);
}
.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}
.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}

/* --- Clients --- */
.clients {
  padding: 20px 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/* --- Features --- */
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  font-family: var(--default-font);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.features .nav-link:hover h4 {
  color: var(--accent-color);
}
.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.features .nav-link.active h4,
.features .nav-link.active i {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
  font-family: var(--heading-font);
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
  font-family: var(--default-font);
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* --- Services 2 --- */
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
  height: 100%;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
  flex-shrink: 0;
}
.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.services-2 .service-item .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}
.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
  font-family: var(--default-font);
  color: var(--default-color);
}
.services-2 .service-item:hover {
  border-color: var(--accent-color);
}
.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/* --- Portfolio --- */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: var(--default-font);
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-content img {
  transition: 0.3s;
  width: 100%;
  height: auto;
  display: block;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
  font-family: var(--heading-font);
}
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--default-font);
}
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}
.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/* --- Portfolio Details --- */
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--default-font);
}

/* --- Team --- */
.team .member {
  position: relative;
}
.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}
.team .member .pic img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  font-family: var(--default-font);
}
.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.team .member .social a:hover {
  color: var(--accent-color);
}
.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
.team .member:hover .member-info {
  bottom: 0;
}

/* --- Testimonials --- */
.testimonials {
  padding: 80px 0;
  position: relative;
}
.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.testimonials .container {
  position: relative;
  z-index: 3;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
  object-fit: cover;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-family: var(--default-font);
  font-weight: 400;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  font-family: var(--default-font);
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/* --- Contact --- */
.contact .info-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-family: var(--heading-font);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-family: var(--default-font);
}
.contact .info-item:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-family: var(--default-font);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  font-family: var(--default-font);
  font-weight: 600;
}
.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* --- Service Details --- */
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
  font-family: var(--default-font);
}
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details .services-img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.service-details p {
  font-size: 15px;
  font-family: var(--default-font);
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* --- Starter Section --- */
.starter-section {
  padding: 60px 0;
}

/* ==========================================================================
   11. UI COMPONENTS
   ========================================================================== */

/* --- Buttons --- */
.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-outline,
.btn-cta-outline-light {
  font-family: var(--default-font);
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 20px;
}

.btn-cta-primary {
  background: #3d3430;
  color: #8f7c51;
  border: 2px solid #3d3430;
}
.btn-cta-primary:hover {
  background: #8f7c51;
  color: #3d3430;
  border-color: #8f7c51;
}

.btn-cta-secondary {
  background: #8f7c51;
  color: #3d3430;
  border: 2px solid #8f7c51;
}
.btn-cta-secondary:hover {
  background: #3d3430;
  color: #8f7c51;
  border-color: #3d3430;
}

.btn-cta-outline {
  background: transparent;
  color: #3d3430;
  border: 2px solid #3d3430;
}
.btn-cta-outline:hover {
  background: #3d3430;
  color: #8f7c51;
}

.btn-cta-outline-light {
  background: transparent;
  color: #8f7c51;
  border: 2px solid #8f7c51;
}
.btn-cta-outline-light:hover {
  background: #8f7c51;
  color: #3d3430;
}

@media (min-width: 768px) {
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-outline,
  .btn-cta-outline-light {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 30px;
  }
}
@media (min-width: 1200px) {
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-outline,
  .btn-cta-outline-light {
    font-size: 15px;
    padding: 12px 40px;
  }
}
@media (min-width: 1920px) {
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-outline,
  .btn-cta-outline-light {
    font-size: 17px;
    padding: 16px 55px;
    letter-spacing: 2.2px;
  }
}

/* Modifiers */
.btn-cta-sm {
  font-size: 12px !important;
  padding: 6px 16px !important;
}
.btn-cta-lg {
  font-size: 16px !important;
  padding: 14px 40px !important;
}
.btn-cta-block {
  width: 100%;
  display: block;
}

/* Standard buttons */
.btn,
button {
  font-family: var(--default-font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-get-started,
button[type="submit"] {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-get-started:hover,
button[type="submit"]:hover {
  background-color: #544842;
  color: #fff;
}

/* --- Cards --- */
.card .card-img-top {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.row > [class*="col"] .card {
  height: 100%;
}

#services .card .card-img-top {
  aspect-ratio: unset;
  height: 200px;
}
@media (min-width: 768px) {
  #services .card .card-img-top {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  #services .card .card-img-top {
    height: 180px;
  }
}
@media (min-width: 1800px) {
  #services .card .card-img-top {
    height: 240px;
  }
}

.card-footer .btn-card-footer {
  background: #3d3430;
  color: #e0d2af;
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 2px solid #3d3430;
  text-decoration: none;
  display: inline-block;
}

.card-footer .btn-card-footer:hover {
  background: #e0d2af;
  border-color: #e0d2af;
  color: #3d3430;
}

/* --- Forms --- */
.contact .contact-form-container {
  padding: 60px 0;
}
.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}
.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
}
.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s;
}
.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.contact .contact-form-container .contact-form .send-button {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Form states */
.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--default-font);
}
.php-email-form .error-message {
  background: #df1529;
  color: #ffffff;
  text-align: left;
}
.php-email-form .sent-message {
  background: #059652;
  color: #ffffff;
  text-align: center;
}
.php-email-form .loading {
  background: var(--surface-color);
  text-align: center;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- Vertical Tabs --- */
.nav-pills.custom-vertical-tabs {
  flex-direction: column;
  gap: 10px;
}

.nav-pills.custom-vertical-tabs .nav-link {
  text-align: left;
  color: #6c757d;
  background-color: transparent;
  border-radius: 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #dee2e6;
  font-weight: 500;
  transition: all 0.3s;
  width: 100%;
  font-family: var(--default-font);
}

.nav-pills.custom-vertical-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: var(--surface-color);
  border-left-color: var(--accent-color);
}
.nav-pills.custom-vertical-tabs .nav-link.active {
  background-color: transparent;
  color: var(--heading-color);
  font-weight: 700;
  border-left: 3px solid var(--accent-color);
}

.content-heading {
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-family: var(--heading-font);
}

ul.custom-check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
ul.custom-check-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--default-color);
  font-family: var(--default-font);
}
ul.custom-check-list i {
  color: var(--accent-color);
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Accordion --- */
.accordion-header .accordion-button {
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  padding: 1rem 0;
}
.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* --- FAQ --- */
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq .faq-item:last-child {
  border-bottom: none;
}

/* FAQ active states */
.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}
.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}
.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}
.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}
.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/* FAQ inactive states */
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

/* FAQ header */
.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}
.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}
.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}
.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}
.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}
.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* FAQ content */
.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}
.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}
.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

/* FAQ responsive */
@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }
  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }
  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }
  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }
  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }
  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }
  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }
  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }
  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   FAQ Section - Language Navigation & Enhancements
   ========================================================================== */

/* Language navigation styling - Mobile only */
.lang-nav {
  padding: 12px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.lang-nav .text-muted {
  font-size: 0.875rem;
  font-weight: 400;
}

.lang-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.lang-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-nav a.text-primary:hover {
  background: color-mix(in srgb, #0d6efd, transparent 90%);
}

.lang-nav a.text-secondary:hover {
  background: color-mix(in srgb, #6c757d, transparent 90%);
}

/* Language badges styling */
.badge i.bi-translate {
  font-size: 0.9rem;
}

.badge.bg-primary,
.badge.bg-secondary {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
}

/* Scroll offset for anchored language sections */
[id^="item"] {
  scroll-margin-top: 80px;
}

/* FAQ Close Link Styling */
.faq-close-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--default-color);
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.faq-close-link:hover {
  opacity: 1;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-2px);
}

.faq-close-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-close-link:hover i {
  transform: rotate(90deg);
}

/* Desktop close link centering */
@media (min-width: 992px) {
  .faq-close-link.fw-bold {
	font-weight: 600 !important;
  }
}

/* Mobile optimization */
@media (max-width: 991px) {
  .lang-nav {
	padding: 10px 14px;
  }
  
  .lang-nav a {
	font-size: 0.85rem;
	padding: 5px 10px;
  }
  
  [id^="item"] {
	scroll-margin-top: 60px;
  }
}

/* Enhanced FAQ item spacing for better language section visibility */
.faq-item .faq-content .content-inner {
  padding-top: 20px;
}

/* Ensure proper spacing between language columns */
.faq-item .row [class*="col-lg-"] {
  position: relative;
}

/* Visual separator between columns on desktop */
/*@media (min-width: 992px) {
  .faq-item .row .col-lg-6:first-child::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(
	  to bottom,
	  transparent,
	  color-mix(in srgb, var(--default-color), transparent 85%) 10%,
	  color-mix(in srgb, var(--default-color), transparent 85%) 90%,
	  transparent
	);
  }
}*/

/* Custom check list icon colors */
.custom-check-list li i.bi-check-circle {
  color: var(--accent-color);
}

.custom-check-list li i.bi-1-circle,
.custom-check-list li i.bi-2-circle,
.custom-check-list li i.bi-3-circle,
.custom-check-list li i.bi-4-circle,
.custom-check-list li i.bi-5-circle {
  color: var(--accent-color);
}

/* Smooth transitions for FAQ items */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.faq-active {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

/* Better focus states for accessibility */
.lang-nav a:focus,
.faq-close-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Language badge hover effect */
.badge.bg-primary,
.badge.bg-secondary {
  transition: all 0.3s ease;
}

.col-lg-6:hover .badge {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Improved responsive typography */
@media (max-width: 576px) {
  .faq-item .faq-header h4 {
	font-size: 1rem;
	line-height: 1.4;
  }
  
  .lang-nav {
	padding: 8px 12px;
  }
  
  .lang-nav a {
	font-size: 0.8rem;
	padding: 4px 8px;
  }
}

/* Animation for language navigation links */
@keyframes bounce-down {
  0%, 100% {
	transform: translateY(0);
  }
  50% {
	transform: translateY(3px);
  }
}

.lang-nav a i.bi-arrow-down-circle {
  animation: bounce-down 2s infinite ease-in-out;
}

.lang-nav a:hover i.bi-arrow-down-circle {
  animation: none;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  color: var(--heading-color);
  background-color: #3d3430;
  font-size: 14px;
  font-family: var(--default-font);
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
  line-height: 1.7;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--footer-text-color);
  font-size: 16px;
  color: var(--footer-text-color);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--footer-accent-color);
  border-color: var(--footer-accent-color);
}

/* Footer colors */
.footer,
.footer p,
.footer li,
.footer span,
.footer a {
  color: #e8e0d5;
}
.footer a:hover {
  color: #b9a876;
}
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #e8e0d5;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-family: var(--default-font);
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
  text-align: center;
  color: #a89f94;
  margin: auto;
}

/* ==========================================================================
   13. UTILITIES & ANIMATIONS
   ========================================================================== */

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color) transparent var(--accent-color)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Pulsating play button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-play-btn 2s steps infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: transparent;
}
.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ==========================================================================
   14. FONT OVERRIDES
   ========================================================================== */
li,
span,
td,
th,
label,
input,
textarea,
select,
.card-text,
.card-body,
.card-footer,
.form-control,
.nav-link,
.navbar,
.dropdown-item,
.breadcrumb-item,
.list-group-item,
.modal-body,
.tooltip,
.popover {
  font-family: var(--default-font);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.card-title,
.section-title p,
.content-heading,
.side-content h5,
blockquote,
.blockquote {
  font-family: var(--heading-font);
}

.navmenu a,
.nav-pills .nav-link {
  font-family: var(--nav-font);
}

/* ==========================================================================
   15. PRINT & ACCESSIBILITY
   ========================================================================== */

/* Print */
@media print {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }
  .header,
  .footer,
  .scroll-top,
  #preloader,
  .navmenu {
    display: none !important;
  }
}

/* Disable AOS delay on mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Reduced motion */
@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;
  }
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}