/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:
    "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce2125; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939; /* The default color of the main navmenu links */
  --nav-hover-color: #e84545; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e84545; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
.navmenu .dropdown ul a i {
  font-size: 14px;
  margin-right: 8px;
  color: #ce2125;
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #ce2125;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 65px;
  mix-blend-mode: multiply; /* removes white bg on light backgrounds */
}

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

#hero h2 {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

#hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #ce2125;
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-hero-primary:hover {
  background: #a81a1d;
  color: #fff;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 32px;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }

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

  .navmenu > ul > li > a:hover::after,
  .navmenu > ul > li > .active::after,
  .navmenu > ul > li > .active:focus::after {
    opacity: 1;
    transform: scale(1);
  }

  .navmenu > ul > li:hover > a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }

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

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

  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }

  .navmenu .dropdown ul a:hover::before {
    width: 12px;
  }

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

  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover > a::before {
    width: 12px;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

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

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

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

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

  .navmenu a:hover::before {
    width: 40px;
  }

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

  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 40px;
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid
      color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(
      in srgb,
      var(--default-color),
      transparent 95%
    );
  }

  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

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

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

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

  .mobile-nav-active .navmenu > ul {
    display: block;
    max-height: 100vh;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/ /* ── FOOTER ── */
/* ── ROOM DIVIDER ── */
.footer-room-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #ffffff; /* change to match whatever section is above your footer */
}
.footer-room-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ── FOOTER SHELL ── */
#footer {
  background: linear-gradient(
    160deg,
    #1a0203 0%,
    #200508 20%,
    #130102 45%,
    #0d0d0d 70%,
    #0a0a0a 100%
  );
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}

/* blueprint grid overlay */
#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(206, 33, 37, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 33, 37, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* subtle red glow top-left */
#footer::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(206, 33, 37, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
}

/* ── LOGO TEXT ── */
.footer-logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  display: inline-block;
  text-decoration: none;
}
.footer-logo-text span {
  color: #ce2125;
}

.footer-logo-sub {
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 22px;
  display: block;
}

/* ── BIG TAGLINE ── */
.footer-tagline-big {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.footer-tagline-big .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

.footer-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 26px;
  max-width: 290px;
}

/* ── SOCIALS ── */
.footer-socials {
  display: flex;
  gap: 9px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: #ce2125;
  border-color: #ce2125;
  color: #fff;
  transform: translateY(-2px);
}

/* ── COLUMN HEADINGS ── */
.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: rgba(206, 33, 37, 0.35);
}

/* ── LINKS ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #ce2125;
  transition: width 0.25s ease;
  flex-shrink: 0;
}
.footer-links a:hover {
  color: #fff;
  gap: 6px;
}
.footer-links a:hover::before {
  width: 10px;
}

/* ── CONTACT ITEMS ── */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
}
.footer-contact-item i {
  color: #ce2125;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-item a:hover {
  color: #fff;
}

/* ── CTA BUTTON ── */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(206, 33, 37, 0.3);
}
.footer-cta-btn:hover {
  background: #a81a1d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(206, 33, 37, 0.42);
}

/* ── DIVIDER LINE ── */
.footer-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 50px 0 0;
}

/* ══════════════════════════════════════
   MEASUREMENT TAPE BOTTOM BAR
══════════════════════════════════════ */
.footer-tape {
  position: relative;
  height: 48px;
  background: #080808;
  overflow: hidden;
  z-index: 1;
}

/* small ticks every 10px */
.footer-tape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.07) 0px,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px,
    transparent 10px
  );
}

/* long ticks every 50px in red */
.footer-tape::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 49px,
    rgba(206, 33, 37, 0.7) 49px,
    rgba(206, 33, 37, 0.7) 51px,
    transparent 51px,
    transparent 100px
  );
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.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%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #ce2125;
  --white: #ffffff;
  --glass: rgba(12, 12, 12, 0.78);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* ── HERO WRAPPER ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

/* ── SLIDES ── */
.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 8s ease;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── DARK SCRIM ── */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.52) 68%,
    rgba(0, 0, 0, 0.86) 100%
  );
  z-index: 2;
}

/* ── TAGLINE ── */
.hero__tagline {
  position: absolute;
  top: 36px;
  left: 40px;
  z-index: 5;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

/* ── SLIDE DOTS ── */
.hero__dots {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s 0.6s ease forwards;
}
.dot {
  width: 3px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--red);
  height: 40px;
}

/* ── BIG HEADLINE ── */
.hero__headline {
  position: absolute;
  bottom: 170px;
  left: 0;
  right: 0;
  padding: 0 40px;
  z-index: 3;
  pointer-events: none;
}
.hero__headline-line {
  display: block;
  font-size: clamp(32px, 10vw, 90px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.93);
  line-height: 0.88;
  letter-spacing: -3px;
  opacity: 0;
  transform: translateY(40px);
}
.hero__headline-line:nth-child(1) {
  animation: slideUp 0.75s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero__headline-line:nth-child(2) {
  animation: slideUp 0.75s 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  color: var(--red);
}
.hero__headline-line:nth-child(3) {
  animation: slideUp 0.75s 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ── BOTTOM BAR ── */
.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 0 40px 34px;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s ease forwards;
}
/* 
/* info card */

.hero__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
}
.hero__card-btn:hover {
  background: #a81a1d;
  transform: translateY(-1px);
}
.hero__card-btn .arrow {
  font-size: 15px;
}

.hero__spacer {
  flex: 1;
}

/* video thumb */
.hero__video {
  width: 188px;
  height: 116px;
  overflow: hidden; /* ← this clips the video inside the box */
  position: relative;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.hero__video:hover {
  border-color: rgba(206, 33, 37, 0.5);
}
.hero__video-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f130a, #3e2810);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.hero__play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(206, 33, 37, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.hero__video:hover .hero__play {
  transform: scale(1.1);
  background: var(--red);
}
.hero__play::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.hero__video-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.hero__video-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  background: rgba(206, 33, 37, 0.88);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 7px;
  border-radius: 2px;
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Services - black */
.btn-services {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-services:hover {
  background: #111111;
  color: #ffffff;
  ring: 2px solid #000;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #000;
}

/* Contact - red (BeMine brand) */
.btn-contact {
  background: #ce2125;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(206, 33, 37, 0.4);
}

.btn-contact:hover {
  background: #b01c1f;
  color: #ffffff;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #ce2125;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.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;
} */
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 1; /* was 0.5 */
  filter: none; /* was grayscale(100) */
}

/* Remove the hover rule entirely or just clear it */
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.about-feature-item i {
  color: #ce2125;
  font-size: 16px;
  flex-shrink: 0;
}
/* Icon box lift on hover */
.about .icon-box {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.about .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.15);
}

/* Feature items — red dot pulses in */
.about-feature-item {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.about-feature-item.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Red underline draws under h2 on scroll */
.about .content h2 {
  position: relative;
  display: inline-block;
}

.about .content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #ce2125;
  transition: width 0.8s ease 0.3s;
}

.about .content h2.aos-animate::after {
  width: 60px;
}

/* Read more button slide-in */
.about .content .read-more {
  position: relative;
  overflow: hidden;
}

.about .content .read-more::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  transition: left 0.4s ease;
}

.about .content .read-more:hover::before {
  left: 100%;
}
/*--------------------------------------------------------------
Services Section
--------------------------------------------------------------*/

/* ── Grid: 3 columns ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 991px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Card ── */
.svc-card {
  position: relative;
  height: 580px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ce2125, #ff9966, #ce2125);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card:hover::before {
  opacity: 1;
}
/* ── Image wrapper ── */
.svc-img-wrap {
  position: absolute;
  inset: 0;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-img {
  transform: scale(1.06);
}

/* ── Overlay ── */
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  transition: background 0.4s ease;
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* ── Card body ── */
.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px;
  z-index: 3;
}

/* ── Title ── */
.svc-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 14px;
}

/* ── Button — hidden, slides up on hover ── */
.svc-btn {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transform: translateY(60px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.svc-card:hover .svc-btn {
  transform: translateY(0);
  opacity: 1;
}

.svc-btn:hover {
  background: #ce2125;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
#stats.stats {
  padding: 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

#stats.stats::before {
  display: none;
}

/* ── Image Row ── */
.stats-img-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #1e1915;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* ── Each Slot ── */
.stats-img-slot {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.stats-img-slot:last-child {
  border-right: none;
}

.stats-img-slot img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 20px 32px;
  filter: brightness(1);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.stats-img-slot:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .stats-img-row {
    flex-direction: column;
  }

  .stats-img-slot {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .stats-img-slot:last-child {
    border-bottom: none;
  }

  .stats-img-slot img {
    height: 110px;
    padding: 16px 24px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

/* ── Section ── */
.mat-section {
  padding: 60px 0 80px;
  background-color: #ffffff;
}

/* ── Grid: 4 columns ── */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1199px) {
  .mat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .mat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mat-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Card shell ── */
.mat-card {
  height: 260px;
  perspective: 1200px;
  cursor: pointer;
}

.mat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.mat-card:hover .mat-card-inner {
  transform: rotateY(180deg);
}

/* ── Shared face ── */
.mat-front,
.mat-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  overflow: hidden;
}

/* ── FRONT ── */
.mat-front {
  background: #1a1a1a;
}

.mat-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.mat-card:hover .mat-front img {
  transform: scale(1.04);
}

.mat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    transparent 100%
  );
}

.mat-front-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

.mat-front-label h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* ── BACK ── */
.mat-back {
  background: #1e1e1e;
  transform: rotateY(180deg);
  border: 1px solid rgba(206, 33, 37, 0.3);
  display: flex;
  align-items: center;
}

.mat-back-content {
  padding: 20px 18px;
  width: 100%;
}

.mat-back h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(206, 33, 37, 0.3);
}

.mat-back-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 9px;
}

.mat-back-row:last-child {
  margin-bottom: 0;
}

.mat-back-label {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 2px;
}

.mat-back-value {
  font-family: "Open Sans", sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}
/* ================================================================
   WHY CHOOSE SECTION
   ================================================================ */
#why-choose.why-choose {
  padding: 60px 0 70px;
  position: relative;
  background-image: url("../../assets/img/uploads/bg.png");
  background-size: cover;
  background-position: center;
  /* remove background-attachment: fixed */
}

/* Dark overlay so cards stay readable */
#why-choose.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* Lift content above overlay */
#why-choose.why-choose .container {
  position: relative;
  z-index: 1;
}

/* Make section title white */
#why-choose .section-title h2,
#why-choose .section-title p {
  color: #fff;
}

#why-choose .section-title h2::before,
#why-choose .section-title h2::after {
  background: #ce2125;
}

/* Cards — keep white bg or go glass */
#why-choose .wc-grid {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgb(255, 255, 255);
  /* backdrop-filter: blur(8px); */
}

#why-choose .wc-item {
  border-color: rgb(255, 255, 255);
}

#why-choose .wc-text h4 {
  color: #ffffff;
}

#why-choose .wc-text p {
  color: rgba(255, 255, 255, 0.55);
}
#why-choose.why-choose {
  padding: 60px 0 70px;
}

.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 767px) {
  .wc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wc-grid {
    grid-template-columns: 1fr;
  }
}

.wc-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: default;
}

.wc-item:nth-child(3n) {
  border-right: none;
}

.wc-item:nth-last-child(-n + 3) {
  border-bottom: none;
}

@media (max-width: 767px) {
  .wc-item:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .wc-item:nth-child(2n) {
    border-right: none;
  }
  .wc-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .wc-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

.wc-item:hover {
  background: rgba(206, 33, 37, 0.03);
}

.wc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(206, 33, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.wc-icon i {
  font-size: 24px;
  color: #ce2125;
  line-height: 1;
}

.wc-item:hover .wc-icon {
  background: #ce2125;
}

.wc-item:hover .wc-icon i {
  color: #fff;
}

.wc-text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #32353a;
  margin: 0 0 2px;
  line-height: 1.2;
}

.wc-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #888;
  margin: 0;
  letter-spacing: 0.5px;
}

/* separator line under icon like brochure */
.wc-icon::after {
  display: none;
}

/* ================================================================
   WHAT WE DO SECTION
   ================================================================ */

#what-we-do.what-we-do {
  padding: 60px 0 70px;
  background: #fff;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

@media (max-width: 767px) {
  .wwd-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .wwd-card {
    height: 220px !important;
  }
}

/* ── Card base ── */
.wwd-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.wwd-card:hover .wwd-img {
  transform: scale(1.05);
}

/* ── Image ── */
.wwd-img-wrap {
  position: absolute;
  inset: 0;
}

.wwd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Overlay for light cards ── */
.wwd-card--large .wwd-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* ── Overlay for dark cards ── */
.wwd-card--dark .wwd-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* ── Label ── */
.wwd-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.wwd-label span {
  display: inline-block;
  background: rgba(20, 10, 5, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

/* Placeholder bg for when images are missing */
.wwd-card--large:nth-child(1) .wwd-img-wrap {
  background: linear-gradient(135deg, #c8b898, #a09070);
}
.wwd-card--large:nth-child(2) .wwd-img-wrap {
  background: linear-gradient(135deg, #98b0c8, #6888a0);
}
.wwd-card--dark:nth-child(3) .wwd-img-wrap {
  background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
}
.wwd-card--dark:nth-child(4) .wwd-img-wrap {
  background: linear-gradient(135deg, #1e2820, #2e3830);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/* .call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
} */

/* ── CONSULTATION FORM SECTION ── */
.cta-form-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-form-section img.cta-bg {
  position: fixed; /* ← was absolute, now fixed for parallax */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta-form-wrap {
  position: relative;
  z-index: 2;
}

.cta-form-card {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid #ce2125;
  border-left: 3px solid #ce2125;
  border-radius: 12px;
  padding: 36px 36px;
}

.cta-form-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}

.cta-form-card p.cta-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 24px;
  line-height: 1.6;
}

.cta-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 7px;
}

.cta-field input,
.cta-field select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cta-field input:focus,
.cta-field select:focus {
  border-color: #ce2125;
  background: rgba(255, 255, 255, 0.11);
}

.cta-field select {
  background-color: rgba(10, 10, 10, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ce2125' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.cta-field select option {
  color: #333;
  background: #fff;
}

.cta-field--full {
  grid-column: span 2;
}

.cta-submit {
  width: 100%;
  padding: 13px;
  background: #ce2125;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(206, 33, 37, 0.4);
}

.cta-submit:hover {
  background: #a81a1d;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(206, 33, 37, 0.5);
}

.cta-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.cta-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.cta-success i {
  font-size: 48px;
  color: #ce2125;
  display: block;
  margin-bottom: 14px;
}

.cta-success h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.cta-success p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.cta-note {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
  grid-column: span 2;
}
.cta-form-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden; /* ← this is what breaks fixed; change it */
  clip-path: inset(0); /* ← this contains the fixed image instead */
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  .cta-fields {
    grid-template-columns: 1fr;
  }
  .cta-field--full {
    grid-column: span 1;
  }
  .cta-note {
    grid-column: span 1;
  }
  .cta-form-card {
    padding: 28px 22px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.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(--accent-color), transparent 60%);
  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: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.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: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

/*--------------------------------------------------------------
About Page
--------------------------------------------------------------*/

/* ── 1. HERO ── */
.about-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.about-hero.loaded .about-hero__bg {
  transform: scale(1);
}

.about-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 2;
}

.about-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 60px 0;
  width: 100%;
}

.about-hero__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.about-hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ce2125;
}

.about-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.75s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.about-hero__title span {
  color: #ce2125;
}

.about-hero__tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s ease forwards;
}

/* Est badge */
.about-hero__badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}

.about-hero__badge span:first-child {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(201, 168, 76, 0.7);
  text-transform: uppercase;
}

.about-hero__badge span:last-child {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

/* ── 2. WHO WE ARE ── */
.who-section {
  padding: 90px 0;
  background: #fff;
}

.who-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.who-label::after {
  content: "";
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: #ce2125;
}

.who-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #32353a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.who-heading span {
  color: #ce2125;
}

.who-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.who-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 30px;
}

.who-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.who-check i {
  color: #ce2125;
  font-size: 16px;
  flex-shrink: 0;
}

.who-img-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.who-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.who-img-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #ce2125;
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(206, 33, 37, 0.3);
}

.who-img-badge .num {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.who-img-badge .txt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── 3. STATS ── */
.about-stats {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}

.about-stats::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
}

.astat-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
}

.astat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ce2125;
  transition: width 0.4s ease;
  border-radius: 0 0 8px 8px;
}

.astat-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.astat-item:hover::after {
  width: 100%;
}

.astat-icon {
  font-size: 28px;
  color: #ce2125;
  margin-bottom: 14px;
  display: block;
}

.astat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.astat-plus {
  font-size: 32px;
  font-weight: 800;
  color: #ce2125;
}

.astat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  display: block;
}

/* ── 4. PROCESS ── */
.about-process {
  padding: 90px 0;
  background: #f9f9f9;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  margin-bottom: 14px;
  cursor: default;
}

.process-step:hover {
  border-left-color: #ce2125;
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.process-step:last-child {
  border-left-color: #c9a84c;
}

.process-step:last-child:hover {
  border-left-color: #c9a84c;
}

.process-num {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ce2125;
  line-height: 1;
  min-width: 44px;
  opacity: 0.25;
  transition: opacity 0.3s;
}

.process-step:hover .process-num {
  opacity: 1;
}

.process-step:last-child .process-num {
  color: #c9a84c;
}

.process-info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #32353a;
  margin: 0 0 4px;
}

.process-info p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.process-duration {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ce2125;
  white-space: nowrap;
  padding: 4px 12px;
  border: 1px solid rgba(206, 33, 37, 0.2);
  border-radius: 20px;
  background: rgba(206, 33, 37, 0.04);
  align-self: center;
  flex-shrink: 0;
}

.process-step:last-child .process-duration {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

/* Process right image */
.process-img-wrap {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.process-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.process-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  border-radius: 4px;
}

.process-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.process-img-caption p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px;
}

.process-img-caption h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ── 5. CORE TEAM ── */
.about-team {
  padding: 90px 0;
  background: #fff;
}

.team-card-v2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
}

.team-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.team-card-v2__img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.team-card-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.team-card-v2:hover .team-card-v2__img img {
  transform: scale(1.04);
}

.team-card-v2__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

/* Social icons slide in on hover */
.team-card-v2__social {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(16px);
  transition: all 0.35s ease;
}

.team-card-v2:hover .team-card-v2__social {
  opacity: 1;
  transform: translateX(0);
}

.team-card-v2__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 14px;
  transition:
    background 0.3s,
    color 0.3s;
  text-decoration: none;
}

.team-card-v2__social a:hover {
  background: #ce2125;
  color: #fff;
}

/* Experience pill on image */
.team-card-v2__exp {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.team-card-v2__body {
  padding: 24px 28px 28px;
}

.team-card-v2__role {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-card-v2__role::after {
  content: "";
  flex: 1;
  max-width: 30px;
  height: 1px;
  background: #ce2125;
}

.team-card-v2__name {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #32353a;
  margin: 0 0 14px;
}

.team-card-v2__bio {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-card-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-card-v2__tag {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(206, 33, 37, 0.07);
  color: #ce2125;
  border: 1px solid rgba(206, 33, 37, 0.15);
}

/* ── 6. WHY BEMINE ── */
.about-why {
  padding: 90px 0;
  background: #f9f9f9;
}

.why-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: #ce2125;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background: linear-gradient(to bottom, #ce2125, transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease 0.1s; /* slight delay so it follows the top line */
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  transform: scaleY(1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(206, 33, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ce2125;
  margin-bottom: 20px;
  transition:
    background 0.3s,
    color 0.3s;
}

.why-card:hover .why-card__icon {
  background: #ce2125;
  color: #fff;
}

.why-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #32353a;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ── 7. VISIT US ── */
.about-visit {
  padding: 90px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.about-visit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ce2125, #c9a84c, #ce2125);
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.visit-info-item:last-child {
  margin-bottom: 0;
}

.visit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(206, 33, 37, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ce2125;
  flex-shrink: 0;
  border: 1px solid rgba(206, 33, 37, 0.2);
}

.visit-info-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 4px;
}

.visit-info-item p,
.visit-info-item a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.visit-info-item a:hover {
  color: #ce2125;
}

.visit-map {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 0;
  border: none;
  margin-top: 10px;
  margin-bottom: -20px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(20%) contrast(1.1);
}

/* Visit social links */
.visit-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.visit-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.visit-social a:hover {
  border-color: #ce2125;
  color: #ce2125;
  background: rgba(206, 33, 37, 0.08);
}

/* ── 8. CTA ── */
.about-cta {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

.about-cta__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 16px;
}

.about-cta__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #32353a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-cta__title span {
  color: #ce2125;
}

.about-cta__sub {
  font-size: 16px;
  color: #888;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(206, 33, 37, 0.3);
  margin: 0 8px;
}

.about-cta__btn:hover {
  background: #a81a1d;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(206, 33, 37, 0.4);
  color: #fff;
}

.about-cta__btn.outline {
  background: transparent;
  color: #32353a;
  border: 2px solid #e0e0e0;
  box-shadow: none;
}

.about-cta__btn.outline:hover {
  background: #32353a;
  color: #fff;
  border-color: #32353a;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── Section title reuse ── */
.ab-section-title {
  margin-bottom: 56px;
}

.ab-section-title .eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ce2125;
  display: block;
  margin-bottom: 10px;
}
.ab-section-title .eyebrow::before {
  content: none;
}
.ab-section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #32353a;
  margin: 0 0 12px;
  position: relative;
}

.ab-section-title h2::before,
.ab-section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ce2125;
  display: inline-block;
}

.ab-section-title h2::before {
  margin: 0 15px 10px 0;
}
.ab-section-title h2::after {
  margin: 0 0 10px 15px;
}

.ab-section-title p {
  font-size: 15px;
  color: #888;
  margin: 0;
  max-width: 580px;
}

.ab-section-title.text-center p {
  margin: 0 auto;
}

/* ── Dark section titles ── */
.ab-section-title.dark h2 {
  color: #fff;
}
.ab-section-title.dark p {
  color: rgba(255, 255, 255, 0.5);
}
.ab-section-title.dark .eyebrow {
  color: #ce2125;
}

/*--------------------------------------------------------------\
# Privacy Policy Page
--------------------------------------------------------------*/
/* ── Page hero ── */
.pp-hero {
  background: #1a1a1a;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ce2125, #ff6b6b, #ce2125);
}

.pp-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: #f9f9f9;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.pp-hero-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pp-hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #ce2125;
}

.pp-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pp-hero h1 span {
  color: #ce2125;
}

.pp-hero-meta {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* ── Main content area ── */
.pp-body {
  background: #f9f9f9;
  padding: 70px 0 80px;
}

.pp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }
  .pp-sidebar {
    display: none;
  }
}

/* ── Sidebar nav ── */
.pp-sidebar {
  position: sticky;
  top: 100px;
}

.pp-sidebar-label {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-sidebar-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(206, 33, 37, 0.2);
}

.pp-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid rgba(206, 33, 37, 0.15);
}

.pp-nav li a {
  display: block;
  padding: 8px 0 8px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
  margin-left: -2px;
  line-height: 1.4;
}

.pp-nav li a:hover {
  color: #ce2125;
  border-left-color: #ce2125;
  padding-left: 20px;
}

/* ── Content card ── */
.pp-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 52px 56px;
}

@media (max-width: 767px) {
  .pp-card {
    padding: 32px 24px;
  }
}

/* ── Intro block ── */
.pp-intro {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #f0f0f0;
}

.pp-intro p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 12px;
}

.pp-intro p:last-child {
  margin-bottom: 0;
}

.pp-consent-box {
  background: rgba(206, 33, 37, 0.04);
  border-left: 3px solid #ce2125;
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  margin-top: 20px;
}

.pp-consent-box p {
  font-size: 13.5px;
  color: #444;
  margin: 0;
  font-style: italic;
}

/* ── Section block ── */
.pp-section {
  margin-bottom: 40px;
  scroll-margin-top: 110px;
}

.pp-section:last-child {
  margin-bottom: 0;
}

.pp-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pp-section-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(206, 33, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-section-num span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ce2125;
}

.pp-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #32353a;
  margin: 0;
}

.pp-section-divider {
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 20px;
}

/* ── Sub-items ── */
.pp-sub-item {
  margin-bottom: 18px;
}

.pp-sub-item:last-child {
  margin-bottom: 0;
}

.pp-sub-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #32353a;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-sub-label::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ce2125;
  flex-shrink: 0;
}

.pp-sub-item p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 0 12px;
}

/* ── Security / plain paragraph sections ── */
.pp-plain p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 10px;
}

.pp-plain p:last-child {
  margin-bottom: 0;
}

/* ── Contact card at bottom ── */
.contact-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.contact-hero.loaded .contact-hero__bg {
  transform: scale(1);
}

.contact-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 2;
}

.contact-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 60px 0;
  width: 100%;
}

.contact-hero__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.contact-hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ce2125;
}

.contact-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.75s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.contact-hero__title span {
  color: #ce2125;
}

.contact-hero__tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s ease forwards;
}

/* ── Main contact body ── */
.contact-body {
  padding: 80px 0 90px;
  background: #f9f9f9;
}

/* ── Form card ── */
.contact-form-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  padding: 48px 44px;
  height: 100%;
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 32px 24px;
  }
}

.cform-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cform-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: #ce2125;
}

.cform-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #32353a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cform-title span {
  color: #ce2125;
}

.cform-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form fields */
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .cform-row {
    grid-template-columns: 1fr;
  }
}

.cform-group {
  margin-bottom: 16px;
}

.cform-group label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 7px;
}

.cform-group input,
.cform-group select,
.cform-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #32353a;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: #ce2125;
  box-shadow: 0 0 0 3px rgba(206, 33, 37, 0.08);
  background: #fff;
}

.cform-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cform-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Budget range chips */
.budget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.budget-chip {
  padding: 7px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  user-select: none;
}

.budget-chip:hover,
.budget-chip.active {
  background: #ce2125;
  color: #fff;
  border-color: #ce2125;
}

/* Submit button */
.cform-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(206, 33, 37, 0.3);
}

.cform-submit:hover {
  background: #a81a1d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(206, 33, 37, 0.4);
}

.cform-submit i {
  font-size: 16px;
}

.cform-note {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
}

.pp-contact-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 32px 36px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 767px) {
  .pp-contact-card {
    grid-template-columns: 1fr;
  }
}

.pp-contact-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pp-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pp-contact-item:last-child {
  margin-bottom: 0;
}

.pp-contact-item i {
  font-size: 14px;
  color: #ce2125;
  width: 16px;
  flex-shrink: 0;
}

.pp-contact-item span,
.pp-contact-item a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  line-height: 1.5;
}

.pp-contact-item a:hover {
  color: #ce2125;
}

.pp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.pp-contact-btn:hover {
  background: #a81a1d;
  color: #fff;
}

/* ── Agreement bar at bottom ── */
.pp-agreement {
  background: rgba(206, 33, 37, 0.04);
  border: 1px solid rgba(206, 33, 37, 0.15);
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pp-agreement i {
  color: #ce2125;
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pp-agreement p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

/* ── PORTFOLIO HERO ── */
.port-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.port-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.port-hero.loaded .port-hero__bg {
  transform: scale(1);
}

.port-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.58) 65%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}

.port-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 80px;
  width: 100%;
}

.port-hero__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.port-hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ce2125;
}

.port-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.75s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.port-hero__title span {
  color: #ce2125;
}

.port-hero__sub {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards;
}

/* ── FILTER SECTION ── */
.port-filters-section {
  background: #fff;
  padding: 48px 0 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group-label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 10px;
  display: block;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-tab {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  padding: 7px 18px;
  border: 1.5px solid #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  white-space: nowrap;
  user-select: none;
}

.filter-tab:hover {
  border-color: #ce2125;
  color: #ce2125;
}

.filter-tab.active {
  background: #ce2125;
  border-color: #ce2125;
  color: #fff;
  box-shadow: 0 4px 14px rgba(206, 33, 37, 0.2);
}

.filter-divider {
  width: 1px;
  height: 28px;
  background: #e8e8e8;
  align-self: center;
  margin: 0 4px;
}

/* Active filter count badge */
.filter-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #999;
  margin-left: auto;
  padding: 0 0 16px;
}

.filter-count span {
  font-weight: 700;
  color: #ce2125;
}

.filter-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

/* ── PORTFOLIO GRID ── */
.port-section {
  padding: 48px 0 100px;
  background: #fff;
}

/* Masonry via CSS columns */
.port-masonry {
  column-count: 3;
  column-gap: 16px;
}

@media (max-width: 991px) {
  .port-masonry {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .port-masonry {
    column-count: 1;
  }
}

.port-item {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.port-item.hidden {
  display: none;
}

.port-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-item:hover img {
  transform: scale(1.05);
}

/* Overlay */
.port-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.port-item:hover .port-item__overlay {
  opacity: 1;
}

/* Info inside overlay */
.port-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 18px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.port-item:hover .port-item__info {
  transform: translateY(0);
  opacity: 1;
}

.port-item__cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.port-item__cat {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #ce2125;
  padding: 3px 9px;
  border-radius: 2px;
}

.port-item__cat.style-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.port-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

/* Action buttons on hover */
.port-item__actions {
  display: flex;
  gap: 8px;
}

.port-item__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.port-item__btn:hover {
  background: #ce2125;
  border-color: #ce2125;
  color: #fff;
}

/* No results message */
.port-empty {
  display: none;
  text-align: center;
  padding: 80px 20px;
  width: 100%;
}

.port-empty i {
  font-size: 48px;
  color: #e0e0e0;
  display: block;
  margin-bottom: 16px;
}

.port-empty p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #aaa;
}

/* ── CTA ── */
.port-cta {
  background: #1a1a1a;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.port-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ce2125, #c9a84c, #ce2125);
}

.port-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.port-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.port-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  box-shadow: 0 6px 20px rgba(206, 33, 37, 0.3);
}

.port-cta__btn:hover {
  background: #a81a1d;
  transform: translateY(-2px);
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog */

/* ── BLOG HERO ── */
.blog-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.blog-hero.loaded .blog-hero__bg {
  transform: scale(1);
}

.blog-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 2;
}

.blog-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 80px;
  width: 100%;
}

.blog-hero__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.blog-hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ce2125;
}

.blog-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 7vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.75s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.blog-hero__title span {
  color: #ce2125;
}

.blog-hero__sub {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards;
}

/* ── BLOG SECTION ── */
.blog-section {
  padding: 80px 0 100px;
  background: #fff;
}

/* ── FEATURED POST (first/largest) ── */
.blog-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
  margin-bottom: 32px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured__img {
  transform: scale(1.04);
}

.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.blog-featured:hover .blog-featured__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    transparent 100%
  );
}

.blog-featured__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 2;
}

.blog-featured__cat {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #ce2125;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.blog-featured__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 12px;
  transition: color 0.3s;
}

.blog-featured:hover .blog-featured__title {
  color: rgba(255, 255, 255, 0.9);
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Poppins", sans-serif;
}

.blog-featured__meta i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

.blog-featured__read {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ce2125;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.blog-featured:hover .blog-featured__read {
  opacity: 1;
  transform: translateX(0);
}

/* ── BLOG CARD ── */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #ce2125;
  padding: 4px 10px;
  border-radius: 2px;
}

.blog-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: #aaa;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}

.blog-card__meta i {
  font-size: 11px;
  margin-right: 3px;
  color: #ce2125;
}

.blog-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #32353a;
  line-height: 1.4;
  margin: 0 0 10px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card__title {
  color: #ce2125;
}

.blog-card__excerpt {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card__author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card__author span {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  font-family: "Poppins", sans-serif;
}

.blog-card__readmore {
  font-size: 11px;
  font-weight: 700;
  color: #ce2125;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.blog-card:hover .blog-card__readmore {
  gap: 10px;
}

/* ── PAGINATION ── */
.blog-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.blog-pagination-wrap .pagination {
  gap: 6px;
}

.blog-pagination-wrap .page-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  border: 1.5px solid #e8e8e8;
  border-radius: 6px !important;
  padding: 8px 16px;
  transition: all 0.25s;
  background: #fff;
}

.blog-pagination-wrap .page-link:hover,
.blog-pagination-wrap .page-item.active .page-link {
  background: #ce2125;
  border-color: #ce2125;
  color: #fff;
  box-shadow: 0 4px 14px rgba(206, 33, 37, 0.25);
}

/* ── SECTION DIVIDER LABEL ── */
.blog-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.blog-section-label span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce2125;
  white-space: nowrap;
}

.blog-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f0f0f0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================
   SINGLE POST PAGE STYLES
   Add this to your main.css or a separate single.css
   ============================================================ */

/* ── POST HERO ── */
.post-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.post-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.post-hero.loaded .post-hero__bg {
  transform: scale(1);
}

.post-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.05) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 2;
}

.post-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 56px;
  width: 100%;
}

.post-hero__cat {
  display: inline-block;
  background: #ce2125;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.post-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 820px;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.post-hero__meta span,
.post-hero__meta .post-hero__author {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.post-hero__meta i {
  font-size: 13px;
  color: #ce2125;
}

.post-hero__author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

/* ── ARTICLE SECTION ── */
.post-section {
  background: #f9f9f9;
  padding: 70px 0 80px;
}

.post-article {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  padding: 52px 56px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .post-article {
    padding: 32px 24px;
  }
}

/* Typography inside article */
.post-article h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #32353a;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.post-article h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #32353a;
  margin: 28px 0 12px;
}

.post-article p {
  font-family: "Open Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

.post-article img {
  width: 100%;
  border-radius: 6px;
  margin: 24px 0;
}

.post-article ul,
.post-article ol {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  padding-left: 20px;
}

.post-article li {
  margin-bottom: 6px;
}

.post-article blockquote {
  border-left: 4px solid #ce2125;
  margin: 28px 0;
  padding: 18px 24px;
  background: rgba(206, 33, 37, 0.04);
  border-radius: 0 6px 6px 0;
}

.post-article blockquote p {
  font-size: 17px;
  font-style: italic;
  color: #444;
  margin: 0;
}

.post-article a {
  color: #ce2125;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SHARE ── */
.post-share {
  background: #fff;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #ce2125;
}

.post-share__label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-right: 4px;
}

.post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  color: #444;
  background: #fff;
  transition: all 0.25s ease;
}

.post-share__btn:hover {
  background: #ce2125;
  border-color: #ce2125;
  color: #fff;
  transform: translateY(-2px);
}

.post-share__btn i {
  font-size: 14px;
}

/* ── AUTHOR BOX ── */
.post-author-box {
  background: #fff;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.post-author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(206, 33, 37, 0.15);
  flex-shrink: 0;
}

.post-author-box__info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #32353a;
  margin: 0 0 3px;
}

.post-author-box__info .role {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ce2125;
  display: block;
  margin-bottom: 8px;
}

.post-author-box__info p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ── PREV / NEXT PAGINATION ── */
.post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

@media (max-width: 575px) {
  .post-pagination {
    grid-template-columns: 1fr;
  }
}

.post-pag-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: block;
}

.post-pag-item:hover {
  border-color: rgba(206, 33, 37, 0.25);
  box-shadow: 0 8px 28px rgba(206, 33, 37, 0.1);
  transform: translateY(-3px);
}

.post-pag-item.next {
  text-align: right;
}

.post-pag-item__dir {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-pag-item.next .post-pag-item__dir {
  justify-content: flex-end;
}

.post-pag-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #32353a;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-pag-item:hover .post-pag-item__title {
  color: #ce2125;
}

/* ── RELATED POSTS ── */
.related-posts {
  background: #fff;
  padding: 70px 0 80px;
  border-top: 1px solid #f0f0f0;
}

.related-label {
  margin-bottom: 40px;
}

.related-label span {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #32353a;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}

.related-label span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: #ce2125;
  border-radius: 2px;
}

.related-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.related-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.related-card:hover .related-card__img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 20px 22px 24px;
}

.related-card__cat {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 8px;
}

.related-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #32353a;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.related-card:hover .related-card__title {
  color: #ce2125;
}

.related-card__date {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── RELATED POSTS ── */
.related-posts {
  padding: 70px 0 90px;
  background: #f9f9f9;
}

.related-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ce2125;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.related-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.related-card__img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-card:hover .related-card__img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 18px 20px 20px;
}

.related-card__cat {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 6px;
  display: block;
}

.related-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #32353a;
  line-height: 1.4;
  margin: 0 0 10px;
  transition: color 0.3s;
}

.related-card:hover .related-card__title {
  color: #ce2125;
}

.related-card__date {
  font-size: 11px;
  color: #aaa;
  font-family: "Poppins", sans-serif;
}

/* ── CTA STRIP ── */
.post-cta {
  background: #1a1a1a;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ce2125, #c9a84c, #ce2125);
}

.post-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.post-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.post-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ce2125;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  box-shadow: 0 6px 20px rgba(206, 33, 37, 0.3);
}

.post-cta__btn:hover {
  background: #a81a1d;
  transform: translateY(-2px);
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Design Styles */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --accent: #ce2125;
  --accent-dark: #a81a1d;
  --dark: #0d0d0d;
  --light-bg: #f7f5f2;
  --warm-white: #faf8f5;
  --font-body: "Open Sans", sans-serif;
  --font-head: "Montserrat", sans-serif;
  --font-nav: "Poppins", sans-serif;
  --font-ed: "Cormorant Garamond", serif;
  --header-h: 72px;
  --filter-h: 72px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: #32353a;
  overflow-x: hidden;
}

/* ── FILTER BAR ── */
/* Styles page only: sticks beneath the fixed main header */
.filter-bar {
  background: #fff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: var(--header-h); /* sits flush under the fixed header */
  z-index: 90;
  height: var(--filter-h);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0 26px;
  height: 44px;
  color: #888;
  border: 1.5px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 4px;
  transition: all 0.22s;
  position: relative;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px 2px 0 0;
}
.filter-btn:hover {
  color: #32353a;
  background: rgba(0, 0, 0, 0.04);
}
.filter-btn.active {
  color: var(--accent);
  border-color: rgba(206, 33, 37, 0.18);
  background: rgba(206, 33, 37, 0.04);
}
.filter-btn.active::after {
  width: 60%;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1600&q=85")
    center/cover no-repeat;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.68) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 820px;
  text-align: left;
  margin-left: 60px;
  margin-right: auto;
}
.page-hero__eyebrow {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ce2125;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.page-hero__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.page-hero__title em {
  font-family: var(--font-ed);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05em;
  letter-spacing: -1px;
}
.page-hero__sub {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/* SECTION EYEBROW */
.eyebrow {
  font-family: var(--font-nav);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* INTRO BAND */
.intro-band {
  background: var(--dark);
  padding: 96px 0;
  position: relative;
}
.intro-band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.intro-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-inner p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* STYLE SECTION WRAPPER */
.style-section {
  padding: 72px 0 0;
  position: relative;
}
.style-section + .style-section {
  margin-top: 0;
}

/* Style divider */
.style-divider {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  position: relative;
}
.style-divider-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 600px;
  max-width: 90vw;
}
.style-divider-inner .div-line {
  flex: 1;
  height: 1px;
  background: rgba(206, 33, 37, 0.5);
}
.style-divider-inner .div-diamond {
  width: 10px;
  height: 10px;
  border: 1.5px solid #ce2125;
  transform: rotate(45deg);
  margin: 0 18px;
  flex-shrink: 0;
  position: relative;
}
.style-divider-inner .div-diamond::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 4px;
  height: 4px;
  background: #ce2125;
}

/* Per-section background tones */
#luxury {
  background: #faf8f5;
}
#minimalist {
  background: #f5f4f0;
}
#modern {
  background: #f2f2f0;
}
#scandinavian {
  background: #f5f3ee;
}
#traditional {
  background: #f9f5f0;
}
#rustic {
  background: #f6f1eb;
}

/* CINEMATIC SPLIT */
.cinematic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 76vh;
}
.cinematic-split.rev {
  direction: rtl;
}
.cinematic-split.rev > * {
  direction: ltr;
}
.cs-image {
  position: relative;
  overflow: hidden;
}
.cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 9s ease;
}
.cs-image:hover img {
  transform: scale(1.05);
}
.cs-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}
.cs-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 16px;
}
.cs-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-num {
  font-family: var(--font-ed);
  font-size: 96px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: -28px;
  display: block;
  user-select: none;
}
.cs-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  color: #32353a;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.cs-tagline {
  font-family: var(--font-ed);
  font-style: italic;
  font-size: 19px;
  color: #aaa;
  margin-bottom: 24px;
  line-height: 1.5;
}
.cs-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 28px;
  max-width: 440px;
}
.cs-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.cs-features li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.cs-features li::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 9px;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.25s;
  width: fit-content;
}
.cs-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}
.cs-btn i {
  transition: transform 0.25s;
}
.cs-btn:hover i {
  transform: translateX(4px);
}

/* Per-section content bg */
#luxury .cs-content {
  background: #faf8f5;
}
#minimalist .cs-content {
  background: #f5f4f0;
}
#modern .cs-content {
  background: #f2f2f0;
}
#scandinavian .cs-content {
  background: #f5f3ee;
}
#traditional .cs-content {
  background: #f9f5f0;
}
#rustic .cs-content {
  background: #f6f1eb;
}

/* GALLERY STRIP */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 380px;
}
.gs-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}
.gs-item:hover img {
  transform: scale(1.06);
}
.gs-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gs-item:hover .gs-item__label {
  transform: translateY(0);
}

/* QUOTE BAND */
.quote-band {
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band blockquote {
  font-family: var(--font-ed);
  font-size: clamp(20px, 2.8vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.quote-band cite {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* SPECS ROW */
.specs-row {
  padding: 44px 72px;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0px;
}
.spec-item {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.spec-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}
.spec-item:first-child {
  padding-left: 0;
}
.spec-item:not(:first-child):not(:last-child) {
  padding-left: 32px;
}
.spec-label {
  font-family: var(--font-nav);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0b9b9;
  margin-bottom: 8px;
}
.spec-value {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #32353a;
}

/* Per-section specs bg */
#luxury .specs-row {
  background: #faf8f5;
}
#minimalist .specs-row {
  background: #f5f4f0;
}
#modern .specs-row {
  background: #f2f2f0;
}
#scandinavian .specs-row {
  background: #f5f3ee;
}
#traditional .specs-row {
  background: #f9f5f0;
}
#rustic .specs-row {
  background: #f6f1eb;
}

/* CTA SECTION */
.cta-section {
  background: var(--dark);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.cta-bg-text {
  font-family: var(--font-ed);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}
.btn-outline {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* FADE ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.in-view {
  opacity: 1 !important;
  transform: none !important;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.35s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cinematic-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cinematic-split.rev {
    direction: ltr;
  }
  .cs-image {
    height: 55vw;
    min-height: 300px;
  }
  .cs-content {
    padding: 56px 36px;
  }
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-strip .gs-item {
    height: 200px;
  }
  .specs-row {
    padding: 32px 36px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .spec-item {
    border-right: none;
    padding: 0 !important;
    min-width: 40%;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --filter-h: 60px;
  }
  .filter-inner {
    padding: 0 16px;
  }
  .filter-btn {
    font-size: 12px;
    padding: 0 16px;
    height: 38px;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-strip .gs-item {
    height: 220px;
  }
  .style-divider {
    height: 60px;
  }
  .cs-content {
    padding: 40px 24px;
  }
}
