/**
* Template Name: Constructo
* Template URL: https://bootstrapmade.com/constructo-bootstrap-construction-template/
* Updated: Aug 30 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", 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: "Ubuntu", sans-serif;
  --nav-font: "Lato", 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: #f9fafb;
  /* Background color for the entire website, including individual sections */
  --default-color: #333333;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #102a49;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #14529d;
  /* 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. */

  --sod-navy: #102a49;
  --sod-blue: #14529d;
  --sod-red: #d32f2f;
  --sod-light: #f9fafb;
  --sod-surface: #ffffff;
  --sod-text: #333333;
  --sod-muted: rgba(51, 51, 51, 0.6);
  --sod-border: rgba(51, 51, 51, 0.1);
  --sod-accent-bg: color-mix(in srgb, #14529d, transparent 91%);
  --sod-accent-bd: color-mix(in srgb, #14529d, transparent 72%);
}

/* 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: #333333;
  /* The default color of the main navmenu links */
  --nav-hover-color: #14529d;
  /* 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: #333333;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #14529d;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #eff1f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #14529d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-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
------------------------------*/
.django-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.django-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.django-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.django-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: django-email-form-loading 1s linear infinite;
}

@keyframes django-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  z-index: 997;
  background-color: var(--background-color);
  position: sticky;
  top: 0;
  /* required for JS top to work */
  transition: top 0.3s ease;
  z-index: 999;
  /* dropdowns appear above content */
  min-height: 80px;
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 64px;
  margin-right: 8px;
}

.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);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: url('/static/images/lift.jpg') center center / cover no-repeat;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer .footer-top {
  padding-top: 30px;
  /* padding-bottom: 40px; */
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* ── About Column ── */
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.footer .footer-about .logo .sitename {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-family: var(--heading-font);
  white-space: nowrap;
}

.footer .footer-about p {
  font-size: 14px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 360px;
  margin-bottom: 0;
}

/* ── Social Links ── */
.footer .social-links {
  gap: 10px;
  flex-wrap: wrap;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 55%);
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* ── Section Headings ── */
.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* ── Quick Links ── */
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:last-child {
  border-bottom: none;
}

/* .footer .footer-links ul li::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: 11px;
  color: var(--accent-color);
  margin-right: 8px;
  flex-shrink: 0;
} */

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

/* ── Contact Info ── */
.footer .footer-contact p {
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer .footer-contact p strong {
  color: #ffffff;
  font-weight: 600;
  min-width: 52px;
  flex-shrink: 0;
}

.footer .footer-contact p span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-contact p.mt-4 {
  margin-top: 10px !important;
}

/* ── Copyright Bar ── */
.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: rgba(0, 0, 0, 0.25);
}

.footer .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
}

.footer .copyright .sitename {
  color: var(--accent-color);
  font-weight: 700;
}

.footer .credits {
  margin-top: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .credits a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer .credits a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .footer .footer-top {
    padding-top: 25px;
  }

  .footer .footer-about p {
    max-width: 100%;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer h4 {
    text-align: center;
  }

  .footer .footer-links ul li {
    justify-content: center;
  }

  .footer .footer-links ul a {
    text-align: center;
  }

  .footer .footer-contact {
    text-align: center;
  }

  .footer .footer-contact p {
    justify-content: center;
  }

  .footer .social-links {
    justify-content: center !important;
  }

  .footer .footer-about {
    text-align: center;
  }

  .footer .footer-about .logo {
    justify-content: center;
  }

  .footer .footer-about p {
    margin: 0 auto 0 auto;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 30px;
  }

  .footer .footer-top {
    padding-top: 20px;
    /* padding-bottom: 20px; */
  }

  .footer .footer-about .logo .sitename {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .footer .footer-contact p strong {
    min-width: 44px;
  }
}

@media (max-width: 576px) {
  .footer .footer-about .logo .sitename {
    font-size: 16px;
  }

  .footer .social-links a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer h4 {
    font-size: 14px;
  }

  .footer .footer-links ul a {
    font-size: 13px;
  }

  .footer .footer-contact p {
    font-size: 13px;
    /* flex-direction: column; */
    gap: 2px;
    align-items: center;
  }

  .footer .copyright p,
  .footer .credits {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll 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);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 20px 0 0 0;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* padding: 120px 0; */
  background-color: rgba(0, 0, 0, 0.95);
  overflow: hidden;
  min-height: 90vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(10, 15, 40, 0.65) 40%,
    rgba(20, 10, 50, 0.45) 70%,
    rgba(0, 0, 0, 0.2) 100%
  ); */
  background: rgba(0, 0, 0, .7);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  /* color: var(--accent-color); */
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #fff;
  /* background-color: var(--accent-color); */
  transform: translateY(-50%);
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  color: #fff;
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: #fff;
  /* color: var(--default-color); */
  border: 1px solid #fff;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%); */
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.about .about-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 80px;
  height: 4px;
  /* background-color: var(--accent-color); */
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
}

.about .about-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about .achievement-boxes .achievement-box {
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  padding: 1.2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .achievement-boxes .achievement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .achievement-boxes .achievement-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--accent-color);
}

.about .achievement-boxes .achievement-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.about .certifications h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .certifications img {
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.about .certifications img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.about .cta-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about .cta-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image {
  position: relative;
}

.about .about-image .main-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about .about-image .image-overlay {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 50%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about .about-image .image-overlay img {
  border: 5px solid var(--background-color);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-image .experience-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
}

/* Why Us Block */
.about .why-us {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 2rem;
}

.about .why-us h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.about .why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about .why-item:last-child {
  margin-bottom: 0;
}

.about .why-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.about .why-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.about .why-item p {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about .about-image {
    margin-top: 3rem;
  }

  .about .about-image .image-overlay {
    bottom: -40px;
    right: -20px;
  }

  .about .about-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    left: -20px;
  }

  .about .about-image .experience-badge span {
    font-size: 1.5rem;
  }

  .about .about-image .experience-badge p {
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .about .achievement-boxes .achievement-box {
    padding: 1rem;
  }

  .about .achievement-boxes .achievement-box h3 {
    font-size: 1.8rem;
  }

  .about .achievement-boxes .achievement-box p {
    font-size: 0.8rem;
  }

  .about .about-image .image-overlay {
    bottom: -30px;
    right: 0;
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .service-card {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card.featured {
  border: 2px solid var(--accent-color);
}

.services .service-card.featured .service-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-card .service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 0 0 0 8px;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.services .service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-card p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.services .service-card .service-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.services .service-card .service-features span i {
  color: var(--accent-color);
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-link:hover {
  gap: 0.75rem;
}

.services .service-image-block {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.services .service-image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
  border-radius: 8px;
}

.services .service-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .service-list-block {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.services .service-list-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-list-block p {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .service-list-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services .service-list-item .service-list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-list-item .service-list-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .service-list-item .service-list-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.services .service-list-item .service-list-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.services .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-list-block {
    margin-top: 2rem;
  }

  .services .service-card {
    padding: 2rem;
  }

  .services .cta-container {
    padding: 2rem;
  }

  .services .cta-container h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .service-list-item {
    flex-direction: column;
    gap: 1rem;
  }

  .services .service-list-item .service-list-icon {
    margin-bottom: 0.5rem;
  }
}


.btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

@media (max-width: 992px) {
  .projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.projects .project-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  min-height: 280px;
}

.projects .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item:hover .project-visual img {
  transform: scale(1.08);
}

.projects .project-item:hover .project-link {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-item:hover .project-link i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .projects .project-item {
    flex-direction: column;
    min-height: auto;
  }
}

.projects .project-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .projects .project-content {
    padding: 25px;
  }
}

.projects .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.projects .project-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.projects .project-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-status.completed {
  background: #22c55e;
  color: #ffffff;
}

.projects .project-status.in-progress {
  background: var(--accent-color);
  color: #ffffff;
}

.projects .project-status.planning {
  background: #f59e0b;
  color: #ffffff;
}

.projects .project-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .projects .project-title {
    font-size: 20px;
  }
}

.projects .project-details {
  margin-bottom: 25px;
}

.projects .project-info {
  margin-bottom: 20px;
}

.projects .project-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.projects .project-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .projects .project-specs {
    flex-direction: column;
    gap: 8px;
  }
}

.projects .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.projects .spec-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .project-location i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.projects .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.projects .project-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.projects .project-visual {
  flex: 0 0 200px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .projects .project-visual {
    flex: none;
    height: 200px;
  }
}

.projects .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects .project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.projects .project-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-slide {
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  min-height: 400px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: 4px solid var(--accent-color);
}

.testimonials .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonials .stars-rating {
  display: flex;
  gap: 0.5rem;
}

.testimonials .stars-rating i {
  color: #ffc107;
  font-size: 1.25rem;
}

.testimonials .quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .quote-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.testimonials .testimonial-body {
  margin: 2.5rem 0;
}

.testimonials .testimonial-body p {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  position: relative;
}

.testimonials .testimonial-footer {
  margin-top: 2.5rem;
}

.testimonials .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .author-details {
  text-align: left;
}

.testimonials .author-details h4 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.testimonials .author-details .role {
  display: block;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonials .author-details .company {
  display: block;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .swiper-pagination {
  position: static !important;
  margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static !important;
  width: 50px;
  height: 50px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
  font-size: 1.25rem;
  color: var(--contrast-color);
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-slide {
    padding: 2.5rem 2rem;
    min-height: 350px;
  }

  .testimonials .testimonial-body p {
    font-size: 1.125rem;
  }

  .testimonials .author-avatar {
    width: 70px;
    height: 70px;
  }

  .testimonials .author-details h4 {
    font-size: 1.25rem;
  }

  .testimonials .quote-icon {
    width: 50px;
    height: 50px;
  }

  .testimonials .quote-icon i {
    font-size: 1.25rem;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-slide {
    padding: 2rem 1.5rem;
    min-height: 300px;
  }

  .testimonials .testimonial-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonials .testimonial-body {
    margin: 2rem 0;
  }

  .testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonials .author-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .testimonials .author-details {
    text-align: center;
  }

  .testimonials .author-details h4 {
    font-size: 1.125rem;
  }

  .testimonials .author-details .role {
    font-size: 0.9375rem;
  }

  .testimonials .author-details .company {
    font-size: 0.875rem;
  }

  .testimonials .swiper-navigation-wrapper {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.certifications .content h2 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.2;
}

.certifications .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.certifications .badge-highlight {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.certifications .badge-highlight img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.certifications .badge-highlight .badge-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.certifications .badge-highlight .badge-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certifications .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.certifications .certification-grid .cert-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.certifications .certification-grid .cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.certifications .certification-grid .cert-card:hover::before {
  transform: scaleY(1);
}

.certifications .certification-grid .cert-card:hover .cert-icon img {
  transform: scale(1.1);
}

.certifications .certification-grid .cert-card .cert-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.8rem;
}

.certifications .certification-grid .cert-card .cert-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card .cert-details {
  flex: 1;
}

.certifications .certification-grid .cert-card .cert-details h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.certifications .certification-grid .cert-card .cert-details .cert-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.certifications .certification-grid .cert-card .cert-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
}

.certifications .achievements-banner {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-top: 3rem;
}

.certifications .achievements-banner .achievement-item {
  padding: 1rem;
}

.certifications .achievements-banner .achievement-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.certifications .achievements-banner .achievement-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.certifications .achievements-banner .achievement-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .certifications .certification-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certifications .certification-grid .cert-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .certifications .certification-grid .cert-card .cert-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 80px 0;
  }

  .certifications h2 {
    font-size: 2.2rem;
  }

  .certifications .badge-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .certifications .badge-highlight img {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .certifications .cert-card {
    flex-direction: column;
    text-align: center;
  }

  .certifications .cert-card .cert-icon {
    margin: 0 auto;
  }

  .certifications .achievements-banner {
    padding: 2rem 1rem;
  }

  .certifications .achievements-banner .achievement-item {
    margin-bottom: 2rem;
  }

  .certifications .achievements-banner .achievement-item:last-child {
    margin-bottom: 0;
  }

  .certifications .achievements-banner .achievement-item h3 {
    font-size: 2.2rem;
  }
}

/* ============================= */
/* ENGINEERING PRODUCTS SECTION */
/* ============================= */

.projects {
  position: relative;
}

.projects .row {
  margin-bottom: 80px;
}

/* Image Styling */

.projects img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.projects img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Text Content Block */

.projects h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.projects p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}

/* Highlight strong text */

.projects strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Card-like background for text */

.projects .col-lg-6:last-child {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.projects .col-lg-6:last-child:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* CTA Container */
.projects .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.projects .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.projects .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.projects .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.projects .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}


.project-details .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.project-details .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.project-details .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.project-details .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.project-details .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}


/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

@media (max-width: 992px) {

  .projects img {
    height: 300px;
    margin-bottom: 20px;
  }

  .projects .row {
    margin-bottom: 60px;
  }

  .projects h3 {
    font-size: 1.5rem;
  }

  .projects .col-lg-6:last-child {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {

  .projects img {
    height: 240px;
  }

  .projects h3 {
    font-size: 1.3rem;
  }

}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.team .team-card.featured .team-header {
  display: flex;
  padding: 30px;
  gap: 25px;
  align-items: center;
}

.team .team-card.featured .team-header .team-image {
  position: relative;
  flex-shrink: 0;
}

.team .team-card.featured .team-header .team-image img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.team .team-card.featured .team-header .team-image .experience-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.team .team-card.featured .team-header .team-info {
  flex: 1;
}

.team .team-card.featured .team-header .team-info h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.team .team-card.featured .team-header .team-info .position {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team .team-card.featured .team-header .team-info .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team .team-card.featured .team-header .team-info .contact-info a {
  color: var(--default-color);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.team .team-card.featured .team-header .team-info .contact-info a i {
  color: var(--accent-color);
  font-size: 16px;
}

.team .team-card.featured .team-header .team-info .contact-info a:hover {
  color: var(--accent-color);
}

.team .team-card.featured .team-details {
  padding: 0 30px 30px 30px;
}

.team .team-card.featured .team-details p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team .team-card.featured .team-details .credentials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.team .team-card.featured .team-details .credentials .cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 15px;
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.team .team-card.featured .team-details .credentials .cred-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.team .team-card.featured .team-details .credentials .cred-item span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
}

.team .team-card.featured .team-details .social-links {
  display: flex;
  gap: 12px;
}

.team .team-card.featured .team-details .social-links a {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.team .team-card.featured .team-details .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.team .team-card.compact .member-photo {
  position: relative;
  overflow: hidden;
  height: 320px
}

.team .team-card.compact .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  object-position: top;
}

.team .team-card.compact .member-photo .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 5%) 0%, color-mix(in srgb, var(--heading-color), transparent 10%) 100%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--contrast-color);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content span {
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a:hover {
  transform: scale(1.1);
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.team .team-card.compact .member-photo:hover .hover-overlay {
  opacity: 1;
}

.team .team-card.compact .member-photo:hover .hover-overlay .overlay-content {
  transform: translateY(0);
}

.team .team-card.compact .member-photo:hover img {
  transform: scale(1.04);
}

.team .team-card.compact .member-summary {
  padding: 20px;
  text-align: center;
}

.team .team-card.compact .member-summary h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.team .team-card.compact .member-summary span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.team .team-card.compact .member-summary .skills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team .team-card.compact .member-summary .skills .skill-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 992px) {
  .team .team-card.featured .team-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .team .team-card.featured .team-header .team-image {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .team .team-card.featured .team-header {
    padding: 25px 20px;
  }

  .team .team-card.featured .team-header .team-image img {
    width: 100px;
    height: 100px;
  }

  .team .team-card.featured .team-header .team-info h4 {
    font-size: 20px;
  }

  .team .team-card.featured .team-header .team-info .contact-info a {
    font-size: 13px;
  }

  .team .team-card.featured .team-details {
    padding: 0 20px 25px 20px;
  }

  .team .team-card.featured .team-details .credentials {
    justify-content: center;
  }

  .team .team-card.featured .team-details .credentials .cred-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  .team .team-card.featured .team-details .social-links {
    justify-content: center;
  }

  .team .team-card.featured .team-details .social-links a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .team .team-card.compact .member-photo img {
    height: 300px;
  }

  .team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
    font-size: 18px;
  }

  .team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .team .team-card.compact .member-summary {
    padding: 15px;
  }

  .team .team-card.compact .member-summary h5 {
    font-size: 16px;
  }

  .team .team-card.compact .member-summary .skills .skill-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, color-mix(in srgb, var(--heading-color), transparent 97%) 100%);
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-hero-content .badge-wrapper {
  margin-bottom: 2rem;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge i {
  font-size: 1rem;
}

.call-to-action .cta-hero-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .call-to-action .cta-hero-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-hero-content h2 {
    font-size: 2.2rem;
  }
}

.call-to-action .cta-hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
}

.call-to-action .cta-hero-content .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item span {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
}

.call-to-action .cta-form-section .form-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .call-to-action .cta-form-section .form-container {
    padding: 30px 25px;
  }
}

.call-to-action .cta-form-section .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.call-to-action .cta-form-section .form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.call-to-action .cta-form-section .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin: 0;
}

.call-to-action .cta-form-section .form-group {
  margin-bottom: 1rem;
}

.call-to-action .cta-form-section .form-group input,
.call-to-action .cta-form-section .form-group select,
.call-to-action .cta-form-section .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.call-to-action .cta-form-section .form-group input:focus,
.call-to-action .cta-form-section .form-group select:focus,
.call-to-action .cta-form-section .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .cta-form-section .form-group input::placeholder,
.call-to-action .cta-form-section .form-group select::placeholder,
.call-to-action .cta-form-section .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action .cta-form-section .form-group select {
  cursor: pointer;
}

.call-to-action .cta-form-section .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.call-to-action .cta-form-section .form-actions {
  margin-top: 2rem;
  text-align: center;
}

.call-to-action .cta-form-section .form-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.call-to-action .cta-form-section .form-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-form-section .form-actions .btn-primary i {
  font-size: 1.2rem;
}

.call-to-action .cta-form-section .form-actions .contact-alternative {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-form-section .form-actions .contact-alternative span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action .cta-form-section .form-actions .contact-alternative .phone-link i {
  font-size: 1rem;
}

.call-to-action .cta-form-section .trust-indicators {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .cta-form-section .trust-indicators .trust-item {
  text-align: center;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon {
  margin-bottom: 10px;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content .trust-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content .trust-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .call-to-action .cta-hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-sidebar {
  position: sticky;
  top: 120px;
}

.service-details .service-sidebar .service-overview-card,
.service-details .service-sidebar .quick-info-card,
.service-details .service-sidebar .contact-action-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .service-sidebar .service-overview-card {
  text-align: center;
}

.service-details .service-sidebar .service-overview-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-details .service-sidebar .service-overview-card .service-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.service-details .service-sidebar .service-overview-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-sidebar .service-overview-card p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-details .service-sidebar .service-overview-card .service-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item {
  text-align: center;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.service-details .service-sidebar .service-overview-card .service-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
}

.service-details .service-sidebar .quick-info-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .label {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .value {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-details .service-sidebar .contact-action-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-sidebar .contact-action-card .contact-text {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn span {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover i,
.service-details .service-sidebar .contact-action-card .contact-methods .contact-btn:hover span {
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-action-card .btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-action-card .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.service-details .service-main-content .hero-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-details .service-main-content .hero-section img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-details .service-main-content .hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.service-details .service-main-content .hero-section .hero-overlay .hero-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.service-details .service-main-content .hero-section .hero-overlay .hero-badge i {
  font-size: 1.1rem;
}

.service-details .service-main-content .content-section {
  margin-bottom: 3rem;
}

.service-details .service-main-content .content-section h1 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.service-details .service-main-content .content-section .content-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .content-section .content-intro p:last-child {
  margin-bottom: 0;
}

.service-details .service-main-content .capabilities-grid {
  margin-bottom: 4rem;
}

.service-details .service-main-content .capabilities-grid h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-details .service-main-content .capabilities-grid .capability-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.service-details .service-main-content .capabilities-grid .capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-details .service-main-content .capabilities-grid .capability-card .capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-details .service-main-content .capabilities-grid .capability-card .capability-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.service-details .service-main-content .capabilities-grid .capability-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-main-content .capabilities-grid .capability-card p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-details .service-main-content .methodology-section h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.service-details .service-main-content .methodology-section .methodology-timeline {
  position: relative;
}

.service-details .service-main-content .methodology-section .methodology-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 3rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content p {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li {
  color: var(--default-color);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-content .phase-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

.service-details .portfolio-showcase .showcase-header {
  margin-bottom: 2rem;
}

.service-details .portfolio-showcase .showcase-header h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .portfolio-showcase .showcase-header p {
  color: var(--default-color);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-details .portfolio-showcase .project-showcase-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.service-details .portfolio-showcase .project-showcase-item .project-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.service-details .portfolio-showcase .project-showcase-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info {
  text-align: center;
  color: var(--contrast-color);
  padding: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--contrast-color);
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn i {
  font-size: 1.2rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 20%);
  transform: scale(1.1);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image img {
  transform: scale(1.05);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image .project-overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    position: static;
    margin-top: 3rem;
  }

  .service-details .service-main-content .content-section h1 {
    font-size: 2rem;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline::before {
    left: 30px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
    padding-left: 100px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-details .service-sidebar .contact-action-card .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-details .service-main-content .hero-section img {
    height: 250px;
  }

  .service-details .service-main-content .hero-section .hero-overlay {
    padding: 1.5rem;
  }

  .service-details .service-main-content .capabilities-grid .row {
    --bs-gutter-y: 2rem;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline::before {
    display: none;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
    padding-left: 0;
    text-align: center;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
    position: relative;
    margin: 0 auto 1.5rem;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .project-header {
  margin-bottom: 60px;
}

.project-details .project-header .project-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .project-header .project-banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.project-details .project-header .project-banner .banner-badge {
  position: absolute;
  top: 25px;
  left: 25px;
}

.project-details .project-header .project-banner .banner-badge .status-indicator {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1e40af 30%));
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .project-header .project-summary {
  padding-left: 50px;
}

.project-details .project-header .project-summary .project-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.project-details .project-header .project-summary .project-tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-details .project-header .project-summary .main-title {
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .project-header .project-summary .summary-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 45px;
}

.project-details .project-header .project-summary .key-metrics .metric-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.project-details .project-header .project-summary .key-metrics .metric-row:last-child {
  margin-bottom: 0;
}

.project-details .project-header .project-summary .key-metrics .metric {
  flex: 1;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.project-details .project-header .project-summary .key-metrics .metric .metric-title {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.project-details .project-header .project-summary .key-metrics .metric .metric-data {
  display: block;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .project-details .project-header .project-summary {
    padding-left: 0;
    margin-top: 40px;
  }

  .project-details .project-header .project-banner img {
    height: 350px;
  }

  .project-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .project-details .project-header .key-metrics .metric-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .project-details .project-header .project-tags {
    flex-wrap: wrap;
  }
}

.project-details .visual-showcase {
  margin-bottom: 80px;
}

.project-details .visual-showcase .showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .visual-showcase .showcase-grid .showcase-item.large {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item.tall {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  padding: 30px 20px 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay .overlay-label {
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .project-details .visual-showcase .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .project-details .visual-showcase .showcase-grid .showcase-item.large,
  .project-details .visual-showcase .showcase-grid .showcase-item.tall {
    grid-row: span 1;
  }
}

.project-details .detailed-breakdown {
  margin-bottom: 80px;
}

.project-details .detailed-breakdown .breakdown-content h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list {
  margin-top: 40px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point:last-child {
  margin-bottom: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker i {
  color: var(--accent-color);
  font-size: 18px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .detailed-breakdown .specifications-panel h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .specifications-panel .spec-table {
  margin-bottom: 40px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row:last-child {
  border-bottom: none;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-name {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-detail {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-percentage {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container {
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  overflow: hidden;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #10b981 40%));
  border-radius: 4px;
  transition: width 0.8s ease;
}

@media (max-width: 992px) {
  .project-details .detailed-breakdown .specifications-panel {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .project-details .detailed-breakdown .specifications-panel {
    padding: 30px 25px;
  }
}

.project-details .technical-gallery .gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.project-details .technical-gallery .gallery-header h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.project-details .technical-gallery .gallery-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.project-details .technical-gallery .tech-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-details .technical-gallery .tech-item:hover {
  transform: translateY(-8px);
}

.project-details .technical-gallery .tech-item:hover .tech-caption {
  background: var(--accent-color);
}

.project-details .technical-gallery .tech-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-details .technical-gallery .tech-item .tech-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--default-color), transparent 15%);
  color: var(--contrast-color);
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .project-details .technical-gallery .tech-item {
    margin-bottom: 20px;
  }

  .project-details .technical-gallery .tech-item img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-form-container {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.quote .quote-info {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  padding: 60px 40px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  min-height: 100%;
}

@media (max-width: 992px) {
  .quote .quote-info {
    padding: 40px 30px;
  }
}

.quote .quote-info .quote-content {
  width: 100%;
}

.quote .quote-info h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.quote .quote-info>p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote .contact-items {
  margin-bottom: 30px;
}

.quote .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quote .contact-item:last-child {
  margin-bottom: 0;
}

.quote .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.quote .contact-item .contact-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.quote .contact-item .contact-details h4 {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote .contact-item .contact-details p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 14px;
  margin: 0;
}

.quote .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.quote .trust-badges .trust-badge {
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 10px 15px;
  border-radius: 25px;
}

.quote .trust-badges .trust-badge i {
  color: var(--contrast-color);
  font-size: 16px;
  margin-right: 8px;
}

.quote .trust-badges .trust-badge span {
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.quote .quote-form-wrapper {
  padding: 60px 40px;
}

@media (max-width: 992px) {
  .quote .quote-form-wrapper {
    padding: 40px 30px;
  }
}

.quote .form-header {
  margin-bottom: 30px;
}

.quote .form-header h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.quote .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
}

.quote .django-email-form .form-group {
  margin-bottom: 20px;
}

.quote .django-email-form input[type=text],
.quote .django-email-form input[type=email],
.quote .django-email-form input[type=tel],
.quote .django-email-form select,
.quote .django-email-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.quote .django-email-form input[type=text]:focus,
.quote .django-email-form input[type=email]:focus,
.quote .django-email-form input[type=tel]:focus,
.quote .django-email-form select:focus,
.quote .django-email-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.quote .django-email-form input[type=text]::placeholder,
.quote .django-email-form input[type=email]::placeholder,
.quote .django-email-form input[type=tel]::placeholder,
.quote .django-email-form select::placeholder,
.quote .django-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.quote .django-email-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 50px;
  appearance: none;
}

.quote .django-email-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote .django-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote .django-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .quote .quote-info {
    text-align: center;
  }

  .quote .quote-info .contact-items {
    max-width: 400px;
    margin: 30px auto;
  }

  .quote .quote-info .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quote .quote-form-container {
    border-radius: 10px;
  }

  .quote .quote-info {
    padding: 30px 20px;
  }

  .quote .quote-info h3 {
    font-size: 24px;
  }

  .quote .quote-form-wrapper {
    padding: 30px 20px;
  }

  .quote .form-header h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.terms-of-service .terms-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-service .terms-contact p {
  margin-bottom: 20px;
}

.terms-of-service .terms-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.terms-of-service .terms-contact .contact-details p {
  margin-bottom: 10px;
}

.terms-of-service .terms-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.product-img {
  width: 100%;
  height: 380px;
  /* Adjust as needed */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-section {
  background: var(--surface-color, #f8f9fa);
  padding: 3rem 0 4rem;
}

/* Section Title */
.gallery-section .section-title {
  margin-bottom: 2.5rem;
}

.gallery-section .section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.gallery-section .section-title p {
  font-size: 0.9375rem;
  color: var(--default-color);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.85;
}

/* Phase Labels */
.gallery-phase-label {
  margin: 2rem 0 1rem;
}

.gallery-phase-label span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  padding: 0.3em 0.9em;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

/* Gallery Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.gallery-card i {
  font-size: 1.5rem;
  color: #fff;
}

.gallery-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

/* Gallery Images */
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-img-wide {
  height: 300px;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      color-mix(in srgb, var(--heading-color), transparent 10%) 0%,
      color-mix(in srgb, var(--heading-color), transparent 55%) 50%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-inner {
  text-align: center;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gallery-card:hover .overlay-inner {
  transform: translateY(0);
}

.overlay-inner h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  padding: 0 0.75rem;
}

/* Video Cards */
.gallery-card-video {
  transform: none;
  transition: box-shadow 0.35s ease;
}

.gallery-card-video:hover {
  transform: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

.gallery-card-video video {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Video Caption */
.video-caption {
  background: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.video-caption i {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.video-caption h5 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-img {
    height: 220px;
  }

  .gallery-img-wide {
    height: 220px;
  }

  .gallery-phase-label {
    margin: 1.5rem 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 200px;
  }

  .overlay-inner h5 {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
/* 
.partners {
    background: var(--background-color);
    padding: 3rem 0 4rem;
}

.partners .section-title {
    margin-bottom: 2.5rem;
}

.partners .section-title h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.partners .section-title p {
    font-size: 0.9375rem;
    color: var(--default-color);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.85;
}

.partner-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.partner-header {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.partner-logo-block {
    flex-shrink: 0;
    text-align: center;
}

.partner-logo-placeholder {
    background: linear-gradient(135deg, #102a49 0%, #14529d 100%);
    border-radius: 10px;
    padding: 20px 28px;
    margin-bottom: 14px;
    min-width: 160px;
}

.partner-logo-placeholder .logo-text {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.partner-logo-placeholder .logo-sub {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.partner-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.partner-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

.partner-intro h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.partner-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 12px;
}

.partner-intro > p {
    font-size: 0.9375rem;
    color: var(--default-color);
    line-height: 1.75;
    margin-bottom: 16px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.partner-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.partner-divider {
    border: none;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    margin: 2rem 0;
}

.featured-product-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info {
    padding: 0 2rem 0 0;
}

.product-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-info h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.product-lead {
    font-size: 0.9375rem;
    color: var(--default-color);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-item > i {
    font-size: 1.1rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h6 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 3px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--default-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.product-specs-panel {
    background: #f9fafb;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.specs-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    gap: 12px;
}

.spec-row:last-of-type {
    border-bottom: none;
}

.spec-label {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--default-color);
    opacity: 0.7;
    flex-shrink: 0;
    min-width: 120px;
}

.spec-value {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--heading-color);
    text-align: right;
}

.specs-note {
    margin-top: 1rem;
    padding: 10px 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 6px;
    font-size: 0.775rem;
    color: var(--heading-color);
    line-height: 1.55;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.specs-note i {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 1px;
}

.finish-section {
    margin-top: 0.5rem;
}

.finish-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.finish-card {
    background: #f9fafb;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.finish-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.finish-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.finish-card h6 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.finish-card p {
    font-size: 0.75rem;
    color: var(--default-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.partners-cta {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
        color-mix(in srgb, var(--heading-color), transparent 94%) 100%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-radius: 12px;
    padding: 3rem 2rem;
}

.partners-cta h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.partners-cta p {
    font-size: 0.9375rem;
    color: var(--default-color);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 1.75rem;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary-cta:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--accent-color);
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    transition: all 0.25s ease;
}

.btn-secondary-cta:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .partner-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .partner-logo-block {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .partner-meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-info {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .partner-card {
        padding: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .spec-label {
        min-width: 100px;
    }

    .partners-cta {
        padding: 2rem 1.25rem;
    }
} */


.pc-pre {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sod-blue);
  margin-bottom: .6rem;
  display: block;
}

.pc-pre--light {
  color: rgba(255, 255, 255, .55);
}

.pc-h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--sod-navy);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.pc-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sod-blue);
}

.pc-h2--light {
  color: #fff;
}

.pc-h2--light em {
  color: rgba(255, 255, 255, .65);
}

.pc-lead {
  font-size: .9375rem;
  color: var(--sod-text);
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 1.5rem;
}

.pc-lead--light {
  color: rgba(255, 255, 255, .8);
  opacity: 1;
}

/* ── Section label ── */
.pc-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.pc-sl__line {
  flex: 0 0 60px;
  height: 1px;
  background: color-mix(in srgb, var(--sod-blue), transparent 65%);
}

.pc-sl__text {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sod-blue);
  white-space: nowrap;
}


/*=================================================================
  BLOCK 1 — COVER HERO
=================================================================*/
.pc-cover {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
}

/* Background: deep blue-to-navy gradient imitating lit lobby in PDF */
.pc-cover__bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 80% at 60% 40%, #1a3f6f 0%, #0d1f35 60%, #060e18 100%);
  background-size: 400px 400px, cover;
}

.pc-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 75% 30%, rgba(20, 82, 157, .35) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 40%, rgba(10, 20, 40, .6) 100%);
}

.pc-cover__body {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Eyebrow */
.pc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.5rem;
}

.pc-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sod-blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(20, 82, 157, .35);
}

/* Brand name — big magazine-style wordmark */
.pc-brandname {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
  margin-bottom: .25rem;
}

.pc-brandname__s {
  color: var(--sod-blue);
  text-shadow: 0 0 40px rgba(20, 82, 157, .6);
}

.pc-brandmeta {
  font-size: .73rem;
  letter-spacing: .26em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 1.25rem;
  padding-left: 4px;
}

.pc-desc {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.pc-desc strong {
  color: #fff;
  font-weight: 700;
}

/* Pills */
.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.pc-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
}

.pc-pills span i {
  font-size: .75rem;
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 2px;
  transition: border-color .2s;
}

.pc-link:hover {
  border-color: #fff;
  color: #fff;
}

/* Glassmorphism card */
.pc-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.pc-card__kicker {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .75rem;
}

.pc-card__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
}

.pc-card__tag {
  font-size: .825rem;
  color: rgba(255, 255, 255, .6);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.pc-card__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.pc-stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
}

.pc-stat:first-child {
  padding-left: 0;
}

.pc-stat__val {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pc-stat__val em {
  font-size: .75rem;
  font-style: normal;
  color: var(--sod-blue);
  margin-left: 2px;
}

.pc-stat__lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
}

.pc-stat__div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  margin: 0 .25rem;
  flex-shrink: 0;
}

/* Large floor text — PDF cover HYBRID lettering */
.pc-floor-text {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
}

/* SODIMAS brand bar (blue + red) — PDF identifier */
.pc-brand-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  height: 5px;
  width: 100%;
  z-index: 3;
}

.pc-brand-bar__blue {
  flex: 2;
  background: var(--sod-blue);
}

.pc-brand-bar__red {
  flex: 1;
  background: var(--sod-red);
}


/*=================================================================
  BLOCK 2 — INNOVATION & TRADITION
=================================================================*/
.pc-innov {
  display: flex;
  min-height: 560px;
  background: var(--sod-surface);
}

.pc-innov__img-col {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}

.pc-innov__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Key PDF technique: image gradient bleeds INTO section background */
.pc-innov__img-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--sod-surface) 100%),
    linear-gradient(to bottom, transparent 35%, rgba(10, 20, 40, .85) 100%);
}

.pc-innov__img-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  /* display: flex; */
  text-align: left;
}

.pc-innov__img-text h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.pc-innov__img-text h3 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
}

.pc-innov__img-text p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-style: italic;
  margin: 0;
}

/* SODIMAS watermark over image */
.pc-innov__logo-wm {
  position: absolute;
  top: 1.5rem;
  right: -10px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  letter-spacing: .12em;
  pointer-events: none;
  user-select: none;
}

.pc-innov__text-col {
  flex: 1;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--sod-border);
  border-bottom: 1px solid var(--sod-border);
}

/* Feature rows */
.pc-innov__feats {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.pc-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sod-border);
}

.pc-feat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pc-feat__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--sod-accent-bg);
  border: 1px solid var(--sod-accent-bd);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-feat__icon i {
  font-size: 1.1rem;
  color: var(--sod-blue);
}

.pc-feat__body h5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--sod-navy);
  margin-bottom: 3px;
}

.pc-feat__body p {
  font-size: .845rem;
  color: var(--sod-text);
  opacity: .75;
  line-height: 1.65;
  margin: 0;
}


/*=================================================================
  BLOCK 3 — CAR STANDARD
=================================================================*/
.pc-cabin {
  background: var(--sod-navy);
  padding: 4rem 0;
}

.pc-cabin .pc-sl__text {
  color: rgba(255, 255, 255, .45);
}

.pc-cabin .pc-sl__line {
  background: rgba(255, 255, 255, .15);
}

.pc-cabin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.pc-cabin__visual {
  position: relative;
}

.pc-cabin__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  /* min-height: 420px; */
}

.pc-cabin__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Cabin visual mockup */
/* .pc-cabin__visual { position: relative; }
.pc-cabin__render {
  position: relative;
  background: linear-gradient(160deg, #1e3a5a, #0f2235);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem 1.5rem 1rem;
  min-height: 380px;
  overflow: visible;
}
.pc-cabin__ceiling {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg,#e8e8e8,#d0d0d0);
  border-radius: 6px 6px 0 0;
  height: 32px;
  padding: 0 12px;
  margin: 0 12px;
}
.pc-cabin__led {
  width: 50px; height: 10px;
  background: linear-gradient(90deg,#fffde7,#fff9c4,#fffde7);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255,253,200,.6);
}
.pc-cabin__fan {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #bbb;
  background: radial-gradient(circle,#ddd,#bbb);
}
.pc-cabin__body-area {
  position: relative;
  margin: 0 12px;
  height: 220px;
  display: flex;
  overflow: hidden;
}
.pc-cabin__back-wall {
  flex: 1;
  background: linear-gradient(180deg,#d4d4d4,#c0c0c0);
  background-image: repeating-linear-gradient(90deg,transparent,transparent 3px,rgba(0,0,0,.04) 3px,rgba(0,0,0,.04) 4px);
  display: flex; align-items: center; justify-content: center;
}
.pc-cabin__mirror {
  width: 90%; height: 55%;
  background: linear-gradient(135deg,rgba(255,255,255,.6),rgba(200,220,240,.4));
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 2px;
}
.pc-cabin__side-wall {
  width: 40px;
  background: linear-gradient(90deg,#c8b882,#d4c49a);
  background-image: repeating-linear-gradient(0deg,transparent,transparent 5px,rgba(0,0,0,.04) 5px,rgba(0,0,0,.04) 6px);
  display: flex; align-items: center; justify-content: center;
}
.pc-cabin__laminate-panel {
  width: 28px; height: 80%;
  background: linear-gradient(180deg,#d4c49a,#c0ae80);
  border-radius: 2px;
}
.pc-cabin__door-area {
  width: 90px;
  display: flex;
  border-left: 1px solid rgba(0,0,0,.1);
}
.pc-cabin__door {
  flex: 1; height: 100%;
  background: linear-gradient(180deg,#b4b4b4,#c8c8c8,#b0b0b0);
  background-image: repeating-linear-gradient(90deg,transparent,transparent 8px,rgba(0,0,0,.04) 8px,rgba(0,0,0,.04) 9px);
}
.pc-cabin__door--l { border-right: 2px solid #888; }
.pc-cabin__door--r { border-left: 2px solid #888; }
.pc-cabin__cop-panel {
  position: absolute;
  right: 48px; top: 10px;
  width: 28px;
  background: linear-gradient(180deg,#1a1a1a,#2d2d2d);
  border-radius: 4px;
  padding: 6px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pc-cabin__cop-screen {
  font-family: 'Ubuntu', sans-serif;
  font-size: .55rem; font-weight: 700; color: #fff;
  background: rgba(0,0,0,.5); width: 100%; text-align: center;
  padding: 2px 0; border-radius: 2px;
}
.pc-cabin__cop-brand {
  font-size: .3rem; color: rgba(255,255,255,.4);
  letter-spacing: .05em; text-align: center;
}
.pc-cabin__cop-btns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 100%; margin-top: 2px;
}
.pc-cabin__cop-btns span {
  aspect-ratio: 1; background: rgba(255,255,255,.12);
  border-radius: 2px; display: block;
}
.pc-cabin__handrail {
  position: absolute;
  left: 50px; right: 90px; bottom: 24px;
  height: 6px;
  background: linear-gradient(180deg,#d4d4d4,#b8b8b8);
  border-radius: 3px;
  border-bottom: 2px solid #a0a0a0;
}
.pc-cabin__floor {
  height: 20px; margin: 0 12px;
  background: linear-gradient(180deg,#f0f0f0,#e0e0e0);
  background-image: radial-gradient(#ccc 1px,transparent 1px); background-size: 8px 8px;
  border-radius: 0 0 6px 6px;
} */

/* Annotation dots + lines (inspired by PDF p3) */
/* .pc-ann {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  pointer-events: none;
}
.pc-ann__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sod-blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(20,82,157,.3);
}
.pc-ann__line--h { flex: 0 0 20px; height: 1px; background: rgba(20,82,157,.5); }
.pc-ann--top-l { top: 18%; left: -130px; flex-direction: row-reverse; }
.pc-ann--mid-l { top: 50%; left: -110px; flex-direction: row-reverse; }
.pc-ann--bot-l { bottom: 12%; left: -120px; flex-direction: row-reverse; }
.pc-ann--top-r { top: 18%; right: -125px; }
.pc-ann--mid-r { top: 50%; right: -125px; }
.pc-ann--bot-r { bottom: 12%; right: -140px; }
.pc-ann__label { padding: 0 8px; } */

/* Component list */
.pc-cabin__list {
  padding: 1rem 0;
}

.pc-cabin__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.pc-cabin__item:last-of-type {
  border-bottom: none;
}

.pc-cabin__item-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(20, 82, 157, .25);
  border: 1px solid rgba(20, 82, 157, .4);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-cabin__item-icon i {
  color: #7fb3e8;
  font-size: 1rem;
}

.pc-cabin__item h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.pc-cabin__item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin: 0;
}

.pc-cabin__note {
  margin-top: 1rem;
  padding: .875rem 1rem;
  background: rgba(20, 82, 157, .15);
  border: 1px solid rgba(20, 82, 157, .25);
  border-radius: 7px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.pc-cabin__note i {
  color: #7fb3e8;
  flex-shrink: 0;
  margin-top: 1px;
}


/*=================================================================
  BLOCK 4 — LANDING OPTIONS
=================================================================*/
.pc-landing {
  display: flex;
  min-height: 540px;
  background: var(--sod-surface);
}

.pc-landing__img-col {
  position: relative;
  width: 80%;
  flex-shrink: 0;
  overflow: hidden;
}

.pc-landing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right gradient bleeds image into white section — PDF p5 technique */
.pc-landing__grad-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--sod-surface) 100%);
}

/* Bottom gradient fades to white (PDF bottom fade) */
.pc-landing__grad-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, .15) 100%);
}

/* Made in France badge */
.pc-landing__mif {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: .6rem 1rem;
  z-index: 2;
}

.pc-landing__mif i {
  font-size: 1.1rem;
  color: #fff;
}

.pc-landing__mif span {
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6);
  display: block;
}

.pc-landing__mif strong {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.pc-landing__text {
  flex: 1;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-landing__group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sod-navy);
  margin-bottom: 1rem;
}

.pc-landing__group-title i {
  color: var(--sod-blue);
}

.pc-landing__swatches {
  display: flex;
  gap: 10px;
  margin-bottom: .875rem;
}

.pc-swatch {
  flex: 0 0 60px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.pc-swatch--inox {
  background: linear-gradient(135deg, #c8c8c8, #e0e0e0, #b4b4b4);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, .04) 3px, rgba(0, 0, 0, .04) 4px);
  color: rgba(0, 0, 0, .45);
}

.pc-swatch--ral {
  background: linear-gradient(135deg, #888880, #9a9a90, #7a7a72);
  color: rgba(255, 255, 255, .6);
}

.pc-landing__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: .5rem;
}

.pc-landing__checks span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--sod-text);
}

.pc-landing__checks span i {
  color: var(--sod-blue);
  font-size: .8rem;
}

/* Landing panel illustrations */
.pc-landing__panels {
  display: flex;
  gap: 8px;
  margin-top: .5rem;
}

.pc-lp {
  width: 52px;
  min-height: 80px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px;
}

.pc-lp--dark {
  background: linear-gradient(180deg, #1a1a1a, #2e2e2e);
  border: 1px solid #444;
}

.pc-lp--chrome {
  background: linear-gradient(180deg, #d0d0d0, #e8e8e8);
  border: 1px solid #bbb;
}

.pc-lp__arr {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.pc-lp--chrome .pc-lp__arr {
  color: rgba(0, 0, 0, .5);
}

.pc-lp__num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}

.pc-lp__num.chrome {
  color: rgba(0, 0, 0, .6);
}

.pc-lp__icon {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}

.pc-lp__icon.chrome {
  color: rgba(0, 0, 0, .35);
}


/*=================================================================
  BLOCK 5 — ECO-DESIGN
=================================================================*/
.pc-eco {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.pc-eco__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2040 0%, #102a49 45%, #14529d 100%);
}

/* Noise grain texture overlay */
.pc-eco__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: .5;
}

.pc-eco__inner {
  position: relative;
  z-index: 1;
}

/* Energy bars */
.pc-eco__rating {
  margin-top: 1.75rem;
}

.pc-eco__rating-lbl {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .75rem;
}

.pc-eco__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 400px;
}

.pc-eco__bar {
  display: flex;
  align-items: center;
  height: 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: filter .2s;
}

.pc-eco__bar-l {
  font-family: 'Ubuntu', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  padding: 0 14px;
  z-index: 1;
  min-width: 42px;
}

.pc-eco__bar-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .9);
  z-index: 1;
}

.pc-eco__bar-tag {
  margin-left: auto;
  margin-right: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(255, 255, 255, .22);
  color: #fff;
  padding: 2px 9px;
  border-radius: 3px;
  z-index: 1;
}

.pc-eco__bar--a {
  background: #1a7a3c;
  width: 100%;
}

.pc-eco__bar--b {
  background: #4caf50;
  width: 87%;
}

.pc-eco__bar--c {
  background: #8bc34a;
  width: 74%;
}

.pc-eco__bar--d {
  background: #ffc107;
  width: 61%;
}

.pc-eco__bar--e {
  background: #ff9800;
  width: 48%;
}

.pc-eco__bar--f {
  background: #f44336;
  width: 35%;
}

.pc-eco__bar--g {
  background: #c62828;
  width: 22%;
}

.pc-eco__bar.active {
  box-shadow: 0 0 0 2px #fff, 0 4px 14px rgba(0, 0, 0, .35);
  filter: brightness(1.08);
}

/* Eco image — PDF p9 gearless motor with vignette */
.pc-eco__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .35);
}

.pc-eco__img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.pc-eco__img-vig {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10, 20, 40, .6) 100%);
  border-radius: 14px;
}

.pc-eco__img-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 122, 60, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: .6rem 1rem;
  backdrop-filter: blur(8px);
}

.pc-eco__badge-a {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pc-eco__badge-txt {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  line-height: 1.4;
}


/*=================================================================
  BLOCK 6 — QI TOUCH
=================================================================*/
.pc-qi {
  display: flex;
  align-items: stretch;
  background: var(--sod-surface);
  border: 1px solid var(--sod-border);
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE COLUMN */
.pc-qi__img-col {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}

/* IMAGE */
.pc-qi__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.65);
}

/* IMAGE GRADIENT */
.pc-qi__img-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 82, 157, .35) 0%, transparent 40%, var(--sod-surface) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, .12) 100%);
}

/* WATERMARK */
.pc-qi__wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  gap: 6px;
  pointer-events: none;
}

.pc-qi__wm-q {
  font-family: 'Ubuntu', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(43, 78, 110, .12);
}

.pc-qi__wm-q em {
  font-size: 4.5rem;
  font-style: normal;
}

.pc-qi__wm-t {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(63, 89, 113, .12);
  letter-spacing: .04em;
  align-self: center;
}

/* TEXT COLUMN */
.pc-qi__text {
  flex: 1;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FEATURES GRID */
.pc-qi__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.pc-qi__feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: var(--sod-text);
  background: var(--sod-accent-bg);
  border: 1px solid var(--sod-accent-bd);
  border-radius: 7px;
  padding: 9px 11px;
}

.pc-qi__feat i {
  color: var(--sod-blue);
  font-size: .95rem;
  flex-shrink: 0;
}

@media (max-width: 992px) {

  .pc-qi {
    flex-direction: column;
  }

  .pc-qi__img-col {
    width: 100%;
    height: 340px;
  }

  .pc-qi__text {
    padding: 2rem;
  }

  .pc-qi__feats {
    grid-template-columns: 1fr;
  }

}


/*=================================================================
  BLOCK 7 — TECHNICAL SPECS
=================================================================*/
.pc-specs {
  background: var(--sod-light);
  padding: 4.5rem 0;
}

.pc-specs__h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--sod-navy);
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
}

.pc-specs__sub {
  text-align: center;
  font-size: .9rem;
  color: var(--sod-text);
  opacity: .65;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Spec cards */
.pc-specs__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 3rem;
}

.pc-specs__card {
  background: var(--sod-surface);
  border: 1px solid var(--sod-border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: box-shadow .25s, transform .25s;
}

.pc-specs__card:hover {
  box-shadow: 0 6px 24px rgba(16, 42, 73, .1);
  transform: translateY(-2px);
}

.pc-specs__card--hl {
  border-top: 3px solid var(--sod-blue);
  background: var(--sod-accent-bg);
}

.pc-specs__card i {
  font-size: 1.3rem;
  color: var(--sod-blue);
  display: block;
  margin-bottom: 10px;
}

.pc-specs__card-lbl {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sod-text);
  opacity: .5;
  margin-bottom: 5px;
}

.pc-specs__card-val {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sod-navy);
  line-height: 1.25;
  margin-bottom: 4px;
}

.pc-specs__card-note {
  display: block;
  font-size: .75rem;
  color: var(--sod-text);
  opacity: .55;
  line-height: 1.45;
}

/* Dimension table — PDF p15 faithful replication */
.pc-specs__tbl-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sod-border);
  box-shadow: 0 2px 20px rgba(16, 42, 73, .07);
}

.pc-specs__tbl-head {
  background: var(--sod-navy);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 18px;
}

.pc-specs__tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
}

.pc-specs__thead-top th {
  background: color-mix(in srgb, var(--sod-blue), transparent 86%);
  color: var(--sod-navy);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 10px 12px;
  text-align: center;
  border-right: 1px solid var(--sod-border);
}

.pc-specs__thead-top .pc-specs__th-first {
  text-align: left;
  background: color-mix(in srgb, var(--sod-navy), transparent 88%);
}

.pc-specs__thead-top th small {
  display: block;
  font-weight: 400;
  font-size: .67rem;
  opacity: .65;
}

.pc-specs__thead-sub th {
  background: color-mix(in srgb, var(--sod-blue), transparent 93%);
  font-size: .7rem;
  color: var(--sod-blue);
  padding: 6px 12px;
  text-align: center;
  border-right: 1px solid var(--sod-border);
}

.pc-specs__tbl tbody tr {
  border-bottom: 1px solid var(--sod-border);
}

.pc-specs__tbl tbody td {
  padding: 9px 12px;
  text-align: center;
  color: var(--sod-text);
  border-right: 1px solid var(--sod-border);
}

.pc-specs__td-lbl {
  text-align: left;
  font-weight: 600;
  color: var(--sod-navy);
  font-size: .8rem;
  background: color-mix(in srgb, var(--sod-navy), transparent 95%);
}

.pc-specs__td-full {
  font-weight: 600;
  color: var(--sod-navy);
}

.pc-specs__tr-alt td {
  background: var(--sod-light);
}

.pc-specs__tr-alt .pc-specs__td-lbl {
  background: color-mix(in srgb, var(--sod-navy), transparent 93%);
}

.pc-specs__tr-hl td {
  background: color-mix(in srgb, var(--sod-blue), transparent 91%);
  font-weight: 600;
  color: var(--sod-navy);
}

.pc-specs__tr-hl .pc-specs__td-lbl {
  background: color-mix(in srgb, var(--sod-navy), transparent 90%);
}

.pc-specs__tbl-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .78rem;
  color: var(--sod-text);
  opacity: .65;
  padding: 11px 16px;
  background: var(--sod-light);
  border-top: 1px solid var(--sod-border);
  margin: 0;
}

.pc-specs__tbl-note i {
  color: var(--sod-blue);
  flex-shrink: 0;
  margin-top: 1px;
}


/*=================================================================
  BLOCK 8 — PERFECT INTEGRATION
=================================================================*/
.pc-integ {
  display: flex;
  min-height: 500px;
  background: var(--sod-surface);
}

.pc-integ__img-col {
  position: relative;
  width: 48%;
  flex-shrink: 0;
  overflow: hidden;
}

.pc-integ__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right gradient blends image — PDF p13 technique */
.pc-integ__grad-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--sod-surface) 100%);
}

.pc-integ__grad-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, .08) 100%);
}

/* SODIMAS stamp */
.pc-integ__stamp {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  letter-spacing: .12em;
  pointer-events: none;
  user-select: none;
}

.pc-integ__text {
  flex: 1;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--sod-border);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.pc-integ__types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.pc-integ__types span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--sod-navy);
  background: var(--sod-accent-bg);
  border: 1px solid var(--sod-accent-bd);
  border-radius: 6px;
  padding: 7px 13px;
}

.pc-integ__types span i {
  color: var(--sod-blue);
}

.pc-integ__machines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-integ__mt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--sod-light);
  border: 1px solid var(--sod-border);
  border-radius: 8px;
}

.pc-integ__mt-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--sod-accent-bg);
  border: 1px solid var(--sod-accent-bd);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-integ__mt-icon i {
  color: var(--sod-blue);
  font-size: 1rem;
}

.pc-integ__mt h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--sod-navy);
  margin-bottom: 3px;
}

.pc-integ__mt p {
  font-size: .8rem;
  color: var(--sod-text);
  opacity: .7;
  line-height: 1.55;
  margin: 0;
}


/*=================================================================
  BLOCK 9 — MODULAR OPTIONS
=================================================================*/
.pc-modular {
  background: var(--sod-light);
  padding: 4.5rem 0;
}

.pc-modular__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pc-modular__h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--sod-navy);
  line-height: 1.2;
  margin-bottom: .6rem;
  letter-spacing: -.03em;
}

.pc-modular__h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sod-blue);
}

.pc-modular__head p {
  font-size: .9375rem;
  color: var(--sod-text);
  opacity: .7;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Finish cards — PDF p17 */
.pc-modular__finishes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}

.pc-modular__finish {
  background: var(--sod-surface);
  border: 1px solid var(--sod-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.pc-modular__finish:hover {
  box-shadow: 0 8px 28px rgba(16, 42, 73, .1);
  transform: translateY(-3px);
}

.pc-mf__render {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pc-mf__wall {
  flex: 1;
}

.pc-mf__door {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 24px;
  width: 45%;
  border-left: 2px solid rgba(0, 0, 0, .15);
}

.pc-mf__floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
}

.pc-mf__lbl {
  position: absolute;
  bottom: 28px;
  left: 10px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
  background: rgba(255, 255, 255, .65);
  padding: 2px 7px;
  border-radius: 3px;
}

.pc-modular__finish h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--sod-navy);
  padding: .875rem 1rem .2rem;
}

.pc-modular__finish p {
  font-size: .775rem;
  color: var(--sod-text);
  opacity: .6;
  padding: 0 1rem .875rem;
  line-height: 1.5;
  margin: 0;
}

/* Operating panel row */
.pc-modular__opanel {
  background: var(--sod-navy);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.pc-modular__op-text {
  flex: 1;
}

.pc-modular__op-text h5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.pc-modular__op-text p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin: 0;
}

.pc-modular__op-panels {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* Panel mockups — PDF p18 */
/* .pc-op {
  width: 68px; border-radius: 10px; padding: 10px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.pc-op--dark { background: linear-gradient(180deg,#1a1a1a,#2d2d2d); height: 200px; border: 1px solid rgba(255,255,255,.08); }
.pc-op--silver { background: linear-gradient(180deg,#b0b0b0,#d0d0d0); height: 180px; border: 1px solid #aaa; }
.pc-op--gold { background: linear-gradient(180deg,#c8a44a,#e0bc6a); height: 190px; border: 1px solid #b8943a; }
.pc-op--touch { height: 175px; }
.pc-op__screen {
  font-family: 'Ubuntu',sans-serif; font-size: 1rem; font-weight: 700; color: #fff;
  background: rgba(0,0,0,.4); width: 100%; text-align: center;
  padding: 4px 0; border-radius: 4px;
}
.pc-op__screen.light { background: rgba(0,0,0,.12); color: #333; }
.pc-op__brand { font-size: .38rem; letter-spacing: .1em; color: rgba(255,255,255,.4); text-align: center; }
.pc-op__brand.light { color: rgba(0,0,0,.35); }
.pc-op__btns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; width: 100%; margin-top: auto;
}
.pc-op__btns span {
  display: block; font-size: .5rem; text-align: center;
  color: rgba(255,255,255,.5); padding: 3px 0;
  background: rgba(255,255,255,.1); border-radius: 3px;
}
.pc-op__btns.light span { background: rgba(0,0,0,.1); color: rgba(0,0,0,.4); }
.pc-op__touch-screen {
  background: rgba(0,0,0,.5); border-radius: 6px;
  width: 100%; padding: 8px 4px; text-align: center; margin-bottom: auto;
}
.pc-op__ts-big {
  font-family: 'Ubuntu',sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1;
}
.pc-op__ts-info { font-size: .4rem; color: rgba(255,255,255,.5); margin-top: 2px; } */

.pc-modular__op-img {
  width: 100%;
  max-width: 420px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}


/*=================================================================
  BLOCK 10 — CTA (BACK COVER)
=================================================================*/
.pc-cta {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.pc-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pc-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.35);
}

.pc-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 42, 73, .9) 0%, rgba(20, 82, 157, .78) 100%);
}

.pc-cta__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 5px;
  z-index: 3;
}

.pc-cta__bar-blue {
  flex: 2;
  background: var(--sod-blue);
}

.pc-cta__bar-red {
  flex: 1;
  background: var(--sod-red);
}

.pc-cta__body {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

/* Warranty badge — PDF back cover */
.pc-cta__wb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: .6rem 1.4rem;
  margin-bottom: 1.5rem;
}

.pc-cta__wb-num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pc-cta__wb-txt {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  line-height: 1.35;
}

.pc-cta__eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1rem;
}

.pc-cta__h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.pc-cta__p {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pc-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.pc-cta__btn-p {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--sod-navy);
  font-family: 'Ubuntu', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 6px;
  transition: background .25s, transform .2s;
}

.pc-cta__btn-p:hover {
  background: var(--sod-light);
  transform: translateY(-2px);
  color: var(--sod-navy);
}

.pc-cta__btn-s {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  padding: .9rem 2.2rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: all .25s;
}

.pc-cta__btn-s:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-2px);
}

.pc-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.pc-cta__trust i {
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
}

.pc-cta__trust .sep {
  color: rgba(255, 255, 255, .25);
}

/* SODIMAS footer address — PDF back cover */
.pc-cta__sodimas-foot {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pc-cta__sf-brand {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .12em;
}

.pc-cta__sf-addr {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
}

.pc-cta__sf-link {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}

.pc-cta__sf-link:hover {
  color: rgba(255, 255, 255, .75);
}


/*=================================================================
  RESPONSIVE
=================================================================*/
@media (max-width: 991px) {

  .pc-innov,
  .pc-landing,
  .pc-qi,
  .pc-integ {
    flex-direction: column;
  }

  .pc-innov__img-col,
  .pc-landing__img-col,
  .pc-qi__img-col,
  .pc-integ__img-col {
    width: 100%;
    height: 280px;
  }

  .pc-innov__img-grad {
    background: linear-gradient(to bottom, transparent 45%, var(--sod-surface) 100%);
  }

  .pc-landing__grad-r {
    background: linear-gradient(to bottom, transparent 55%, var(--sod-surface) 100%);
  }

  .pc-qi__img-grad {
    background: linear-gradient(to bottom, transparent 45%, var(--sod-surface) 100%);
  }

  .pc-integ__grad-r {
    background: linear-gradient(to bottom, transparent 55%, var(--sod-surface) 100%);
  }

  .pc-qi__text,
  .pc-integ__text {
    border: 1px solid var(--sod-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
  }

  .pc-innov__text-col {
    border-right: none;
    border: 1px solid var(--sod-border);
    border-top: none;
  }

  .pc-cabin__grid {
    grid-template-columns: 1fr;
  }

  .pc-ann {
    display: none;
  }

  .pc-cabin__render {
    margin: 0 auto;
    max-width: 360px;
  }

  .pc-specs__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-modular__finishes {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-modular__opanel {
    flex-direction: column;
  }

  .pc-modular__op-panels {
    justify-content: center;
  }

  .pc-qi__feats {
    grid-template-columns: 1fr;
  }

  .pc-landing__text {
    padding: 2.5rem 2rem;
  }

  .pc-innov__text-col {
    padding: 2.5rem 2rem;
  }

  .pc-qi__text {
    padding: 2.5rem 2rem;
  }

  .pc-integ__text {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .pc-cover {
    min-height: 640px;
  }

  .pc-card {
    margin-top: 1.5rem;
  }

  .pc-specs__cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pc-modular__finishes {
    grid-template-columns: 1fr 1fr;
  }

  .pc-cabin__grid {
    gap: 1.5rem;
  }

  .pc-eco {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575px) {
  .pc-specs__cards {
    grid-template-columns: 1fr;
  }

  .pc-modular__finishes {
    grid-template-columns: 1fr 1fr;
  }

  .pc-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .pc-cover__body .row {
    min-height: 580px !important;
  }

  .pc-landing__panels {
    gap: 5px;
  }
}




/* ===== Partners Section ===== */
.partners .partner-card {
  background: var(--surface-color, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.partners .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.partners .partner-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.partners .partner-logo {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partners .partner-card:hover .partner-logo {
  filter: grayscale(0%);
}

.partners .partner-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.partners .partner-desc {
  font-size: 0.9rem;
  color: var(--secondary-color, #6c757d);
  margin-bottom: 1rem;
}

.partners .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.projects-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.projects-table thead {
  background: #102a49;
  color: #fff;
}

.projects-table th {
  padding: 14px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.projects-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #444;
}

.projects-table tbody tr:hover {
  background: #f5f8fc;
}

/* Status badges */
.status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.completed {
  background: #e6f7ee;
  color: #1a7f4b;
}

.status-badge.ongoing {
  background: #fff4e5;
  color: #b76e00;
}

.status-badge.pending {
  background: #eef1f5;
  color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .projects-table thead {
    display: none;
  }

  .projects-table,
  .projects-table tbody,
  .projects-table tr,
  .projects-table td {
    display: block;
    width: 100%;
  }

  .projects-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .projects-table td {
    border: none;
    padding: 8px 10px;
    padding-left: 50%;
    position: relative;
  }

  .projects-table td:before {
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: 600;
    color: #102a49;
  }

  .projects-table td:nth-of-type(1):before {
    content: "No.";
  }

  .projects-table td:nth-of-type(2):before {
    content: "Project";
  }

  .projects-table td:nth-of-type(3):before {
    content: "Client";
  }

  .projects-table td:nth-of-type(4):before {
    content: "Location";
  }

  .projects-table td:nth-of-type(5):before {
    content: "Equipment";
  }

  .projects-table td:nth-of-type(6):before {
    content: "Capacity";
  }

  .projects-table td:nth-of-type(7):before {
    content: "Status";
  }
}

/* ── Partners Parallax ── */
.partners-parallax {
    position: relative;
    background-image: url('/static/images/sodimasbg.png'); /* 🔁 change to your image */
    background-attachment: fixed;       /* sticky/parallax effect */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    min-height: 90vh;
}

/* Dark overlay so content stays readable */
.partners-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60); /* adjust darkness: 0.4 lighter, 0.75 darker */
    z-index: 0;
}

/* Lift content above overlay */
.partners-parallax .section-title,
.partners-parallax .container {
    position: relative;
    z-index: 1;
}

/* Make text white so it reads on dark overlay */
.partners-parallax .section-title h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  padding: 0;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #fff;
}

.partners-parallax .section-title p {
    color: #fff;
}

.partners-parallax .partner-card {
    /* background: rgba(255, 255, 255, 0.08); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-parallax .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.partners-parallax .partner-info h4,
.partners-parallax .partner-desc {
    color: var(--sod-text);
}

.partners-parallax .partner-badge {
    color: #14529D;
}

/* ── Fallback for mobile (fixed attachment doesn't work well on iOS) ── */
@media (max-width: 768px) {
    .partners-parallax {
        background-attachment: scroll;
    }
}