/*!
Theme Name: ombreza
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ombreza
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ombreza is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:  #172b4e;
  --ice:   #f2f9fb;
  --black: #080c12;
}

html[data-theme="dark"] {
  --bg-page:        var(--black);
  --text-primary:   var(--ice);
  --text-secondary: rgba(242, 249, 251, 0.7);
  --nav-bg-top:      rgba(8, 12, 18, 0);
  --nav-bg-scrolled: var(--navy);
  --section-bg-alt: #0f1826;
  --border-soft:    rgba(242, 249, 251, 0.18);
  --shadow-color:   rgba(201, 169, 110, 0.18);
}


html[data-theme="light"] {
  --bg-page:        var(--ice);
  --text-primary:   var(--navy);
  --text-secondary: rgba(23, 43, 78, 0.7);
  --nav-bg-top:      rgba(242, 249, 251, 0);
  --nav-bg-scrolled: var(--ice);
  --section-bg-alt: #e4eef1;
  --border-soft:    rgba(23, 43, 78, 0.18);
  --shadow-color:   rgba(23, 43, 78, 0.15);
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
   font-family: 'Segoe UI', sans-serif;
   overflow-x: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.pre-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.pre-logo {
  display: flex;
  gap: 6px;
}

.pre-logo span {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ice);
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  animation: letterIn 0.5s ease forwards;
  font-family: 'Georgia', serif;
}
.pre-logo span:nth-child(1) { animation-delay: 0.1s; }
.pre-logo span:nth-child(2) { animation-delay: 0.2s; }
.pre-logo span:nth-child(3) { animation-delay: 0.3s; }
.pre-logo span:nth-child(4) { animation-delay: 0.4s; }
.pre-logo span:nth-child(5) { animation-delay: 0.5s; }
.pre-logo span:nth-child(6) { animation-delay: 0.6s; }
.pre-logo span:nth-child(7) { animation-delay: 0.7s; }


.pre-logo span:nth-child(4) {
  color: var(--ice);
  text-shadow: 0 0 30px rgba(12, 176, 222, 0.7);
}
@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pre-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}
.pre-service {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--ice);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.pre-dot {
  color: #555;
  font-size: 1.2rem;
}
.pre-bar-wrap {
  width: min(320px, 70vw);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
}
.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ice), #f2f9fb, var(--ice));
  background-size: 200% 100%;
  animation: shimmerBar 1.5s linear infinite;
  transition: width 0.05s linear;
}
@keyframes shimmerBar {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pre-counter {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  font-family: monospace;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; }
}
/* NAVBAR*/
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg-top);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 18px 0;
}
#navbar.scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
   padding: 0 40px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  background: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 0.75;
}


.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.96);
  background: var(--nav-bg-scrolled);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  min-width: 240px;
  list-style: none;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--nav-bg-scrolled);
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 11px 14px;
  border-radius: 6px;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.dropdown-menu li a:hover {
  background: var(--border-soft);
  padding-left: 20px;
}


.nav-logo {
  text-decoration: none;
}

.logo-frame {
  width: 150px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  overflow: hidden;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-placeholder {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}


.theme-toggle {
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.08);
  background: var(--border-soft);
}

.theme-icon {
  width: 19px;
  height: 19px;
  color: var(--text-primary);
}

#iconMoon { display: none; }

html[data-theme="light"] #iconSun  { display: none; }
html[data-theme="light"] #iconMoon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 320px;
    background: var(--nav-bg-scrolled);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--border-soft);
    margin-top: 10px;
    display: none;
    border: none;
  }

  .nav-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-container {
    padding: 0 20px;
  }
}
/* HERO SECTION  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-page);
  overflow: hidden;
  padding-top: 80px;
  transition:background-color 0.3s ease ;
   max-width: 100vw;
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 40px 0 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  transition: color 0.3s ease;
}

.hero-subheading {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.75;
  max-width: 460px;
  margin-bottom: 34px;
  transition: color 0.3s ease;
}

.hero-cta {
  display: inline-block;
  background-color: var(--text-primary);
  color: var(--bg-page);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(23, 43, 78, 0.25);
}

.hero-cta:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.35);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  max-width: 100%;
  min-width: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }

  .hero-content {
    align-items: center;
    order: 1;
    min-width: 0;
  }

  .hero-visual {
    height: 360px;
    order: 0;
  }

  .hero-subheading {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-visual {
    height: 280px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after {
    animation: none;
  }
}
/*  END HERO SECTION  */
/*  ABOUT US SECTION START  */
.about-section {
  padding: 40px 40px 100px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.about-heading {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.about-heading .highlight {
  color: #c9a96e;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  transition: color 0.4s ease;
}

.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.4s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.about-image-wrap {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(23, 43, 78, 0.15);
  display: block;
}

.about-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.about-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: 24px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .about-section {
    padding: 50px 24px 80px;
  }
}
/*  ABOUT US SECTION END  */
/*  SERVICES SECTION START  */
.services-section {
  padding: 60px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 90px;
  text-align: center;
}

.services-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.services-heading {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.services-heading .highlight {
  color: #c9a96e;
}

.services-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-soft);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
  perspective: 1000px;
}

.service-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 25px 60px rgba(23, 43, 78, 0.18);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover .service-image {
  box-shadow: 0 35px 80px rgba(201, 169, 110, 0.25);
}

.service-content {
  flex: 1;
  min-width: 280px;
}

.service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.service-heading {
  font-size: clamp(24px, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.service-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 30px;
  transition: color 0.4s ease;
}


.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 28px;
  border: 1.5px solid var(--text-primary);
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-readmore .arrow {
  transition: transform 0.3s ease;
}

.service-readmore:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-2px);
}

.service-readmore:hover .arrow {
  transform: translateX(4px);
}
.services-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-section [data-aos="fade-up"] {
  transform: translateY(30px);
}

.services-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.services-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.services-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 50px 0;
  }

  .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 24px 80px;
  }

  .services-intro {
    margin-bottom: 60px;
  }
}
/*  SERVICES SECTION END  */
/*  GET IN TOUCH SECTION START  */
.contact-section {
  padding: 100px 40px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.contact-heading {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
.contact-heading .highlight {
  color: #c9a96e;
}
.contact-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 36px;
  transition: color 0.4s ease;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.contact-detail-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: #c9a96e;
}
.contact-form-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}
.contact-form {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(23, 43, 78, 0.12);
  transition: background-color 0.4s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.4s ease, color 0.4s ease;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #c9a96e;
}

.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--text-primary);
  color: var(--bg-page);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 15px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.form-submit .arrow {
  transition: transform 0.3s ease;
}

.form-submit:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-2px);
}

.form-submit:hover .arrow {
  transform: translateX(4px);
}
.form-success-msg {
  display: none;
  margin-top: 16px;
  font-size: 0.88rem;
  color: #4caf76;
  text-align: center;
  font-weight: 500;
}
.form-success-msg.show {
  display: block;
}
.contact-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}
.contact-section [data-aos="fade-left"] {
  transform: translateX(50px);
}
.contact-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-subtext {
    max-width: 100%;
  }

  .contact-detail {
    align-items: center;
  }

  .contact-form-wrap {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 70px 24px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}
/*  GET IN TOUCH SECTION END  */
/*  FOOTER SECTION START  */
.site-footer {
  background-color: var(--bg-page);
  padding: 80px 40px 0;
  transition: background-color 0.4s ease;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
  transition: color 0.4s ease;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a,
.footer-links span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #c9a96e;
  padding-left: 4px;
}

.footer-contact a,
.footer-contact span {
  word-break: break-word;
}


.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #c9a96e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  z-index: 900;
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--navy);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--black);
}

.back-to-top:hover svg {
  color: var(--ice);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 60px 24px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
/*  FOOTER SECTION END  */
/* ABOUT PAGE HERO START */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-page);
  overflow: hidden;
  padding-top: 30px;
  transition: background-color 0.3s ease;
  max-width: 100vw;
}

.page-hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.page-hero-headline {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  transition: color 0.3s ease;
}

.page-hero-headline .highlight {
  color: #c9a96e;
}

.page-hero-subheading {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.85;
  max-width: 460px;
  transition: color 0.3s ease;
}

.page-hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  max-width: 100%;
  min-width: 0;
}

#about-hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .page-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .page-hero-content {
    align-items: center;
    order: 1;
    min-width: 0;
  }

  .page-hero-visual {
    height: 320px;
    order: 0;
  }

  .page-hero-subheading {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-hero-headline {
    font-size: 30px;
  }

  .page-hero-visual {
    height: 240px;
  }
}
/* ABOUT PAGE HERO END */
/*BREADCRUMB START*/
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.breadcrumb-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #c9a96e;
}

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumb-current {
  color: #c9a96e;
  font-weight: 600;
}

@media (max-width: 900px) {
  .breadcrumb {
    justify-content: center;
  }
}
/* BREADCRUMB END*/
/* STORY SECTION START */
.story-section {
  padding: 10px 40px 40px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.story-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.story-image-wrap {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.story-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(23, 43, 78, 0.15);
  display: block;
}
.story-content {
  flex: 1;
  min-width: 300px;
}
.story-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.story-heading {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 700;
  transition: color 0.4s ease;
}
.story-heading .highlight {
  color: #c9a96e;
}
.story-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: 540px;
  transition: color 0.4s ease;
}
.story-paragraph:last-child {
  margin-bottom: 0;
}
.story-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.story-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.story-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .story-container {
    flex-direction: column;
  }
  .story-paragraph {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 30px 24px 50px
  }
}
/* STORY SECTION END*/
/* MISSION & VALUES SECTION START */
.values-section {
  padding: 80px 40px 100px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
}
.values-intro {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}

.values-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.values-heading {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.values-heading .highlight {
  color: #c9a96e;
}

.values-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.value-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px var(--shadow-color);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
}
.value-icon svg {
  width: 26px;
  height: 26px;
}
.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.value-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.values-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.values-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .values-section {
    padding: 60px 24px 70px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-intro {
    margin-bottom: 50px;
  }
}
/*  MISSION & VALUES SECTION END*/
/* ABOUT STATS COUNTER SECTION START*/
.about-stats-section {
  padding: 90px 40px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}
.about-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-stat-block {
  text-align: center;
}
.stat-number {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.about-stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.4s ease;
}
.about-stat-divider {
  width: 1px;
  height: 64px;
  background-color: var(--border-soft);
}
.about-stats-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-stats-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .about-stats-container {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .about-stats-section {
    padding: 60px 24px;
  }

  .about-stats-container {
    flex-direction: column;
    gap: 36px;
  }

  .about-stat-divider {
    width: 50px;
    height: 1px;
  }
}
/*  ABOUT STATS COUNTER SECTION END   */
/*  CTA BANNER SECTION START */
.cta-banner {
  position: relative;
  padding: 100px 40px;
  background-color: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  animation: ctaShimmer 6s ease-in-out infinite alternate;
}

@keyframes ctaShimmer {
  0% {
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  }
  50% {
    background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  }
  100% {
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
  }
}
.cta-banner-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-banner-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.cta-banner-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ice);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-highlight {
  color: #c9a96e;
}

.cta-banner-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 580px;
  margin-bottom: 40px;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a96e;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.cta-btn-primary:hover {
  background-color: var(--ice);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 169, 110, 0.4);
}

.cta-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.cta-btn-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 15px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(242, 249, 251, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease, color 0.3s ease;
}

.cta-btn-secondary:hover {
  background-color: rgba(242, 249, 251, 0.1);
  border-color: var(--ice);
  transform: translateY(-3px);
}

.cta-banner [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-banner [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cta-banner {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 60px 24px;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/*  CTA BANNER SECTION END  */
/*  SERVICES PAGE HERO START  */
.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #0d1f3c 40%,
    #172b4e 70%,
    #0a1628 100%
  );
  background-size: 300% 300%;
  animation: servicesGradientShift 10s ease infinite;
}

html[data-theme="light"] .services-hero {
  background: linear-gradient(
    135deg,
    #d6e8ef 0%,
    #c2dce6 35%,
    #b0cfd9 65%,
    #c8e1ea 100%
  );
  background-size: 300% 300%;
  animation: servicesGradientShift 10s ease infinite;
}

@keyframes servicesGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#services-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.services-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.services-hero-headline {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 22px;
}

html[data-theme="light"] .services-hero-headline {
  color: var(--navy);
}

.services-hero-headline .highlight {
  color: #c9a96e;
}

.services-hero-subheading {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 580px;
  margin-bottom: 42px;
}

html[data-theme="light"] .services-hero-subheading {
  color: rgba(23, 43, 78, 0.75);
}

.services-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.services-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a96e;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background-color 0.3s ease;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.services-hero-cta:hover {
  background-color: var(--ice);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 169, 110, 0.3);
}

.services-hero-cta .cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.services-hero-cta:hover .cta-arrow {
  transform: translateY(4px);
}

.services-hero-ghost {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(242, 249, 251, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease;
}

html[data-theme="light"] .services-hero-ghost {
  color: var(--navy);
  border-color: rgba(23, 43, 78, 0.3);
}

.services-hero-ghost:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .services-hero-container {
    padding: 40px 24px;
  }

  .services-hero-headline {
    font-size: clamp(30px, 7vw, 46px);
  }
}

@media (max-width: 480px) {
  .services-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .services-hero-cta,
  .services-hero-ghost {
    width: 100%;
    justify-content: center;
  }
}
/*  SERVICES PAGE HERO END  */
/*  SERVICES CARDS SECTION START  */
.srv-cards-section {
  padding: 100px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.srv-cards-intro {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.srv-cards-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.srv-cards-heading {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.srv-cards-heading .highlight {
  color: #c9a96e;
}

.srv-cards-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

/* Grid */
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.srv-card {
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-page);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.srv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 24px 60px var(--shadow-color),
              0 0 0 1px rgba(201, 169, 110, 0.15);
}

.srv-card:hover::before {
  opacity: 1;
}

.srv-card--featured {
  border-color: rgba(201, 169, 110, 0.4);
  background-color: var(--section-bg-alt);
}

.srv-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  border-radius: 20px 20px 0 0;
}

.srv-card--featured:hover {
  box-shadow: 0 28px 70px var(--shadow-color),
              0 0 0 1px rgba(201, 169, 110, 0.3);
}
.srv-card-inner {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.srv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.srv-card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-soft);
  line-height: 1;
  font-family: 'Georgia', serif;
  transition: color 0.4s ease;
  letter-spacing: -1px;
}
.srv-card:hover .srv-card-number {
  color: rgba(201, 169, 110, 0.35);
}
.srv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.srv-card-icon svg {
  width: 24px;
  height: 24px;
}
.srv-card:hover .srv-card-icon {
  background-color: rgba(201, 169, 110, 0.18);
  transform: rotate(-6deg) scale(1.05);
}
.srv-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background-color: #c9a96e;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.srv-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.srv-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  transition: color 0.4s ease;
}
.srv-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.srv-card-bullets li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  transition: color 0.4s ease;
}

.srv-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c9a96e;
}
.srv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 13px 26px;
  border: 1.5px solid var(--border-soft);
  border-radius: 50px;
  align-self: flex-start;
  transition: background-color 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, transform 0.3s ease;
}

.srv-btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.srv-card-btn:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-2px);
}

.srv-card-btn:hover .srv-btn-arrow {
  transform: translateX(4px);
}
.srv-cards-section [data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.srv-cards-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.srv-cards-grid .srv-card:nth-child(1) { transition-delay: 0s; }
.srv-cards-grid .srv-card:nth-child(2) { transition-delay: 0.12s; }
.srv-cards-grid .srv-card:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .srv-cards-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .srv-cards-section {
    padding: 70px 24px 90px;
  }
}
@media (max-width: 480px) {
  .srv-card-inner {
    padding: 28px 24px 28px;
  }

  .srv-cards-intro {
    margin-bottom: 50px;
  }
}
/*  SERVICES CARDS SECTION END  */
/*  WHY CHOOSE US SECTION START  */
.why-section {
  padding: 100px 40px 120px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.why-intro {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.why-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.why-heading {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.why-heading .highlight {
  color: #c9a96e;
}

.why-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.why-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  transition: width 0.4s ease;
  border-radius: 0 0 18px 18px;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 24px 60px var(--shadow-color);
}

.why-card:hover::after {
  width: 100%;
}
.why-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  transition: transform 0.35s ease, background-color 0.35s ease;
}
.why-icon-wrap svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}
.why-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.25) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.why-card:hover .why-icon-wrap {
  transform: translateY(-4px) scale(1.08);
  background-color: rgba(201, 169, 110, 0.16);
}
.why-card:hover .why-icon-glow {
  opacity: 1;
}
.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}
.why-card-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.why-section [data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.why-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .why-section {
    padding: 70px 24px 90px;
  }

  .why-intro {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 28px 22px;
  }
}
/*  WHY CHOOSE US SECTION END  */
/*  HOW WE WORK SECTION START  */
.process-section {
  padding: 100px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}
.process-intro {
  max-width: 700px;
  margin: 0 auto 90px;
  text-align: center;
}
.process-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.process-heading {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
.process-heading .highlight {
  color: #c9a96e;
}
.process-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.process-track-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.process-line-wrap {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}
.process-line-svg {
  width: 100%;
  height: 2px;
  overflow: visible;
}
.process-line-bg {
  stroke: var(--border-soft);
  stroke-width: 2;
}
.process-line-fill {
  stroke: #c9a96e;
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-line-fill.line-animate {
  stroke-dashoffset: 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.process-step-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-page);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease, background-color 0.4s ease,
              transform 0.4s ease;
  z-index: 2;
}
.process-step:hover .process-step-circle {
  border-color: #c9a96e;
  transform: scale(1.08);
  background-color: rgba(201, 169, 110, 0.08);
}
.process-step-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}
.process-step:hover .process-step-num {
  color: #c9a96e;
}
.process-step-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.process-step:hover .process-step-glow {
  opacity: 1;
}
.process-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.process-step-icon svg {
  width: 22px;
  height: 22px;
}

.process-step:hover .process-step-icon {
  background-color: rgba(201, 169, 110, 0.16);
  transform: rotate(-5deg) scale(1.06);
}
.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.4s ease;
}
.process-step-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.process-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.process-steps .process-step:nth-child(1) { transition-delay: 0s; }
.process-steps .process-step:nth-child(2) { transition-delay: 0.12s; }
.process-steps .process-step:nth-child(3) { transition-delay: 0.24s; }
.process-steps .process-step:nth-child(4) { transition-delay: 0.36s; }
@media (max-width: 900px) {
  .process-section {
    padding: 70px 24px 90px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .process-line-wrap {
    display: none;
  }

  .process-intro {
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-step {
    padding: 0;
  }
}
/*  HOW WE WORK SECTION END  */
/*  TRANSPORTATION HERO START  */
.trans-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    #050911 0%,
    #0d1f3c 40%,
    #172b4e 70%,
    #080c12 100%
  );
  background-size: 300% 300%;
  animation: transGradientShift 12s ease infinite;
}

html[data-theme="light"] .trans-hero {
  background: linear-gradient(
    135deg,
    #c8dce6 0%,
    #b8d0dc 40%,
    #a8c4d4 70%,
    #c0d8e4 100%
  );
  background-size: 300% 300%;
  animation: transGradientShift 12s ease infinite;
}

@keyframes transGradientShift {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}

#trans-hero-canvas { display: none; }
.trans-hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.trans-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
}
.trans-ring-1 {
  width: 340px;
  height: 340px;
  animation: ringRotate1 18s linear infinite;
}

.trans-ring-2 {
  width: 520px;
  height: 520px;
  border-color: rgba(201, 169, 110, 0.15);
  animation: ringRotate2 28s linear infinite reverse;
}
.trans-ring-3 {
  width: 720px;
  height: 720px;
  border-color: rgba(201, 169, 110, 0.08);
  animation: ringRotate1 40s linear infinite;
}
.trans-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.8);
}
.trans-ring-2::after {
  width: 6px;
  height: 6px;
  top: -3px;
  opacity: 0.7;
}
.trans-ring-3::after {
  width: 5px;
  height: 5px;
  top: -2.5px;
  opacity: 0.5;
}

@keyframes ringRotate1 {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes ringRotate2 {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.trans-hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.15); opacity: 0.7; }
}
.trans-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trans-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trans-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.trans-hero-headline {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

html[data-theme="light"] .trans-hero-headline {
  color: var(--navy);
}

.trans-hero-headline .highlight {
  color: #c9a96e;
}
.trans-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 600px;
  margin-bottom: 44px;
}
html[data-theme="light"] .trans-hero-subheading {
  color: rgba(23, 43, 78, 0.75);
}

.trans-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.trans-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a96e;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.trans-hero-cta:hover {
  background-color: var(--ice);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.35);
}
.trans-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.trans-hero-cta:hover .trans-cta-arrow {
  transform: translateX(5px);
}
.trans-hero-ghost {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 50px;
  border: 1.5px solid rgba(242, 249, 251, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease;
}
html[data-theme="light"] .trans-hero-ghost {
  color: var(--navy);
  border-color: rgba(23, 43, 78, 0.3);
}
.trans-hero-ghost:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .trans-ring-3 { display: none; }

  .trans-hero-container {
    padding: 40px 24px;
  }

  .trans-hero-headline {
    font-size: clamp(32px, 7vw, 48px);
    letter-spacing: -0.5px;
  }
}
@media (max-width: 480px) {
  .trans-ring-2 { display: none; }

  .trans-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .trans-hero-cta,
  .trans-hero-ghost {
    width: 100%;
    justify-content: center;
  }
}
/*  TRANSPORTATION HERO END  */
/*  TRANSPORTATION STATS STRIP START  */
.trans-stats-strip {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0d1f3c 50%,
    var(--navy) 100%
  );
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.trans-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.5),
    transparent
  );
}
.trans-stats-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.3),
    transparent
  );
}
.trans-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trans-stat-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px;
  transition: transform 0.3s ease;
}

.trans-stat-item:hover {
  transform: translateY(-4px);
}

.trans-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.trans-stat-icon svg {
  width: 22px;
  height: 22px;
}

.trans-stat-item:hover .trans-stat-icon {
  background-color: rgba(201, 169, 110, 0.22);
  transform: scale(1.08);
}
.trans-stat-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}
.trans-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(242, 249, 251, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trans-stats-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 110, 0.35),
    transparent
  );
  flex-shrink: 0;
}

.trans-stats-strip [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.trans-stats-strip [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.trans-stat-item:nth-child(1) { transition-delay: 0s;    }
.trans-stat-item:nth-child(3) { transition-delay: 0.12s; }
.trans-stat-item:nth-child(5) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .trans-stats-strip {
    padding: 60px 24px;
  }

  .trans-stats-container {
    gap: 20px;
  }

  .trans-stats-divider {
    display: none;
  }

  .trans-stat-item {
    min-width: 140px;
    padding: 16px 20px;
  }
}
@media (max-width: 480px) {
  .trans-stats-container {
    flex-direction: column;
    gap: 36px;
  }

  .trans-stat-item {
    width: 100%;
    padding: 0;
  }
}
/*  TRANSPORTATION STATS STRIP END  */
/*  TRANSPORTATION SERVICE DETAILS START  */
.trans-details-section {
  padding: 110px 40px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.trans-details-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.trans-details-content {
  flex: 1;
  min-width: 300px;
}

.trans-details-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 18px;
}

.trans-details-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.trans-details-heading .highlight {
  color: #c9a96e;
}

.trans-details-paragraph {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.trans-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
  margin-top: 8px;
}

.trans-details-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.trans-details-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c9a96e;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
}

.trans-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-page);
  background-color: var(--text-primary);
  padding: 15px 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.trans-details-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.trans-details-cta:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, 0.35);
}

.trans-details-cta:hover .trans-details-arrow {
  transform: translateX(5px);
}

.trans-details-image-wrap {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.trans-details-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px var(--shadow-color);
  transition: box-shadow 0.4s ease;
}

.trans-details-image-frame:hover {
  box-shadow: 0 40px 90px rgba(201, 169, 110, 0.25);
}

.trans-details-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.trans-details-image-frame:hover .trans-details-image {
  transform: scale(1.04);
}

.trans-details-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.trans-details-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px var(--shadow-color);
  transition: background-color 0.4s ease, transform 0.3s ease;
  z-index: 2;
}

.trans-details-badge:hover {
  transform: translateY(-4px);
}

.trans-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  flex-shrink: 0;
}

.trans-badge-icon svg {
  width: 20px;
  height: 20px;
}

.trans-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trans-badge-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.trans-badge-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.trans-details-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.trans-details-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.trans-details-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.trans-details-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .trans-details-container {
    flex-direction: column;
    gap: 60px;
  }

  .trans-details-image {
    height: 380px;
  }

  .trans-details-badge {
    bottom: -16px;
    left: 16px;
  }

  .trans-details-section {
    padding: 70px 24px;
  }
}

@media (max-width: 480px) {
  .trans-details-image {
    height: 280px;
  }

  .trans-details-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    white-space: nowrap;
  }

  .trans-details-badge:hover {
    transform: translateX(-50%) translateY(-4px);
  }
}
/*  TRANSPORTATION SERVICE DETAILS END  */
/*  TRANSPORTATION FEATURES GRID START  */
.trans-features-section {
  padding: 110px 40px 120px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
  position: relative;
}
.trans-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.trans-features-intro {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.trans-features-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.trans-features-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.trans-features-heading .highlight {
  color: #c9a96e;
}

.trans-features-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.trans-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.trans-feature-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
}
.trans-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  transition: width 0.4s ease;
}

.trans-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 24px 60px var(--shadow-color);
}

.trans-feature-card:hover::after {
  width: 80%;
}
.trans-feature-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 22px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.trans-feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}
.trans-feature-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trans-feature-card:hover .trans-feature-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  background-color: rgba(201, 169, 110, 0.18);
}

.trans-feature-card:hover .trans-feature-icon-glow {
  opacity: 1;
}
.trans-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.trans-feature-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.trans-features-section [data-aos] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.trans-features-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.trans-features-grid .trans-feature-card:nth-child(1) { transition-delay: 0s;    }
.trans-features-grid .trans-feature-card:nth-child(2) { transition-delay: 0.08s; }
.trans-features-grid .trans-feature-card:nth-child(3) { transition-delay: 0.16s; }
.trans-features-grid .trans-feature-card:nth-child(4) { transition-delay: 0.24s; }
.trans-features-grid .trans-feature-card:nth-child(5) { transition-delay: 0.32s; }
.trans-features-grid .trans-feature-card:nth-child(6) { transition-delay: 0.40s; }

@media (max-width: 900px) {
  .trans-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trans-features-section {
    padding: 70px 24px 90px;
  }

  .trans-features-intro {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .trans-features-grid {
    grid-template-columns: 1fr;
  }

  .trans-feature-card {
    padding: 28px 22px;
  }
}
/*  TRANSPORTATION FEATURES GRID END  */
/*  TRANSPORTATION HOW IT WORKS START  */
.trans-process-section {
  padding: 110px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.trans-process-intro {
  max-width: 680px;
  margin: 0 auto 100px;
  text-align: center;
}

.trans-process-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.trans-process-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.trans-process-heading .highlight {
  color: #c9a96e;
}

.trans-process-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.trans-process-track-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.trans-process-line-wrap {
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}

.trans-process-line-svg {
  width: 100%;
  height: 2px;
  overflow: visible;
}

.trans-process-line-bg {
  stroke: var(--border-soft);
  stroke-width: 2;
}

.trans-process-line-fill {
  stroke: #c9a96e;
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trans-process-line-fill.line-animate {
  stroke-dashoffset: 0;
}

.trans-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.trans-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.trans-process-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-page);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease, background-color 0.4s ease,
              transform 0.4s ease;
  z-index: 2;
}
.trans-process-step:hover .trans-process-circle {
  border-color: #c9a96e;
  transform: scale(1.1);
  background-color: rgba(201, 169, 110, 0.08);
}
.trans-process-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-secondary);
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.trans-process-step:hover .trans-process-num {
  color: #c9a96e;
}
.trans-process-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.trans-process-step:hover .trans-process-glow {
  opacity: 1;
}
.trans-process-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.trans-process-icon-box svg {
  width: 22px;
  height: 22px;
}

.trans-process-step:hover .trans-process-icon-box {
  background-color: rgba(201, 169, 110, 0.16);
  transform: rotate(-5deg) scale(1.06);
}

.trans-process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.trans-process-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.trans-process-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.trans-process-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.trans-process-steps .trans-process-step:nth-child(1) { transition-delay: 0s;    }
.trans-process-steps .trans-process-step:nth-child(2) { transition-delay: 0.15s; }
.trans-process-steps .trans-process-step:nth-child(3) { transition-delay: 0.30s; }

@media (max-width: 900px) {
  .trans-process-section {
    padding: 70px 24px 90px;
  }
  .trans-process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trans-process-line-wrap {
    display: none;
  }

  .trans-process-intro {
    margin-bottom: 60px;
  }

  .trans-process-step {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .trans-process-heading {
    font-size: 26px;
  }
}
/*  TRANSPORTATION HOW IT WORKS END  */
/*  REVERSE HIRING HERO START  */
.rh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    #060a14 0%,
    #0a1628 35%,
    #0f2040 65%,
    #060d1a 100%
  );
  background-size: 300% 300%;
  animation: rhGradientShift 10s ease infinite;
}
html[data-theme="light"] .rh-hero {
  background: linear-gradient(
    135deg,
    #ccd8e8 0%,
    #bccce0 35%,
    #acc0d8 65%,
    #c4d4e4 100%
  );
  background-size: 300% 300%;
  animation: rhGradientShift 10s ease infinite;
}

@keyframes rhGradientShift {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}

#rh-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.rh-hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.rh-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.rh-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.9);
}

.rh-ring-1 {
  width: 300px;
  height: 300px;
  animation: rhRingRotate 16s linear infinite;
}

.rh-ring-2 {
  width: 480px;
  height: 480px;
  border-color: rgba(201, 169, 110, 0.13);
  animation: rhRingRotate 26s linear infinite reverse;
}

.rh-ring-2::after {
  width: 6px;
  height: 6px;
  top: -3px;
  opacity: 0.7;
}

.rh-ring-3 {
  width: 660px;
  height: 660px;
  border-color: rgba(201, 169, 110, 0.07);
  animation: rhRingRotate 38s linear infinite;
}

.rh-ring-3::after {
  width: 5px;
  height: 5px;
  top: -2.5px;
  opacity: 0.45;
}

@keyframes rhRingRotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.rh-hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  animation: rhGlowPulse 5s ease-in-out infinite;
}
@keyframes rhGlowPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.2); opacity: 0.6; }
}
.rh-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rh-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rh-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.rh-hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

html[data-theme="light"] .rh-hero-headline {
  color: var(--navy);
}

.rh-hero-headline .highlight {
  color: #c9a96e;
}

.rh-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 620px;
  margin-bottom: 44px;
}

html[data-theme="light"] .rh-hero-subheading {
  color: rgba(23, 43, 78, 0.75);
}

.rh-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rh-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a96e;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.rh-hero-cta:hover {
  background-color: var(--ice);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.3);
}

.rh-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.rh-hero-cta:hover .rh-cta-arrow {
  transform: translateX(5px);
}

.rh-hero-ghost {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 50px;
  border: 1.5px solid rgba(242, 249, 251, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease;
}

html[data-theme="light"] .rh-hero-ghost {
  color: var(--navy);
  border-color: rgba(23, 43, 78, 0.3);
}

.rh-hero-ghost:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .rh-hero-container { padding: 40px 24px; }
  .rh-ring-3 { display: none; }
  .rh-hero-headline { font-size: clamp(32px, 7vw, 50px); letter-spacing: -0.5px; }
  .rh-hero-subheading { font-size: 1rem; }
}

@media (max-width: 480px) {
  .rh-ring-2 { display: none; }
  .rh-hero-actions { flex-direction: column; width: 100%; }
  .rh-hero-cta, .rh-hero-ghost { width: 100%; justify-content: center; }
}
/*  REVERSE HIRING HERO END  */
/*  REVERSE HIRING STATS STRIP START  */
.rh-stats-strip {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0a1628 50%,
    var(--navy) 100%
  );
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.rh-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.5),
    transparent
  );
}

.rh-stats-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.3),
    transparent
  );
}

.rh-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.rh-stat-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px;
  transition: transform 0.3s ease;
}

.rh-stat-item:hover {
  transform: translateY(-4px);
}

.rh-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.rh-stat-icon svg {
  width: 22px;
  height: 22px;
}

.rh-stat-item:hover .rh-stat-icon {
  background-color: rgba(201, 169, 110, 0.22);
  transform: scale(1.08);
}

.rh-stat-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.rh-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(242, 249, 251, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rh-stats-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 110, 0.35),
    transparent
  );
  flex-shrink: 0;
}

.rh-stats-strip [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rh-stats-strip [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.rh-stat-item:nth-child(1) { transition-delay: 0s;    }
.rh-stat-item:nth-child(3) { transition-delay: 0.12s; }
.rh-stat-item:nth-child(5) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .rh-stats-strip { padding: 60px 24px; }
  .rh-stats-container { gap: 20px; }
  .rh-stats-divider { display: none; }
  .rh-stat-item { min-width: 140px; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .rh-stats-container { flex-direction: column; gap: 36px; }
  .rh-stat-item { width: 100%; padding: 0; }
}
/*  REVERSE HIRING STATS STRIP END  */
/*  REVERSE HIRING SERVICE DETAILS START  */
.rh-details-section {
  padding: 110px 40px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.rh-details-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.rh-details-content {
  flex: 1;
  min-width: 300px;
}

.rh-details-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 18px;
}
.rh-details-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}
.rh-details-heading .highlight {
  color: #c9a96e;
}

.rh-details-paragraph {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.rh-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
  margin-top: 8px;
}

.rh-details-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.rh-details-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c9a96e;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
}

.rh-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-page);
  background-color: var(--text-primary);
  padding: 15px 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.rh-details-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.rh-details-cta:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, 0.35);
}

.rh-details-cta:hover .rh-details-arrow {
  transform: translateX(5px);
}
.rh-details-image-wrap {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.rh-details-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px var(--shadow-color);
  transition: box-shadow 0.4s ease;
}

.rh-details-image-frame:hover {
  box-shadow: 0 40px 90px rgba(201, 169, 110, 0.22);
}

.rh-details-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.rh-details-image-frame:hover .rh-details-image {
  transform: scale(1.04);
}

.rh-details-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.rh-details-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px var(--shadow-color);
  transition: background-color 0.4s ease, transform 0.3s ease;
  z-index: 2;
}

.rh-details-badge:hover {
  transform: translateY(-4px);
}

.rh-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  flex-shrink: 0;
}

.rh-badge-icon svg {
  width: 20px;
  height: 20px;
}

.rh-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rh-badge-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.rh-badge-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.4s ease;
}
.rh-details-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rh-details-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.rh-details-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.rh-details-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .rh-details-container {
    flex-direction: column;
    gap: 60px;
  }

  .rh-details-image { height: 380px; }

  .rh-details-badge {
    bottom: -16px;
    left: 16px;
  }

  .rh-details-section { padding: 70px 24px; }
}

@media (max-width: 480px) {
  .rh-details-image { height: 280px; }

  .rh-details-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    white-space: nowrap;
  }

  .rh-details-badge:hover {
    transform: translateX(-50%) translateY(-4px);
  }
}
/*  REVERSE HIRING SERVICE DETAILS END  */
/*  REVERSE HIRING FEATURES GRID START  */
.rh-features-section {
  padding: 110px 40px 120px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
  position: relative;
}

.rh-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.rh-features-intro {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.rh-features-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.rh-features-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.rh-features-heading .highlight {
  color: #c9a96e;
}

.rh-features-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.rh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.rh-feature-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
}

.rh-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  transition: width 0.4s ease;
}

.rh-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 24px 60px var(--shadow-color);
}

.rh-feature-card:hover::after {
  width: 80%;
}

.rh-feature-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 22px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.rh-feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.rh-feature-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.rh-feature-card:hover .rh-feature-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  background-color: rgba(201, 169, 110, 0.18);
}

.rh-feature-card:hover .rh-feature-icon-glow {
  opacity: 1;
}

.rh-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.rh-feature-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.rh-features-section [data-aos] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rh-features-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.rh-features-grid .rh-feature-card:nth-child(1) { transition-delay: 0s;    }
.rh-features-grid .rh-feature-card:nth-child(2) { transition-delay: 0.08s; }
.rh-features-grid .rh-feature-card:nth-child(3) { transition-delay: 0.16s; }
.rh-features-grid .rh-feature-card:nth-child(4) { transition-delay: 0.24s; }
.rh-features-grid .rh-feature-card:nth-child(5) { transition-delay: 0.32s; }
.rh-features-grid .rh-feature-card:nth-child(6) { transition-delay: 0.40s; }

@media (max-width: 900px) {
  .rh-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rh-features-section {
    padding: 70px 24px 90px;
  }
  .rh-features-intro {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .rh-features-grid {
    grid-template-columns: 1fr;
  }
  .rh-feature-card {
    padding: 28px 22px;
  }
}
/*  REVERSE HIRING FEATURES GRID END  */
/*  REVERSE HIRING HOW IT WORKS START  */
.rh-process-section {
  padding: 110px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.rh-process-intro {
  max-width: 680px;
  margin: 0 auto 100px;
  text-align: center;
}

.rh-process-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.rh-process-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.rh-process-heading .highlight {
  color: #c9a96e;
}

.rh-process-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.rh-process-track-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.rh-process-line-wrap {
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}

.rh-process-line-svg {
  width: 100%;
  height: 2px;
  overflow: visible;
}

.rh-process-line-bg {
  stroke: var(--border-soft);
  stroke-width: 2;
}

.rh-process-line-fill {
  stroke: #c9a96e;
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.rh-process-line-fill.line-animate {
  stroke-dashoffset: 0;
}
.rh-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.rh-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.rh-process-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-page);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease, background-color 0.4s ease,
              transform 0.4s ease;
  z-index: 2;
}
.rh-process-step:hover .rh-process-circle {
  border-color: #c9a96e;
  transform: scale(1.1);
  background-color: rgba(201, 169, 110, 0.08);
}
.rh-process-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-secondary);
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.rh-process-step:hover .rh-process-num {
  color: #c9a96e;
}
.rh-process-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rh-process-step:hover .rh-process-glow {
  opacity: 1;
}
.rh-process-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.rh-process-icon-box svg {
  width: 22px;
  height: 22px;
}
.rh-process-step:hover .rh-process-icon-box {
  background-color: rgba(201, 169, 110, 0.16);
  transform: rotate(-5deg) scale(1.06);
}

.rh-process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.rh-process-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.rh-process-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rh-process-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.rh-process-steps .rh-process-step:nth-child(1) { transition-delay: 0s;    }
.rh-process-steps .rh-process-step:nth-child(2) { transition-delay: 0.15s; }
.rh-process-steps .rh-process-step:nth-child(3) { transition-delay: 0.30s; }

@media (max-width: 900px) {
  .rh-process-section { padding: 70px 24px 90px; }
  .rh-process-steps { grid-template-columns: 1fr; gap: 48px; }
  .rh-process-line-wrap { display: none; }
  .rh-process-intro { margin-bottom: 60px; }
  .rh-process-step { padding: 0; }
}

@media (max-width: 480px) {
  .rh-process-heading { font-size: 26px; }
}
/*  REVERSE HIRING HOW IT WORKS END  */
/*  WEB DESIGN PAGE HERO START  */
.web-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    #04080f 0%,
    #080f20 30%,
    #0d1a35 60%,
    #060c18 100%
  );
  background-size: 300% 300%;
  animation: webGradientShift 11s ease infinite;
}

html[data-theme="light"] .web-hero {
  background: linear-gradient(
    135deg,
    #c4d4e8 0%,
    #b4c8e0 30%,
    #a4bcd8 60%,
    #bccce4 100%
  );
  background-size: 300% 300%;
  animation: webGradientShift 11s ease infinite;
}

@keyframes webGradientShift {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}
.web-hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.web-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.18);
}

.web-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.9);
}

.web-ring-1 {
  width: 320px;
  height: 320px;
  animation: webRingRotate 20s linear infinite;
}

.web-ring-2 {
  width: 500px;
  height: 500px;
  border-color: rgba(201, 169, 110, 0.11);
  animation: webRingRotate 32s linear infinite reverse;
}
.web-ring-2::after {
  width: 6px;
  height: 6px;
  top: -3px;
  opacity: 0.65;
}

.web-ring-3 {
  width: 700px;
  height: 700px;
  border-color: rgba(201, 169, 110, 0.06);
  animation: webRingRotate 44s linear infinite;
}

.web-ring-3::after {
  width: 5px;
  height: 5px;
  top: -2.5px;
  opacity: 0.4;
}

@keyframes webRingRotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.web-hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: webGlowPulse 5s ease-in-out infinite;
}

@keyframes webGlowPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.18); opacity: 0.6; }
}

.web-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.web-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.web-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.web-hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

html[data-theme="light"] .web-hero-headline {
  color: var(--navy);
}

.web-hero-headline .highlight {
  color: #c9a96e;
}

.web-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 620px;
  margin-bottom: 44px;
}

html[data-theme="light"] .web-hero-subheading {
  color: rgba(23, 43, 78, 0.75);
}
.web-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.web-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a96e;
  color: var(--black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.web-hero-cta:hover {
  background-color: var(--ice);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.3);
}

.web-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.web-hero-cta:hover .web-cta-arrow {
  transform: translateX(5px);
}

.web-hero-ghost {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 50px;
  border: 1.5px solid rgba(242, 249, 251, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease;
}

html[data-theme="light"] .web-hero-ghost {
  color: var(--navy);
  border-color: rgba(23, 43, 78, 0.3);
}

.web-hero-ghost:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .web-hero-container { padding: 40px 24px; }
  .web-ring-3 { display: none; }
  .web-hero-headline {
    font-size: clamp(32px, 7vw, 50px);
    letter-spacing: -0.5px;
  }
  .web-hero-subheading { font-size: 1rem; }
  .web-float-1,
  .web-float-4 { display: none; }
  .web-float-2 { top: 12%; right: 5%; }
  .web-float-3 { bottom: 12%; left: 5%; }
}

@media (max-width: 480px) {
  .web-ring-2 { display: none; }
  .web-hero-floats { display: none; }
  .web-hero-actions { flex-direction: column; width: 100%; }
  .web-hero-cta,
  .web-hero-ghost { width: 100%; justify-content: center; }
}
/*  WEB DESIGN PAGE HERO END  */
/*  WEB STATS STRIP START  */
.web-stats-strip {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0a1628 50%,
    var(--navy) 100%
  );
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.web-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.5),
    transparent
  );
}

.web-stats-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.3),
    transparent
  );
}

.web-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.web-stat-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px;
  transition: transform 0.3s ease;
}

.web-stat-item:hover {
  transform: translateY(-4px);
}

.web-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.web-stat-icon svg {
  width: 22px;
  height: 22px;
}

.web-stat-item:hover .web-stat-icon {
  background-color: rgba(201, 169, 110, 0.22);
  transform: scale(1.08);
}

.web-stat-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.web-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(242, 249, 251, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.web-stats-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 110, 0.35),
    transparent
  );
  flex-shrink: 0;
}

.web-stats-strip [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.web-stats-strip [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.web-stat-item:nth-child(1) { transition-delay: 0s;    }
.web-stat-item:nth-child(3) { transition-delay: 0.12s; }
.web-stat-item:nth-child(5) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .web-stats-strip { padding: 60px 24px; }
  .web-stats-container { gap: 20px; }
  .web-stats-divider { display: none; }
  .web-stat-item { min-width: 140px; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .web-stats-container { flex-direction: column; gap: 36px; }
  .web-stat-item { width: 100%; padding: 0; }
}
/*  WEB STATS STRIP END  */
/*  WEB SERVICE DETAILS START  */
.web-details-section {
  padding: 110px 40px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.web-details-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.web-details-content {
  flex: 1;
  min-width: 300px;
}

.web-details-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 18px;
}

.web-details-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.web-details-heading .highlight {
  color: #c9a96e;
}

.web-details-paragraph {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.web-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
  margin-top: 8px;
}

.web-details-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.4s ease;
}

.web-details-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c9a96e;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
}

.web-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-page);
  background-color: var(--text-primary);
  padding: 15px 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.web-details-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.web-details-cta:hover {
  background-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, 0.35);
}

.web-details-cta:hover .web-details-arrow {
  transform: translateX(5px);
}
.web-details-image-wrap {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.web-details-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px var(--shadow-color);
  transition: box-shadow 0.4s ease;
}

.web-details-image-frame:hover {
  box-shadow: 0 40px 90px rgba(201, 169, 110, 0.22);
}

.web-details-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.web-details-image-frame:hover .web-details-image {
  transform: scale(1.04);
}

.web-details-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.web-details-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px var(--shadow-color);
  transition: background-color 0.4s ease, transform 0.3s ease;
  z-index: 2;
}

.web-details-badge:hover {
  transform: translateY(-4px);
}

.web-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  flex-shrink: 0;
}

.web-badge-icon svg {
  width: 20px;
  height: 20px;
}
.web-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.web-badge-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.web-badge-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.4s ease;
}
.web-details-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.web-details-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.web-details-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.web-details-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .web-details-container {
    flex-direction: column;
    gap: 60px;
  }

  .web-details-image { height: 380px; }

  .web-details-badge {
    bottom: -16px;
    left: 16px;
  }

  .web-details-section { padding: 70px 24px; }
}
@media (max-width: 480px) {
  .web-details-image { height: 280px; }

  .web-details-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    white-space: nowrap;
  }

  .web-details-badge:hover {
    transform: translateX(-50%) translateY(-4px);
  }
}
/*  WEB SERVICE DETAILS END  */
/*  WEB FEATURES GRID START  */
.web-features-section {
  padding: 110px 40px 120px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
  position: relative;
}

.web-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.web-features-intro {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.web-features-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.web-features-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.web-features-heading .highlight {
  color: #c9a96e;
}

.web-features-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.web-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.web-feature-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
}
.web-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  transition: width 0.4s ease;
}
.web-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 24px 60px var(--shadow-color);
}

.web-feature-card:hover::after {
  width: 80%;
}
.web-feature-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 22px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.web-feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.web-feature-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.web-feature-card:hover .web-feature-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  background-color: rgba(201, 169, 110, 0.18);
}
.web-feature-card:hover .web-feature-icon-glow {
  opacity: 1;
}
.web-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.web-feature-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.web-features-section [data-aos] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.web-features-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.web-features-grid .web-feature-card:nth-child(1) { transition-delay: 0s;    }
.web-features-grid .web-feature-card:nth-child(2) { transition-delay: 0.08s; }
.web-features-grid .web-feature-card:nth-child(3) { transition-delay: 0.16s; }
.web-features-grid .web-feature-card:nth-child(4) { transition-delay: 0.24s; }
.web-features-grid .web-feature-card:nth-child(5) { transition-delay: 0.32s; }
.web-features-grid .web-feature-card:nth-child(6) { transition-delay: 0.40s; }

@media (max-width: 900px) {
  .web-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .web-features-section {
    padding: 70px 24px 90px;
  }
  .web-features-intro {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .web-features-grid {
    grid-template-columns: 1fr;
  }
  .web-feature-card {
    padding: 28px 22px;
  }
}
/*  WEB FEATURES GRID END  */
/*  WEB HOW IT WORKS START  */
.web-process-section {
  padding: 110px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.web-process-intro {
  max-width: 680px;
  margin: 0 auto 100px;
  text-align: center;
}

.web-process-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.web-process-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.web-process-heading .highlight {
  color: #c9a96e;
}
.web-process-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.web-process-track-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.web-process-line-wrap {
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}

.web-process-line-svg {
  width: 100%;
  height: 2px;
  overflow: visible;
}

.web-process-line-bg {
  stroke: var(--border-soft);
  stroke-width: 2;
}

.web-process-line-fill {
  stroke: #c9a96e;
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.web-process-line-fill.line-animate {
  stroke-dashoffset: 0;
}
.web-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.web-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.web-process-circle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-page);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease, background-color 0.4s ease,
              transform 0.4s ease;
  z-index: 2;
}

.web-process-step:hover .web-process-circle {
  border-color: #c9a96e;
  transform: scale(1.1);
  background-color: rgba(201, 169, 110, 0.08);
}

.web-process-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-secondary);
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.web-process-step:hover .web-process-num {
  color: #c9a96e;
}

.web-process-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.web-process-step:hover .web-process-glow {
  opacity: 1;
}
.web-process-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.web-process-icon-box svg {
  width: 22px;
  height: 22px;
}

.web-process-step:hover .web-process-icon-box {
  background-color: rgba(201, 169, 110, 0.16);
  transform: rotate(-5deg) scale(1.06);
}

.web-process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.web-process-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.web-process-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.web-process-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.web-process-steps .web-process-step:nth-child(1) { transition-delay: 0s;    }
.web-process-steps .web-process-step:nth-child(2) { transition-delay: 0.15s; }
.web-process-steps .web-process-step:nth-child(3) { transition-delay: 0.30s; }

@media (max-width: 900px) {
  .web-process-section  { padding: 70px 24px 90px; }
  .web-process-steps    { grid-template-columns: 1fr; gap: 48px; }
  .web-process-line-wrap { display: none; }
  .web-process-intro    { margin-bottom: 60px; }
  .web-process-step     { padding: 0; }
}

@media (max-width: 480px) {
  .web-process-heading { font-size: 26px; }
}
/*  WEB HOW IT WORKS END  */
/*  CONTACT PAGE HERO START  */
.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    #050911 0%,
    #0a1628 35%,
    #0f2040 65%,
    #060d1a 100%
  );
  background-size: 300% 300%;
  animation: contactGradientShift 12s ease infinite;
}

html[data-theme="light"] .contact-hero {
  background: linear-gradient(
    135deg,
    #c8dce6 0%,
    #b8d0dc 35%,
    #a8c4d4 65%,
    #c0d8e4 100%
  );
  background-size: 300% 300%;
  animation: contactGradientShift 12s ease infinite;
}

@keyframes contactGradientShift {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}
.contact-hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.ct-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.18);
}

.ct-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.9);
}

.ct-ring-1 {
  width: 260px;
  height: 260px;
  animation: ctRingRotate 18s linear infinite;
}

.ct-ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(201, 169, 110, 0.11);
  animation: ctRingRotate 30s linear infinite reverse;
}

.ct-ring-2::after {
  width: 6px;
  height: 6px;
  top: -3px;
  opacity: 0.65;
}

.ct-ring-3 {
  width: 580px;
  height: 580px;
  border-color: rgba(201, 169, 110, 0.06);
  animation: ctRingRotate 42s linear infinite;
}

.ct-ring-3::after {
  width: 5px;
  height: 5px;
  top: -2.5px;
  opacity: 0.4;
}

@keyframes ctRingRotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.contact-hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: ctGlowPulse 5s ease-in-out infinite;
}

@keyframes ctGlowPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.15); opacity: 0.6; }
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 20px;
}

.contact-hero-headline {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ice);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

html[data-theme="light"] .contact-hero-headline {
  color: var(--navy);
}

.contact-hero-headline .highlight {
  color: #c9a96e;
}

.contact-hero-subheading {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(242, 249, 251, 0.72);
  max-width: 580px;
}

html[data-theme="light"] .contact-hero-subheading {
  color: rgba(23, 43, 78, 0.75);
}

@media (max-width: 900px) {
  .contact-hero-container { padding: 40px 24px; }
  .ct-ring-3 { display: none; }
  .contact-hero-headline { font-size: clamp(28px, 6vw, 44px); }
}

@media (max-width: 480px) {
  .ct-ring-2 { display: none; }
  .contact-hero { min-height: 50vh; }
}
/*  CONTACT PAGE HERO END  */
/*  CONTACT FORM SECTION START  */
.ct-form-section {
  padding: 110px 40px 120px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.ct-form-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.ct-info {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.ct-info-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 18px;
}

.ct-info-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.ct-info-heading .highlight {
  color: #c9a96e;
}

.ct-info-subtext {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  transition: color 0.4s ease;
}
.ct-info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.ct-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ct-info-icon svg {
  width: 20px;
  height: 20px;
}

.ct-info-item:hover .ct-info-icon {
  background-color: rgba(201, 169, 110, 0.2);
  transform: scale(1.08);
}

.ct-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.ct-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ct-info-value:hover {
  color: #c9a96e;
}
.ct-info-socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-socials-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.ct-socials-row {
  display: flex;
  gap: 12px;
}

.ct-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background-color 0.3s ease, border-color 0.3s ease,
              transform 0.3s ease, color 0.3s ease;
}

.ct-social-btn svg {
  width: 16px;
  height: 16px;
}

.ct-social-btn:hover {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: translateY(-3px);
}
.ct-form-wrap {
  flex: 1.4;
  min-width: 300px;
}

.ct-form {
  background-color: var(--section-bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 30px 70px var(--shadow-color);
  transition: background-color 0.4s ease;
}
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ct-form-group {
  margin-bottom: 22px;
}

.ct-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  transition: color 0.4s ease;
}

.ct-form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-primary);
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-soft);
  border-radius: 11px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.4s ease,
              color 0.4s ease, box-shadow 0.3s ease;
  appearance: none;
}

.ct-form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.ct-form-input:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.ct-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%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;
  padding-right: 40px;
}
.ct-form-textarea {
  resize: vertical;
  min-height: 140px;
}
.ct-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #c9a96e;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
  margin-top: 4px;
}

.ct-submit-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.ct-form-submit:hover {
  background-color: var(--text-primary);
  color: var(--bg-page);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--shadow-color);
}

.ct-form-submit:hover .ct-submit-arrow {
  transform: translateX(5px);
}
.ct-form-success {
  display: none;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #4caf76;
  text-align: center;
  font-weight: 500;
  padding: 14px;
  border-radius: 10px;
  background-color: rgba(76, 175, 118, 0.08);
  border: 1px solid rgba(76, 175, 118, 0.2);
}

.ct-form-success.show {
  display: block;
}
.ct-form-section [data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ct-form-section [data-aos="fade-right"] {
  transform: translateX(-50px);
}

.ct-form-section [data-aos="fade-left"] {
  transform: translateX(50px);
}

.ct-form-section [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  .ct-form-container {
    flex-direction: column;
    gap: 50px;
  }

  .ct-info {
    max-width: 100%;
  }

  .ct-form-section {
    padding: 70px 24px 90px;
  }
}
@media (max-width: 600px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-form {
    padding: 28px 22px;
  }
}
/*  CONTACT FORM SECTION END  */
/*  CONTACT INFO CARDS STRIP START  */
.ct-cards-section {
  padding: 0 40px 110px;
  background-color: var(--bg-page);
  overflow: hidden;
  transition: background-color 0.4s ease;
}
.ct-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ct-card {
  background-color: var(--section-bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, background-color 0.4s ease;
}
.ct-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  transition: width 0.4s ease;
  border-radius: 20px 20px 0 0;
}
.ct-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 24px 60px var(--shadow-color);
}
.ct-card:hover::before {
  width: 100%;
}
.ct-card--featured {
  border-color: rgba(201, 169, 110, 0.35);
  background-color: var(--bg-page);
}
.ct-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  border-radius: 20px 20px 0 0;
}
.ct-card-icon-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  margin-bottom: 24px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.ct-card-icon-wrap svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.ct-card-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(201, 169, 110, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ct-card:hover .ct-card-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  background-color: rgba(201, 169, 110, 0.18);
}
.ct-card:hover .ct-card-icon-glow {
  opacity: 1;
}
.ct-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.ct-card-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
  transition: color 0.4s ease;
}
.ct-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #c9a96e;
  text-decoration: none;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.ct-card-link--plain {
  cursor: default;
}

.ct-card-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.ct-card-link:hover .ct-card-arrow {
  transform: translateX(4px);
}
.ct-cards-section [data-aos] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ct-cards-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.ct-cards-container .ct-card:nth-child(1) { transition-delay: 0s;    }
.ct-cards-container .ct-card:nth-child(2) { transition-delay: 0.12s; }
.ct-cards-container .ct-card:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .ct-cards-section {
    padding: 0 24px 80px;
  }
  .ct-cards-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .ct-card {
    padding: 28px 22px;
  }
}
/*  CONTACT INFO CARDS STRIP END  */
/*  CONTACT FAQ SECTION START  */
.ct-faq-section {
  padding: 100px 40px 110px;
  background-color: var(--section-bg-alt);
  overflow: hidden;
  transition: background-color 0.4s ease;
  position: relative;
}
.ct-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}
.ct-faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.ct-faq-intro {
  text-align: center;
  margin-bottom: 60px;
}
.ct-faq-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}
.ct-faq-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.ct-faq-heading .highlight {
  color: #c9a96e;
}

.ct-faq-subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: border-color 0.4s ease;
}

.ct-faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}
.ct-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ct-faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.ct-faq-question:hover span {
  color: #c9a96e;
}
.ct-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.4s ease;
}
.ct-faq-icon svg {
  width: 14px;
  height: 14px;
}
.ct-faq-icon .v-line {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ct-faq-question[aria-expanded="true"] .ct-faq-icon {
  background-color: #c9a96e;
  border-color: #c9a96e;
  color: var(--black);
  transform: rotate(45deg);
}
.ct-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
}
.ct-faq-answer.open {
  max-height: 300px;
}
.ct-faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-bottom: 24px;
  transition: color 0.4s ease;
}
.ct-faq-section [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ct-faq-section [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .ct-faq-section {
    padding: 70px 24px 90px;
  }
  .ct-faq-intro {
    margin-bottom: 44px;
  }
}
@media (max-width: 480px) {
  .ct-faq-question span {
    font-size: 0.92rem;
  }
}
/*  CONTACT FAQ SECTION END  */
.dropdown-caret {
  display: none;
}

@media (max-width: 860px) {
  .dropdown-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 6px;
  }
}