@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --c-bg: #0f1011;
  --c-bg-2: #15171a;
  --c-panel: rgba(255, 255, 255, 0.06);
  --c-panel-2: rgba(255, 255, 255, 0.08);
  --c-border: rgba(255, 255, 255, 0.18);
  --c-text: #f4f4f4;
  --c-muted: #b9bcc1;
  --c-accent: #d9d9d9;
  --c-hover: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body.ui {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

body.ui a {
  color: inherit;
  text-decoration: none;
}

body.ui img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Cinematic */
.vip-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vip-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.vip-header.is-scrolled {
  background: rgba(0,0,0,0.78);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.vip-logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px 4px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
}
.vip-logo img {
  height: 46px;
  width: auto;
}

.vip-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.vip-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.vip-menu__item {
  position: relative;
}
.vip-menu__item.has-sub {
  padding-bottom: 0;
}
.vip-menu__item.has-sub::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}
.vip-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.2s ease;
  opacity: 0.95;
  text-align: center;
}
.vip-header .vip-menu__link--header {
  color: #fff !important;
}
.vip-header .vip-menu__link--header:hover,
.vip-header .vip-menu__link--header.active {
  color: #fff !important;
}
.vip-menu__link--icon {
  font-size: 20px;
  letter-spacing: 0;
}
.vip-menu__link--icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.vip-menu__link:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.vip-menu__link.active {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.vip-menu__item.has-sub > .vip-menu__link::after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.6;
}

.vip-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px;
  min-width: 520px;
  display: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.vip-menu__item.has-sub:hover .vip-submenu {
  display: block;
}
.vip-submenu__title {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.vip-submenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
}
.vip-submenu__title--header {
  color: #fff !important;
}
.vip-submenu__link {
  color: #fff !important;
  font-size: 14px;
  transition: color 0.2s ease;
}
.vip-submenu__link:hover {
  color: #ff6a2a !important;
}

.vip-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vip-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 600;
  color: #f2f2f2;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.vip-lang__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
}
.vip-lang__btn span.active {
  color: #fff;
}
.vip-lang__btn span:not(.active) {
  color: #ff6a2a;
}
.vip-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.vip-menu-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.28);
}
.vip-menu-btn svg rect {
  fill: #ff6a2a;
}

@media (max-width: 991px) {
  .vip-nav {
    display: none;
  }
}

/* Sidebar Overlay Menu */
.side-bar {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  height: auto;
  max-height: 80vh;
  background: rgba(12, 12, 12, 0.85);
  color: #f5f5f5;
  z-index: 999;
  transition: top 0.6s ease, opacity 0.6s ease;
  padding: 32px 36px;
  overflow-y: auto;
  opacity: 0;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.side-bar.open {
  top: 90px;
  opacity: 1;
}
.side-bar .close-icon-menu {
  position: absolute;
  right: 24px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.side-bar .inner-main-wrapper-desk {
  padding-top: 30px;
}
.side-bar .mobile-menu-main {
  display: none;
}
.side-bar .thumbnail img {
  height: 52px;
  width: auto;
}
.side-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}
.side-grid__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 20px;
}
.side-grid__col + .side-grid__col {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}
.side-grid__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding: 6px 0;
  transition: color 0.2s ease, background 0.2s ease;
}
.side-grid__link:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
}

#anywhere-home {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.2s ease;
}
body.sidebar-open #anywhere-home {
  opacity: 1;
  pointer-events: auto;
}
body.sidebar-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .side-bar {
    width: 92vw;
    max-height: 85vh;
    padding: 24px;
  }
  .side-bar .inner-main-wrapper-desk {
    display: none;
  }
  .side-bar .mobile-menu-main {
    display: block;
  }
  .side-grid {
    grid-template-columns: 1fr;
  }
  .side-grid__col + .side-grid__col {
    border-left: none;
    padding-left: 0;
  }
  .side-grid__link {
    font-size: 18px;
  }
}

/* Basic section spacing */
section {
  padding: 60px 0;
}

/* Hero - Cinematic */
.home-hero-video {
  position: relative;
  min-height: 70vh;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  background: #0b0b0b;
}
.home-hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(1.05);
}
.home-hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.06), rgba(0,0,0,0.22) 60%),
    linear-gradient(120deg, rgba(20,20,20,0.32), rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.04)),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.22) 100%);
  z-index: 1;
}
.home-hero-video__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-top: 80px;
  animation: heroFade 0.9s ease forwards;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.hero-subtitle {
  max-width: 640px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.hero-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.2s ease;
}
.hero-btn--primary {
  background: #fff;
  color: #111;
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
}
.hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.32);
}
.hero-btn--ghost {
  background: transparent;
  color: #fff;
}
.hero-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .home-hero-video {
    min-height: 60vh;
    height: 60vh;
  }
  .home-hero-video__content {
    padding-top: 60px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About - Image/Video Left, Text Right (White) */
.rts-about-area-six {
  background: #fff;
}
.rts-about-area-six .row {
  align-items: center;
}
@media (min-width: 992px) {
  .rts-about-area-six .row {
    display: flex;
    gap: 40px;
  }
  .rts-about-area-six .col-lg-6:first-child {
    order: 2;
  }
  .rts-about-area-six .col-lg-6:last-child {
    order: 1;
  }
}
.about-right-inner-five {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.title-area-style-six-left .pre {
  color: #777;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.title-area-style-six-left .title {
  font-size: clamp(26px, 3vw, 42px);
  margin-top: 12px;
  color: #111;
}
.about-right-inner-five .disc-1 {
  color: #4a4a4a;
  margin-top: 14px;
}
.about-video-stack {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ededed;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.about-video-stack video,
.about-video-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rts-btn.btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
}
.rts-btn.btn-primary:hover {
  background: #333;
  border-color: #333;
}

/* ---- Light Theme Overrides + Layout Grid ---- */
body.ui {
  background: #f5f5f5;
  color: #111;
}
/* DEBUG: remove after confirmation */
body.ui p {
  color: #4a4a4a;
}
body.ui h1,
body.ui h2,
body.ui h3,
body.ui h4,
body.ui h5,
body.ui h6 {
  color: #111;
  margin: 0 0 12px;
}

.section-eyebrow,
.title-style-center .pre-title,
.title-area-style-six-left .pre {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}
.section-title,
.title-style-center .title,
.title-area-style-six-left .title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #111;
}
.section-subtitle {
  color: #666;
  margin-top: 8px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.row > [class*="col-"] {
  padding: 12px;
  width: 100%;
}
@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
  .col-md-4 { width: 33.3333%; }
  .col-md-6 { width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-8 { width: 66.6666%; }
  .col-lg-12 { width: 100%; }
  .text-lg-end { text-align: right; }
}
.text-center { text-align: center; }

section, .rts-section-gap, .rts-section-gapBottom {
  padding: 70px 0;
}

/* Hero stays dark */
.hero-eyebrow,
.hero-title,
.hero-subtitle {
  color: #fff;
}

/* About layout like example: video left, text right */
.rts-about-area-six {
  background: #fff;
}
@media (min-width: 992px) {
  .rts-about-area-six .row {
    display: flex;
    gap: 40px;
  }
  .rts-about-area-six .col-lg-6:first-child { order: 2; }
  .rts-about-area-six .col-lg-6:last-child { order: 1; }
}
.about-video-stack {
  border: 1px solid #ededed;
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}
.title-area-style-six-left .pre {
  color: #777;
}
.title-area-style-six-left .title {
  color: #111;
}
.about-right-inner-five .disc-1 {
  color: #4a4a4a;
}
.rts-btn.btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
}
.rts-btn.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.rts-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}
.rts-btn:hover,
.btn:hover {
  background: #333;
  border-color: #333;
}
.btn-outline-secondary {
  background: transparent;
  border-color: #111;
  color: #111;
}
.btn-outline-secondary:hover {
  background: #111;
  color: #fff;
}

/* Forms */
.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #111;
}
.form-control:focus {
  outline: none;
  border-color: #111;
}

/* Cards/blocks light */
.single-service-area,
.singe-serice-style-two,
.certificate-card,
.project--style-six,
.category-card,
.single-brand {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* Section headings */
.title-style-center {
  text-align: center;
  margin-bottom: 24px;
}
.title-style-center .pre-title {
  display: inline-block;
  color: #777;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.title-style-center .title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #111;
}

/* Values */
.rts-service-area-six .single-service-area {
  text-align: left;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rts-service-area-six .single-service-area .icon i {
  font-size: 28px;
  color: #111;
}
.rts-service-area-six .single-service-area:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.rts-service-area-six .single-service-area .title {
  font-weight: 700;
  margin: 10px 0 6px;
}
.rts-service-area-six .single-service-area p {
  color: #555;
}

/* About page */
.about-page .about-main-image .thumbnail img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.about-page .about-content {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}
.about-page .rts-gallery-area {
  padding: 70px 0;
  border-top: 1px solid #f0f0f0;
}
.about-page .rts-gallery-area:first-of-type {
  border-top: none;
}
.about-page .rts-gallery-area:nth-of-type(even) {
  background: #fbfbfb;
}
.about-page .title-style-center .pre-title {
  letter-spacing: 0.3em;
  color: #8a8a8a;
}
.about-page .title-style-center .title {
  font-size: clamp(26px, 3vw, 40px);
}
.about-page .title-style-center .disc {
  max-width: 760px;
  margin: 12px auto 0;
  color: #666;
}
.about-page .about-main-grid,
.about-page .about-features-grid,
.about-page .vision-values-grid,
.about-page .about-images-grid,
.about-page .team-grid,
.about-page .partners-grid,
.about-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-page .about-features-grid,
.about-page .team-grid,
.about-page .partners-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-page .partners-grid .p-3 {
  padding: 10px 12px !important;
  border-radius: 12px !important;
  border: 1px solid #ededed !important;
  background: #fff !important;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 110px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-page .partners-grid .p-3:hover {
  transform: translateY(-2px);
  border-color: #c9c9c9;
}
.about-page .partners-grid img {
  max-height: 70px !important;
  max-width: 70% !important;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.about-page .partners-grid .p-3:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 992px) {
  .about-page .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .about-page .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.about-page .contact-grid {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
@media (max-width: 992px) {
  .about-page .about-main-grid,
  .about-page .about-features-grid,
  .about-page .vision-values-grid,
  .about-page .about-images-grid,
  .about-page .team-grid,
  .about-page .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .about-page .about-main-grid,
  .about-page .about-features-grid,
  .about-page .vision-values-grid,
  .about-page .about-images-grid,
  .about-page .team-grid,
  .about-page .partners-grid {
    grid-template-columns: 1fr;
  }
}
.about-page .about-feature-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.about-page .about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.about-page .about-feature-card .icon i {
  font-size: 22px;
  color: #111;
}
.about-page .about-feature-card h6 {
  font-weight: 700;
  margin: 10px 0 6px;
}
.about-page .about-feature-card p {
  color: #555;
}
.about-page .about-feature-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}
.about-page .about-features-grid {
  gap: 22px;
}
.vision-values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f2 100%);
  position: relative;
  overflow: hidden;
}
.vision-values-section::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.vision-values-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.06);
}
.vision-values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.vision-values-card .card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.vision-card .card-icon {
  background: linear-gradient(135deg, #c08a5a, #8c5a2b);
  color: #fff;
}
.values-card .card-icon {
  background: linear-gradient(135deg, #2f5f3a, #1f3f27);
  color: #fff;
}
.vision-values-card .card-icon i {
  font-size: 28px;
  color: #fff;
}
.vision-values-card .card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  position: relative;
  padding-bottom: 10px;
}
.vision-values-card .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #c08a5a;
}
.values-card .card-title::after {
  background: #2f5f3a;
}
.vision-values-card .card-text {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.values-list li:last-child {
  border-bottom: none;
}
.values-list .value-number {
  font-size: 12px;
  font-weight: 700;
  color: #2f5f3a;
  background: #eef5ef;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.values-list .value-text {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-top: 2px;
}
/* About images masonry */
.about-images-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.about-image-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
  border: 1px solid #ececec;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f7f7f7;
  transition: transform 0.3s ease;
}
.about-image-card--tall img {
  height: 100%;
}
.about-image-card {
  height: 320px;
}
.about-image-card--tall {
  height: 320px;
}
.about-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.16);
}
.about-image-card:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .about-images-masonry {
    grid-template-columns: 1fr;
  }
  .about-image-card img,
  .about-image-card--tall img {
    height: 260px;
  }
}
@media (max-width: 768px) {
  .about-page .about-main-image .thumbnail img,
  .about-images-section .about-side-image .thumbnail img {
    height: 280px;
  }
}

/* Breadcrumb */
.breadcrumb-area-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding: 180px 0 80px;
  color: #fff;
  min-height: 320px;
}
.breadcrumb-area-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.bread-crumb-area-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.breadcrumb-top {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.breadcrumb-top a,
.breadcrumb-top .breadcrumb-sep {
  color: #fff;
  opacity: 0.9;
}
.bottom-title .title {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
}
@media (max-width: 992px) {
  .breadcrumb-area-bg {
    margin-top: 0;
    padding: 160px 0 70px;
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .breadcrumb-area-bg {
    margin-top: 0;
    padding: 140px 0 60px;
    min-height: 260px;
  }
  .breadcrumb-top {
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item__media {
  position: relative;
  display: block;
}
.gallery-item__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.gallery-item:hover .gallery-item__media img {
  transform: scale(1.04);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item__media img {
    height: 220px;
  }
}

/* Blog */
.rts-blog-area {
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.blog-card__media {
  position: relative;
  display: block;
}
.blog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}
.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17,17,17,0.85);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.blog-card__body {
  padding: 16px;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #777;
  font-size: 12px;
  margin-bottom: 8px;
}
.blog-card__meta i {
  margin-right: 6px;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.blog-card__excerpt {
  color: #666;
  font-size: 13px;
  margin: 0 0 14px;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
}
.blog-empty {
  background: #fff;
  border: 1px dashed #e2e2e2;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: #666;
}
.blog-empty__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card__media img {
    height: 200px;
  }
}

/* Blog details */
.rts-blog-details-area {
  background: #fff;
}
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.blog-detail-layout > .col-lg-8,
.blog-detail-layout > .col-lg-4 {
  width: 100%;
}
.blog-detail-head__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
}
.blog-detail-head__title {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 8px 0 12px;
}
.blog-detail-head__excerpt {
  color: #666;
}
.blog-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.blog-detail-meta__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
}
.blog-detail-meta__item i {
  font-size: 18px;
  color: #111;
}
.blog-detail-media img {
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.blog-detail-content {
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}
.blog-detail-content img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 16px 0;
}
.blog-detail-content p {
  margin-bottom: 12px;
}
.blog-tags .badge {
  border-radius: 999px;
  padding: 6px 10px;
}
.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-share__list {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-share__list a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #111;
  background: #111;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.blog-share__list a i {
  color: #fff !important;
}
.blog-share__list a:hover {
  background: #333;
}
.blog-sidebar .sidebar-widget {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  padding: 16px;
}
.blog-sidebar .sidebar-widget .contact-form-conatct-page {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.blog-sidebar .sidebar-widget .contact-form-conatct-page input,
.blog-sidebar .sidebar-widget .contact-form-conatct-page textarea,
.blog-sidebar .sidebar-widget .contact-form-conatct-page select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: #111;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-sidebar .sidebar-widget .contact-form-conatct-page textarea {
  min-height: 120px;
}
.blog-sidebar .sidebar-widget .contact-form-conatct-page .rts-btn.btn-primary {
  width: 100%;
  border-radius: 999px;
  padding: 12px 18px;
}
.blog-sidebar .sidebar-widget.bg-dark {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
}
.blog-sidebar .sidebar-widget.bg-dark p {
  color: rgba(255,255,255,0.75);
}
.blog-sidebar .sidebar-widget.bg-dark .rts-btn {
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 10px 16px;
}
.blog-sidebar .sidebar-widget.bg-dark .rts-btn:hover {
  background: #e6e6e6;
}
.blog-sidebar .input-group {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}
.blog-sidebar .input-group .form-control {
  border-radius: 12px;
}
.blog-sidebar .input-group .btn {
  border-radius: 12px;
  padding: 0;
}
.blog-sidebar .widget-title {
  font-weight: 700;
}
.blog-sidebar .recent-post .thumbnail img {
  border-radius: 10px !important;
}
.blog-comment-form {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}
.blog-comment-form .btn-primary {
  border-radius: 999px;
  padding: 10px 18px;
}
.signle-blog-style-one {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.signle-blog-style-one:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.signle-blog-style-one .thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.signle-blog-style-one .inner-content {
  padding: 16px;
}
@media (max-width: 992px) {
  .blog-detail-meta {
    grid-template-columns: 1fr;
  }
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
}
/* Products index */
.products-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f2 100%);
}
.products-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.products-layout > aside,
.products-layout > .col-lg-9 {
  width: 100%;
}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 18px;
}
.products-toolbar__count {
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 6px 10px;
  border-radius: 999px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.products-sidebar {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}
.products-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.products-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 13px;
  transition: all 0.2s ease;
}
.products-sidebar__link:hover,
.products-sidebar__link.active {
  border-color: #111;
  background: #f5f5f5;
}
.products-sidebar__count {
  font-size: 11px;
  background: #111;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.product-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.product-card__content {
  padding: 16px;
}
.product-card__meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}
.product-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0;
  color: #111;
}
.product-card__desc {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #111;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.2s ease;
}
.product-card__cta:hover {
  background: #111;
  color: #fff;
}
@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .product-card__media img {
    height: 200px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-content-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  margin: 0;
}
.contact-content-layout > [class*="col-"] {
  padding: 0;
  width: auto;
}
.contact-info-area-start .top {
  text-align: center;
  margin-bottom: 30px;
}
.contact-info-area-start .top .title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-area-start .top .disc {
  max-width: 760px;
  margin: 0 auto;
  color: #666;
}
.contact-stack {
  display: grid;
  gap: 18px;
}
.left-contact,
.contact-info-mid {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.left-contact:hover,
.contact-info-mid:hover,
.contact-form-conatct-page:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.left-contact .top,
.contact-info-mid .top-contact,
.contact-form-conatct-page .top-contact {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.left-contact .disc {
  color: #555;
  line-height: 1.7;
}
.contact-info-mid .single-information {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-mid .single-information:last-child {
  border-bottom: none;
}
.contact-form-conatct-page {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.left-contact .rts-social-style-one ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.left-contact .rts-social-style-one li {
  margin: 0;
}
.left-contact .rts-social-style-one a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  transition: all 0.2s ease;
}
.left-contact .rts-social-style-one a:hover {
  background: #333;
  border-color: #333;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form-conatct-page input,
.contact-form-conatct-page textarea,
.contact-form-conatct-page select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: #111;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-conatct-page textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-conatct-page input:focus,
.contact-form-conatct-page textarea:focus,
.contact-form-conatct-page select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}
.contact-form-conatct-page .rts-btn.btn-primary {
  border-radius: 999px;
  padding: 12px 20px;
}
.branch-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}
@media (max-width: 992px) {
  .contact-content-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-content-layout {
    grid-template-columns: 1fr;
  }
}

/* Product detail */
.product-detail-page {
  background: #fff;
}
.rts-product-details-area .container {
  max-width: 1180px;
}
.rts-product-details-area .row.g-5 {
  align-items: start;
}
.product-detail__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.product-detail__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.product-detail__content {
  padding: 6px 2px;
}
.product-detail__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}
.product-detail__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin: 4px 0 12px;
}
.product-detail__desc {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 18px;
}
.product-detail__desc p {
  margin-bottom: 10px;
}
.product-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #ececec;
}
.product-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #111;
  transition: all 0.2s ease;
  min-width: 220px;
}
.product-detail__btn--primary {
  background: #111;
  color: #fff !important;
}
.product-detail__btn--primary:hover {
  background: #333;
  border-color: #333;
}
.product-detail__btn--outline {
  background: #fff;
  color: #111;
}
.product-detail__btn--outline:hover {
  background: #111;
  color: #fff;
}
.product-detail__share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  margin-top: 18px;
  color: #666;
  font-size: 13px;
}
.product-detail__share-links {
  display: inline-flex;
  gap: 10px;
}
.product-detail__share-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #111;
  transition: all 0.2s ease;
}
.product-detail__share-links a i {
  color: #fff !important;
}
.product-detail__share-links a:hover {
  background: #333;
  color: #fff;
}
.product-detail__share-copy {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #111;
  transition: all 0.2s ease;
  cursor: pointer;
}
.product-detail__share-copy:hover {
  background: #333;
}
.product-detail__share-copy i {
  color: #fff;
}

/* Related products */
.product-detail-related {
  margin-top: 70px;
}
.product-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 992px) {
  .product-detail-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .product-detail-related__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .product-detail__media img {
    height: 300px;
  }
  .product-detail__actions {
    flex-direction: column;
  }
  .product-detail__btn {
    width: 100%;
  }
}

/* About page refinements */
.about-page .about-content p {
  margin-bottom: 12px;
}
.about-page .single-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-page .single-gallery-item .content {
  background: #fff;
  border-top: 1px solid #efefef;
}
.about-page .team-grid .single-gallery-item .thumbnail img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  background: #f4f4f4;
}
.about-page .team-grid .single-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.about-page .team-grid .single-gallery-item:hover .thumbnail img {
  transform: scale(1.04);
}
.about-page .team-grid .single-gallery-item .content {
  padding: 14px 16px;
  text-align: center;
}
.about-page .team-grid .single-gallery-item .content .title {
  font-weight: 700;
  margin: 0 0 4px;
}
.about-page .team-grid .single-gallery-item .content p {
  margin: 0;
  color: #666;
  font-size: 13px;
}

/* Team page */
.ekip-page .ekip-grid {
  margin-top: 10px;
}
.team-page-grid > [class*="col-"] {
  width: 100%;
}
@media (min-width: 992px) {
  .team-page-grid > [class*="col-"] {
    width: 33.3333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-page-grid > [class*="col-"] {
    width: 50%;
  }
}
.team-page-grid .single-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-page-grid .single-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(0,0,0,0.14);
}
.team-page-grid .single-gallery-item .thumbnail {
  background: #f4f4f4;
}
.team-page-grid .single-gallery-item .thumbnail img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px 20px 0 0;
}
.team-page-grid .single-gallery-item .content {
  padding: 16px 18px 20px;
  text-align: center;
  border-top: 1px solid #efefef;
  background: #fff;
}
.team-page-grid .single-gallery-item .content .title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.team-page-grid .single-gallery-item .content p {
  margin: 0;
  color: #777;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ekip-page .single-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.ekip-page .single-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.ekip-page .single-gallery-item .thumbnail img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f4f4f4;
  border-radius: 18px 18px 0 0;
}
.ekip-page .single-gallery-item .thumbnail {
  background: #f4f4f4;
}
.ekip-page .single-gallery-item .content {
  padding: 16px 18px 20px;
  text-align: center;
  border-top: 1px solid #efefef;
  border-radius: 0 0 18px 18px;
  background: #fff;
}
.ekip-page .single-gallery-item .content .title {
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.ekip-page .single-gallery-item .content p {
  margin: 0;
  color: #777;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ekip-page .single-gallery-item .content .bio {
  margin-top: 8px;
  color: #666;
  font-size: 12px;
}
.ekip-page .single-gallery-item .content ul,
.ekip-page .single-gallery-item .content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* About contact form */
.about-page .contact-form-conatct-page {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.about-page .contact-form-conatct-page .row.g-3 {
  row-gap: 14px;
}
.about-page .contact-form-conatct-page input,
.about-page .contact-form-conatct-page textarea,
.about-page .contact-form-conatct-page select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: #111;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-page .contact-form-conatct-page input:focus,
.about-page .contact-form-conatct-page textarea:focus,
.about-page .contact-form-conatct-page select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}
.about-page .contact-form-conatct-page textarea {
  min-height: 140px;
  resize: vertical;
}
.about-page .contact-form-conatct-page .rts-btn.btn-primary {
  border-radius: 999px;
  padding: 12px 24px;
  width: 100%;
}
.about-page .contact-form-conatct-page .form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Services */
.singe-serice-style-two .thumbnail {
  display: block;
}
.singe-serice-style-two .thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.singe-serice-style-two .body {
  padding: 18px;
}
.singe-serice-style-two .icon-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.singe-serice-style-two .icon-area span {
  font-weight: 700;
  color: #111;
}

/* Projects */
.project--style-six .thumbnail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.project--style-six .inner-content {
  padding: 16px;
}

/* Certificates */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 992px) {
  .certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}
.certificate-card {
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 28px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-thumb img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 12px;
  padding: 8px;
}
.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

/* Map */
.home-map-full {
  background: #fff;
  padding-bottom: 70px;
}
.home-map-embed--full iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.home-map-embed--full,
#map-home,
#map {
  position: relative;
  z-index: 1;
}
.leaflet-container,
.leaflet-pane,
.leaflet-control {
  z-index: 1;
}

/* Partners slider */
.brand-main-wrapper-one .single-brand {
  padding: 14px;
}

@media (max-width: 768px) {
  .singe-serice-style-two .thumbnail img,
  .project--style-six .thumbnail img {
    height: 200px;
  }
}

/* Services */
.singe-serice-style-two {
  overflow: hidden;
}
.singe-serice-style-two .thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.singe-serice-style-two .body {
  padding: 18px;
}
.singe-serice-style-two .title {
  font-weight: 700;
  margin-bottom: 8px;
}
.singe-serice-style-two .disc {
  color: #666;
}
.arrow-btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #111;
}

/* Projects */
.project--style-six .thumbnail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.project--style-six .inner-content {
  padding: 16px;
}
.project--style-six .disc {
  color: #666;
}

/* Categories */
.category-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 50px rgba(0,0,0,0.18);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
.category-media {
  position: relative;
  aspect-ratio: 7 / 4;
  overflow: hidden;
  background: #f3f3f3;
}
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.category-card {
  display: flex;
  flex-direction: column;
}
.category-media {
  padding: 8px;
}
.category-media-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
}
.category-content {
  padding: 18px 18px 20px;
  border-top: 1px solid #efefef;
  min-height: 92px;
  text-align: center;
}
.category-content .title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #111;
  text-transform: none;
  letter-spacing: 0.01em;
}
.category-content .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.category-card:hover .category-content .cta {
  background: #111;
  color: #fff;
  transform: translateX(2px);
}

.home-categories .section-title {
  margin-top: 8px;
}
.home-categories .section-subtitle {
  margin-top: 6px;
}
.home-categories .rts-btn.btn-primary {
  border-radius: 999px;
  padding: 12px 22px;
}

/* Home about */
.home-about {
  background: #fff;
}
.home-about__media {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  background: #000;
}
.home-about__video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.home-about__content {
  padding: 6px 6px 6px 12px;
}
.home-about__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8b8b8b;
  margin-bottom: 10px;
}
.home-about__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  color: #111;
}
.home-about__text {
  margin: 0 0 18px;
  color: #4b4b4b;
  line-height: 1.7;
  font-size: 15px;
}
.home-about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid #111;
  color: #111;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  background: #fff;
  transition: all 0.2s ease;
}
.home-about__cta:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* Home catalog banner */
.home-catalog-banner {
  position: relative;
  background: url("../innovat/images/banner/01.jpg") center/cover no-repeat;
  color: #fff;
}
.home-catalog-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}
.home-catalog-banner .container {
  position: relative;
  z-index: 1;
}
.home-catalog-banner .section-title,
.home-catalog-banner .section-subtitle,
.home-catalog-banner .section-eyebrow {
  color: #fff;
}
.home-catalog-banner .section-subtitle {
  opacity: 0.9;
}
@media (min-width: 992px) {
  .home-about .row {
    display: flex;
    align-items: center;
  }
  .home-about .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .home-about__content {
    padding: 0;
  }
}

.categories-nav {
  position: absolute;
  right: 0;
  top: -56px;
  display: flex;
  gap: 10px;
}
.categories-nav button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  transition: all 0.2s ease;
}
.categories-nav button:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 767px) {
  .categories-nav {
    position: static;
    margin-top: 16px;
  }
}

/* Blog */
.rts-blog-area-six .blog-card,
.rts-blog-area-six .single-blog-card,
.rts-blog-area-six .single-blog {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* Swiper base */
.swiper {
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  flex-shrink: 0;
  width: auto;
}

/* References / Brands */
.rts-brand-area {
  padding: 60px 0 90px;
  background: #fff;
}
.rts-brand-area .title-style-center .title {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
}
.brand-main-wrapper-one {
  border-radius: 18px;
  padding: 18px;
  background: #fafafa;
  border: 1px solid #eeeeee;
  margin-bottom: 18px;
}
.mySwiperh1_brand .swiper-wrapper {
  align-items: stretch;
}
.mySwiperh1_brand .swiper-slide {
  display: flex;
  height: auto;
}
.single-brand {
  width: 100%;
  min-height: 110px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.single-brand img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.single-brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}
.single-brand:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Footer (Match Header Dark) */
.vip-footer {
  background: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.95));
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #f4f4f4;
  padding: 56px 0 36px;
}
.vip-footer__brand {
  max-width: 360px;
}
.vip-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 34px;
}
.vip-footer__logo img {
  height: 46px;
  width: auto;
}
.vip-footer__desc {
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.7;
}
.vip-footer p.vip-footer__desc {
  color: #fff !important;
}
.vip-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 240px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.55);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}
.vip-footer__cta-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.6);
}
.vip-footer__cta-btn:focus-visible {
  outline: 2px solid #ff6a2a;
  outline-offset: 2px;
}
.vip-footer__title {
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.vip-footer__col-title {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #ff7a2f;
}
.vip-footer h6.vip-footer__col-title {
  color: #ff7a2f !important;
}
.vip-footer__company {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.vip-footer__links,
.vip-footer__contact,
.vip-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vip-footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.vip-footer__hours li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}
.vip-footer__hours i {
  color: #ff7a2f;
  font-size: 14px;
}
.vip-footer__hours span {
  color: rgba(255,255,255,0.9);
}
.vip-footer__hours-text {
  color: rgba(255,255,255,0.92);
}
.vip-footer__links li,
.vip-footer__contact li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.78);
}
.vip-footer__links a,
.vip-footer__contact a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}
.vip-footer__links a:hover,
.vip-footer__contact a:hover {
  color: #fff;
}
.vip-footer__links a:hover,
.vip-footer__legal a:hover {
  color: #fff;
}
.vip-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vip-footer__social a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.02);
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s ease;
}
.vip-footer__social a:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.vip-footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.vip-footer__divider {
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.vip-footer__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.22);
}
.vip-footer__logo--divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.vip-footer__logo--divider img {
  height: 42px;
  width: auto;
}
.vip-footer__social--center {
  justify-content: center;
  gap: 18px;
  margin: 16px 0 6px;
}
.vip-footer__social--center a {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid #ff7a2f;
  color: #ff7a2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.vip-footer__social--center a:hover {
  background: #fff;
  color: #000;
}
.vip-footer__bottom p {
  margin: 0;
}
.vip-footer__bottom .vip-footer__legal {
  display: none;
}
.vip-footer__legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vip-footer__legal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.vip-footer__legal-btn:hover {
  background: #fff;
  color: #111 !important;
}
@media (max-width: 992px) {
  .vip-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vip-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .vip-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 999;
  background: #1db954;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
  font-weight: 600;
}
.whatsapp-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.whatsapp-popup.is-open {
  display: flex;
}
.whatsapp-popup__content {
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.whatsapp-popup__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.whatsapp-popup__content p {
  margin: 0 0 14px;
  color: #555;
}
.whatsapp-popup__content .form-control {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* Error Pages */
.error-shell {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.error-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 10%, rgba(255,122,47,0.22), transparent 60%),
    radial-gradient(40% 40% at 85% 20%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.92));
  z-index: 0;
}
.error-shell .container {
  position: relative;
  z-index: 1;
}
.error-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.error-copy {
  padding-right: 10px;
}
.error-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ff7a2f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.error-title {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: #fff;
}
.error-description {
  max-width: 520px;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.7;
}
.error-chip {
  color: #ff7a2f;
}
.error-shell .error-copy * {
  color: #fff;
}
.error-shell .error-chip {
  color: #ff7a2f;
}
.error-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.error-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-code {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.08);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.error-icon {
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 1;
}
.error-icon svg {
  width: 70px;
  height: 70px;
  stroke: #ff7a2f;
  stroke-width: 1.6;
  fill: none;
}
.error-shell .rts-btn.btn-border {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.error-shell .rts-btn.btn-border:hover {
  border-color: #fff;
}
.error-shell .rts-btn.btn-primary {
  background: #ff7a2f;
  border-color: #ff7a2f;
}
.error-shell .rts-btn.btn-primary:hover {
  background: #ff8c4d;
  border-color: #ff8c4d;
}
@media (max-width: 992px) {
  .error-grid {
    grid-template-columns: 1fr;
  }
  .error-visual {
    order: -1;
  }
}

/* Contact Page */
.page-contact .contact-page {
  color: #f4f4f4;
}
.page-contact .contact-hero-new {
  text-align: center;
  margin: 20px auto 30px;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(6px);
}
.page-contact .contact-hero-new__title {
  font-size: clamp(28px, 3.6vw, 44px);
  color: #fff !important;
  margin: 0 0 10px;
}
.page-contact .contact-hero-new__desc {
  color: #fff !important;
  opacity: 0.9;
  max-width: 760px;
  margin: 0 auto;
}
.page-contact .contact-card {
  background: rgba(15,16,17,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  height: 100%;
}
.page-contact .left-contact .top,
.page-contact .contact-info-mid .top-contact,
.page-contact .contact-form-conatct-page .top-contact {
  color: #ff7a2f;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}
.page-contact .left-contact .disc,
.page-contact .contact-info-mid .address,
.page-contact .contact-info-mid a,
.page-contact .contact-info-mid span {
  color: rgba(255,255,255,0.85);
}
.page-contact .left-contact a {
  color: #fff;
  font-weight: 600;
}
.page-contact .contact-social ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-contact .contact-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid #ff7a2f;
  color: #ff7a2f;
  transition: all 0.2s ease;
}
.page-contact .contact-social a:hover {
  background: #ff7a2f;
  color: #111;
}
.page-contact .contact-form-conatct-page input,
.page-contact .contact-form-conatct-page select,
.page-contact .contact-form-conatct-page textarea {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}
.page-contact .contact-form-conatct-page input::placeholder,
.page-contact .contact-form-conatct-page textarea::placeholder {
  color: rgba(255,255,255,0.6);
}
.page-contact .contact-form-conatct-page select {
  color: #fff;
}
.page-contact .contact-form-conatct-page .rts-btn.btn-primary {
  background: #ff7a2f;
  border-color: #ff7a2f;
}
.page-contact .contact-form-conatct-page .rts-btn.btn-primary:hover {
  background: #ff8c4d;
  border-color: #ff8c4d;
}
.page-contact .contact-map-wrap {
  margin-top: 60px;
}
.page-contact .contact-map {
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.page-contact .branch-card {
  background: rgba(15,16,17,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
}
.page-contact .branch-card a {
  color: #ff7a2f;
}
.whatsapp-popup__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* Back to top */
.progress-wrap {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
}
.progress-wrap::after {
  content: "↑";
  font-size: 18px;
  color: #111;
  position: absolute;
}
.progress-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-wrap path {
  fill: none;
  stroke: #111;
  stroke-width: 4;
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
  transition: stroke-dashoffset 0.2s ease;
}

/* Legal page */
.rts-legal-page-area {
  background: #f7f7f7;
}
.legal-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  padding: 28px;
}
.legal-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.legal-card__eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}
.legal-card__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #111;
}
.legal-card__meta {
  font-size: 13px;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legal-content {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin: 22px 0 12px;
  font-weight: 700;
  color: #111;
}
.legal-content p {
  margin: 0 0 14px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-content li {
  margin: 6px 0;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.legal-content table th,
.legal-content table td {
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  text-align: left;
}
.legal-content blockquote {
  margin: 18px 0;
  padding: 12px 16px;
  border-left: 3px solid #111;
  background: #fafafa;
  color: #555;
}
.legal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.legal-card .rts-btn.btn-border {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
.legal-card .rts-btn.btn-border:hover {
  background: #111;
  color: #fff;
}
@media (max-width: 768px) {
  .legal-card {
    padding: 22px;
  }
  .legal-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
