/* =========================================================
   01. Base
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Nunito Sans", Arial, sans-serif;
}

img,
svg {
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================================
   02. Header / Navbar
   ========================================================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 25px 0;
}

.custom-navbar {
  background: transparent;
}

.custom-navbar .container {
  display: flex;
  align-items: center;
  gap: 34px;
}

.custom-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.custom-navbar .navbar-brand img {
  width: 150px;
  max-height: 72px;
  object-fit: contain;
}

.custom-navbar .navbar-nav {
  align-items: center;
  gap: 30px;
}

.custom-navbar .nav-link {
  padding: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #ffc60e;
}

.quote-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 50px;
  padding: 10px 28px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.quote-nav-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================================================
   03. Shared Components
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ffc60e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  position: relative;
  z-index: 2;
  background: #101010;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.contact-text {
  flex: 1;
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.18;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 336px;
  min-height: 68px;
  padding: 12px 34px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

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

.arrow {
  color: #ffc60e;
  margin-left: 6px;
}

.circle-icon {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.circle-white,
.circle-yellow {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.circle-white {
  top: 0;
  left: 0;
  border: 2px solid #fff;
}

.circle-yellow {
  right: 0;
  bottom: 0;
  border: 2px solid #ffc60e;
}

.service-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-text {
  max-width: 1200px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

/* =========================================================
   04. Shared Decorative Shapes
   ========================================================= */
.contact-orbit,
.home-orbit {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
}

.contact-orbit::after,
.home-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #ffc60e;
  border-radius: 50%;
}

.contact-triangle,
.home-triangle {
  position: absolute;
  border: 2px solid #fff;
  clip-path: polygon(12% 8%, 92% 50%, 12% 92%);
}

.contact-triangle::after,
.home-triangle::after {
  content: "";
  position: absolute;
  border: 1px solid #ffc60e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.contact-spark {
  position: absolute;
  width: 105px;
  height: 34px;
  background:
    linear-gradient(45deg, transparent 40%, #fff 41% 48%, transparent 49%) 0 0 / 26px 34px repeat-x,
    linear-gradient(135deg, transparent 40%, #ffc60e 41% 48%, transparent 49%) 13px 2px / 26px 34px repeat-x;
}

/* =========================================================
   05. Home Page
   ========================================================= */
.home-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 198, 14, 0.20), transparent 22%),
    radial-gradient(circle at 92% 34%, rgba(255, 198, 14, 0.10), transparent 20%),
    radial-gradient(circle at 15% 68%, rgba(255, 198, 14, 0.12), transparent 24%),
    #020202;
}

/* Home: Hero */
.home-hero {
  position: relative;
  min-height: 760px;
  padding-top: 128px;
}

.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 570px;
}

.hero-left {
  max-width: 500px;
}

.hero-left h1 {
  width: auto;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
}

.hero-left p {
  margin: 52px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  line-height: 1.6;
}

.home-page .btn-primary {
  min-width: 134px;
  min-height: 46px;
  padding: 10px 22px;
  font-size: 14px;
}

.hero-right {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-right::before {
  content: "";
  position: absolute;
  top: 78px;
  right: 80px;
  width: 315px;
  height: 315px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  transform: rotate(19deg);
}

.hero-right img {
  position: relative;
  z-index: 1;
  width: min(460px, 42vw);
  height: auto;
  transform: rotate(11deg);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}

.home-orbit {
  top: 155px;
  left: 38px;
  width: 38px;
  height: 38px;
}

.home-orbit::after {
  top: 17px;
  left: 13px;
  width: 38px;
  height: 38px;
}

.home-triangle {
  width: 54px;
  height: 54px;
}

.home-triangle::after {
  inset: 10px -7px 10px 10px;
}

.home-triangle-top {
  right: 68px;
  bottom: 72px;
}

/* Home: Video */
.video-section {
  margin-top: 10px;
}

.video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.video-head h2 {
  flex: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
}

.video-head p {
 margin: 52px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  line-height: 1.6;
}

.video-box {
  position: relative;
  width: 100%;
}

.video-box img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  padding-left: 5px;
  border: 0;
  border-radius: 50%;
  background: #ffc60e;
  color: #fff;
  font-size: 28px;
  transform: translate(-50%, -50%);
}

/* Home: Partnered Brands */
.brands {
  position: relative;
  overflow: hidden;
  margin-top: 135px;
  text-align: center;
}

.brands h2,
.services h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.brands span,
.services span {
  color: #ffc60e;
}

.home-triangle-brands {
  top: 10px;
  left: 78px;
}

.brand-slider {
  width: 100%;
  overflow: hidden;
  margin: 130px 0;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: scrollBrands 25s linear infinite;
  will-change: transform;
}

.brand-track:hover {
  animation-play-state: paused;
}

.brand-track img {
  flex-shrink: 0;
  width: 210px;
  height: 110px;
  object-fit: contain;
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  99.9% { transform: translateX(calc(-50% - 1px)); }
  100% { transform: translateX(0); }
}

.services {
  padding-top: 25px;
}

/* Home: Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 86px 90px;
  max-width: 1030px;
  margin: 90px auto 85px;
  text-align: center;
}

.service-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255, 198, 14, 0.18);
}

.service-card img {
  width: 48px;
  height: 48px;
  padding: 12px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 199, 14, 0.15);
  box-shadow: 0 0 25px rgba(255, 198, 14, 0.15);
  object-fit: contain;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover img {
  transform: translateY(-8px) scale(1.1);
  background: rgba(255, 199, 14, 0.25);
  box-shadow: 0 0 35px rgba(255, 198, 14, 0.25);
}

.service-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

.service-grid p {
  max-width: 240px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 18px;
  line-height: 1.65;
}

/* Home: Design Category Slider */
.slider-section {
  position: relative;
  padding: 10px 0 110px;
}

.title {
  margin: 0 0 115px;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.home-orbit-slider {
  top: 120px;
  right: 92px;
  left: auto;
}

.slider-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin-bottom: 70px;
}

.slider {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.9s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 220px;
  opacity: 0.5;
  transform: scale(0.8);
  transition: opacity 0.9s ease, transform 0.9s ease, flex-basis 0.9s ease;
}

.slide.active {
  position: relative;
  z-index: 10;
  flex-basis: 310px;
  opacity: 1;
  transform: scale(1.1);
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
}

.slide.active img {
  box-shadow: 0 20px 50px rgba(255, 198, 14, 0.25);
}

.slide.active img:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(255, 198, 14, 0.4);
}

.creative {
  margin: 0;
  color: #fff;
  font-size: 25px;
  letter-spacing: 0;
  text-align: center;
}

/* Home: Contact CTA */
.home-contact {
  padding: 118px 0 62px;
}

.home-contact .contact-wrapper {
  align-items: flex-start;
  margin-bottom: 58px;
}

.home-contact .contact-text {
  font-size: clamp(38px, 5vw, 58px);
}

.home-contact .contact-btn {
  min-width: 260px;
  min-height: 56px;
  font-size: 20px;
}

.home-service-note {
  max-width: 1050px;
  margin: 0 auto;
}

/* =========================================================
   06. Contact Page
   ========================================================= */
.contact-page {
  overflow: hidden;
  background: #050505;
}

/* Contact: Hero */
.contact-hero {
  position: relative;
  min-height: 986px;
  padding: 210px 0 100px;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 198, 14, 0.23), transparent 32%),
    radial-gradient(circle at 81% 40%, rgba(255, 198, 14, 0.10), transparent 24%),
    linear-gradient(115deg, #050505 0%, #080806 48%, #020202 100%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 112px;
  align-items: center;
}

.contact-copy {
  padding-top: 8px;
}

.contact-copy h1 {
  width: auto;
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.24;
}

.contact-copy p {
  margin: 52px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  line-height: 1.6;
}

.talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 192px;
  min-height: 50px;
  border: 1px solid #ffc60e;
  border-radius: 999px;
  color: #ffc60e;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.talk-btn:hover {
  background: #ffc60e;
  color: #050505;
  transform: translateY(-2px);
}

/* Contact: Form */
.contact-panel-wrap {
  display: grid;
  gap: 28px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(7, 7, 7, 0.76);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-form textarea {
  height: 122px;
  min-height: 122px;
  resize: vertical;
}

.quote-form select,
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quote-form select option {
  background: #101010;
  color: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 198, 14, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 198, 14, 0.10);
}

.quote-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: #ffc60e;
  color: #090909;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 198, 14, 0.22);
}

/* Contact: Info Links */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  padding: 0 16px;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.contact-info-item small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-icon {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 198, 14, 0.35);
  border-radius: 50%;
  color: #ffc60e;
  font-size: 17px;
}

/* Contact: CTA */
.contact-page .contact-section {
  padding: 155px 0 66px;
}

.contact-page .contact-wrapper {
  align-items: center;
}

.contact-page .contact-text {
  max-width: 760px;
  font-size: 64px;
  line-height: 1.18;
}

.contact-page .contact-btn {
  margin-top: 18px;
}

.contact-service-copy {
  max-width: 1125px;
  margin: 76px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 21px;
  line-height: 2.06;
  text-align: center;
}

/* Contact: Decorative Shapes */
.contact-orbit {
  width: 62px;
  height: 62px;
  opacity: 0.95;
}

.contact-orbit::after {
  top: 31px;
  left: 21px;
  width: 62px;
  height: 62px;
}

.contact-orbit-left {
  top: 18%;
  left: 4%;
}

.contact-triangle {
  top: 15%;
  right: 5%;
  width: 74px;
  height: 74px;
}

.contact-triangle::after {
  inset: 14px -8px 14px 12px;
}

.contact-spark-left {
  bottom: 9%;
  left: 8%;
}

.contact-spark-right {
  right: 8%;
  bottom: 10%;
  width: 34px;
  transform: rotate(18deg);
}

/* =========================================================
   07. Services Page
   ========================================================= */
.services-page {
  overflow: hidden;
  background: #030303;
}

/* Services: Showcase */
.services-showcase {
  position: relative;
  min-height: 1500px;
  padding: 210px 0 120px;
  background:
    radial-gradient(circle at 11% 18%, rgba(255, 198, 14, 0.23), transparent 24%),
    radial-gradient(circle at 88% 34%, rgba(255, 198, 14, 0.10), transparent 22%),
    linear-gradient(115deg, #060606 0%, #030303 46%, #000 100%);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 120px 0 220px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("assets/img/Home_sec.png") center 40% / 820px auto no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.services-showcase .container {
  position: relative;
  z-index: 2;
}

.services-showcase h1 {
  max-width: 900px;
  margin: 0 auto 120px;
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

/* Services: Cards */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-detail-card {
  min-height: 292px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(8px);
}

.service-detail-card h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 12px 18px;
  border-radius: 9px;
  background: #292a2f;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.service-card-icon {
  display: inline-flex;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffc60e;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  line-height: 1.35;
}

.service-detail-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.services-orbit {
  position: absolute;
  top: 300px;
  left: 10%;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.services-orbit::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 42px;
  height: 42px;
  border: 1px solid #ffc60e;
  border-radius: 50%;
}

.services-triangle {
  position: absolute;
  right: 10%;
  bottom: 200px;
  width: 66px;
  height: 66px;
  border: 2px solid #fff;
  clip-path: polygon(12% 8%, 92% 50%, 12% 92%);
}

.services-triangle::after {
  content: "";
  position: absolute;
  inset: 12px -8px 12px 12px;
  border: 1px solid #ffc60e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.services-spark {
  position: absolute;
  left: 21%;
  bottom: 54px;
  width: 105px;
  height: 34px;
  background:
    linear-gradient(45deg, transparent 40%, #fff 41% 48%, transparent 49%) 0 0 / 26px 34px repeat-x,
    linear-gradient(135deg, transparent 40%, #ffc60e 41% 48%, transparent 49%) 13px 2px / 26px 34px repeat-x;
}

/* Services: Contact CTA */
.services-contact {
  padding: 150px 0 70px;
}

.services-contact .contact-text {
  max-width: 760px;
  font-size: 58px;
  line-height: 1.18;
}

.services-contact .contact-btn {
  min-width: 280px;
  min-height: 58px;
  font-size: 22px;
}

.services-contact-copy {
  max-width: 1040px;
  margin: 70px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

/* =========================================================
   08. Footer
   ========================================================= */
.footer {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 60px 0 58px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 170px 1fr 390px;
  align-items: center;
  gap: 50px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  width: 115px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 58px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffc60e;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  gap: 18px;
}

.footer-right p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.footer .social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #fff;
  transition: color 0.25s ease;
}

.footer .social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer .social a:nth-child(3) svg,
.footer .social a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.footer .social a:hover {
  color: #ffc60e;
}


/* =========================================================
   08A. About Page
   ========================================================= */
.about-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 198, 14, 0.22), transparent 18%),
    radial-gradient(circle at 96% 34%, rgba(255, 198, 14, 0.12), transparent 19%),
    radial-gradient(circle at 86% 83%, rgba(255, 198, 14, 0.14), transparent 22%),
    linear-gradient(180deg, #020202 0%, #060606 55%, #020202 100%);
}

.about-page .container {
  max-width: 1200px;
}

.about-eyebrow {
  margin: 0 0 22px;
  color: #ffc60e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  padding: 178px 0 92px;
  padding-left: 230px;
}

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

.about-hero h1 {
  max-width: 760px;
  margin: 0 0 50px;
  color: #fff;
  font-size: clamp(58px, 7.2vw, 94px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.058em;
}

.about-hero h1 span,
.about-dna-copy h2 strong {
  color: #ffc60e;
}

.about-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 56px;
  width: min(840px, 100%);
  min-height: 188px;
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.60) 48%, rgba(0, 0, 0, 0.35) 100%),
    url("assets/img/video-wrapper.png") center 42% / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.about-intro-card p {
  max-width: 455px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.10em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-location span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc60e;
}

.about-orbit {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
}

.about-orbit::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 38px;
  height: 38px;
  border: 1px solid #ffc60e;
  border-radius: 50%;
}

.about-orbit-left {
  top: 250px;
  left: 5.3%;
}

.about-orbit-right {
  right: 6.5%;
  bottom: 92px;
}

.about-triangle {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  clip-path: polygon(12% 8%, 92% 50%, 12% 92%);
  pointer-events: none;
}

.about-triangle::after {
  content: "";
  position: absolute;
  inset: 10px -6px 10px 10px;
  border: 1px solid #ffc60e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-triangle-hero {
  right: 24%;
  bottom: -22px;
}

.about-dna {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
  gap: 84px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 122px;
}

.about-dna-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 74px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.048em;
}

.about-dna-copy h2 span {
  color: rgba(255, 255, 255, 0.35);
}

.about-dna-copy p {
  max-width: 430px;
  margin: 42px 0 0;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.85;
}

.about-dna-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 14px;
  background: #0f0f0f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.about-dna-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.56) contrast(1.18);
}

.about-stat-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  min-width: 190px;
  padding: 21px 24px;
  border-radius: 12px;
  background: rgba(13, 13, 14, 0.88);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
}

.about-stat-card strong,
.about-stat-card span {
  display: block;
}

.about-stat-card strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.about-stat-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.4;
}

.about-triangle-dna {
  left: 38%;
  bottom: 32px;
  transform: scale(0.75);
}

.about-story {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  align-items: stretch;
  padding-bottom: 92px;
}

.about-story-image,
.about-story-copy {
  min-height: 620px;
}

.about-story-image {
  position: relative;
  overflow: visible;
  border-radius: 8px 0 0 8px;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.78) contrast(1.08);
}

.about-quote {
  position: absolute;
  right: -28px;
  bottom: 42px;
  z-index: 2;
  width: 270px;
  padding: 23px 25px;
  border-radius: 8px;
  background: #ffc60e;
  color: #080808;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.24;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.35);
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 82px;
  background: #0c0c0e;
  border-radius: 0 8px 8px 0;
}

.about-story-copy h2 {
  margin: 0 0 34px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.about-story-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.88;
}

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

.about-philosophy {
  position: relative;
  padding-top: 38px;
  padding-bottom: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.about-section-head {
  margin-bottom: 58px;
  text-align: center;
}

.about-section-head h2 {
  margin: 0 0 10px;
  color: #ffc60e;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  line-height: 1.6;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.about-pillar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.64);
  box-shadow: inset 0 0 28px rgba(255, 198, 14, 0.025);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 198, 14, 0.38);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28), inset 0 0 34px rgba(255, 198, 14, 0.06);
}

.about-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #27272a;
  color: #fff;
}

.about-pillar-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillar-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.about-pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12.5px;
  line-height: 1.72;
}

.about-orbit-philosophy {
  right: 0;
  top: 86px;
  transform: scale(0.82);
}

.about-spark {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: 105px;
  height: 34px;
  background:
    linear-gradient(45deg, transparent 40%, #fff 41% 48%, transparent 49%) 0 0 / 26px 34px repeat-x,
    linear-gradient(135deg, transparent 40%, #ffc60e 41% 48%, transparent 49%) 13px 2px / 26px 34px repeat-x;
}

.about-contact {
  padding: 120px 0 64px;
}

.about-service-note {
  max-width: 1040px;
  margin: 72px auto 0;
}

@media (max-width: 991px) {
  .about-hero {
    padding: 155px 0 72px;
  }

  .about-hero h1 {
    max-width: 680px;
  }

  .about-intro-card,
  .about-dna,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-intro-card {
    gap: 24px;
    min-height: 170px;
  }

  .about-dna {
    gap: 48px;
    padding-bottom: 84px;
  }

  .about-story-copy {
    padding: 54px 42px;
    border-radius: 0 0 8px 8px;
  }

  .about-story-image {
    border-radius: 8px 8px 0 0;
  }

  .about-quote {
    right: 24px;
  }

  .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-contact {
    padding: 92px 0 58px;
  }
}

@media (max-width: 575px) {
  .about-hero {
    padding-top: 132px;
  }

  .about-hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .about-intro-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .about-location {
    white-space: normal;
  }

  .about-dna-copy h2 {
    font-size: 42px;
  }

  .about-dna-visual,
  .about-dna-visual img,
  .about-story-image img,
  .about-story-image,
  .about-story-copy {
    min-height: auto;
  }

  .about-dna-visual img,
  .about-story-image img {
    height: 360px;
  }

  .about-stat-card {
    left: 20px;
    bottom: 20px;
  }

  .about-quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -52px 14px 0;
  }

  .about-story-copy {
    padding: 42px 24px;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-card {
    min-height: auto;
  }
}

/* =========================================================
   09. Responsive - Tablet
   ========================================================= */
@media (max-width: 991px) {
  .container {
    padding: 0 32px;
  }

  .custom-navbar {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
  }

  .custom-navbar .container {
    gap: 18px;
  }

  .custom-navbar .navbar-collapse {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.92);
  }

  .custom-navbar .navbar-nav {
    align-items: flex-start;
    gap: 18px;
  }

  .quote-nav-btn {
    display: none;
  }

  .hero-wrap,
  .video-head,
  .contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-wrap {
    gap: 50px;
  }

  .hero-right {
    align-self: center;
  }

  .hero-right::before {
    right: 50px;
    width: 260px;
    height: 260px;
  }

  .hero-right img {
    width: min(430px, 78vw);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero {
    min-height: auto;
    padding: 150px 0 78px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-copy h1 {
    font-size: 40px;
  }

  .contact-copy p {
    margin: 32px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .contact-text {
    font-size: 44px;
    line-height: 1.2;
  }

  .contact-page .contact-section {
    padding: 92px 0 58px;
  }

  .contact-btn {
    min-width: 260px;
    min-height: 58px;
    font-size: 22px;
  }

  .contact-service-copy {
    margin-top: 46px;
    font-size: 18px;
    line-height: 1.8;
  }

  .services-showcase {
    min-height: auto;
    padding: 160px 0 90px;
  }

  .services-showcase h1 {
    margin-bottom: 70px;
    font-size: 48px;
  }

  .services-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero {
    padding: 155px 0 70px;
  }

  .about-intro-card,
  .about-dna,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-intro-card {
    gap: 24px;
  }

  .about-dna {
    gap: 48px;
    padding-bottom: 82px;
  }

  .about-story-copy {
    padding: 54px 42px;
    border-radius: 0 0 8px 8px;
  }

  .about-story-image {
    border-radius: 8px 8px 0 0;
  }

  .about-quote {
    right: 24px;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-contact {
    padding: 92px 0 58px;
  }

  .services-contact {
    padding: 90px 0 58px;
  }

  .services-contact .contact-text {
    font-size: 44px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 34px;
  }

  .footer-right {
    align-items: center;
    justify-self: center;
  }

  .footer-right p {
    white-space: normal;
  }
}

/* =========================================================
   10. Responsive - Mobile
   ========================================================= */
@media (max-width: 575px) {
  .container {
    padding: 0 22px;
  }

  .home-hero,
  .contact-hero {
    padding-top: 125px;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .contact-copy h1 {
    font-size: 30px;
    line-height: 1.4;
  }

  .contact-copy p {
    font-size: 17px;
  }

  .quote-form {
    padding: 22px;
  }

  .form-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 48px;
  }

  .brand-track img {
    width: 150px;
  }

  .title {
    margin-bottom: 60px;
  }

  .contact-orbit,
  .contact-triangle,
  .contact-spark {
    opacity: 0.45;
  }

  .contact-text {
    font-size: 34px;
  }

  .contact-btn,
  .home-contact .contact-btn {
    min-width: 100%;
  }

  .contact-service-copy {
    font-size: 16px;
    text-align: left;
  }

  .services-showcase {
    padding-top: 135px;
  }

  .services-showcase h1 {
    font-size: 36px;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 132px;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .about-intro-card {
    padding: 20px;
  }

  .about-location {
    white-space: normal;
  }

  .about-dna-copy h2 {
    font-size: 42px;
  }

  .about-dna-visual,
  .about-dna-visual img,
  .about-story-image img,
  .about-story-image,
  .about-story-copy {
    min-height: auto;
  }

  .about-dna-visual img,
  .about-story-image img {
    height: 360px;
  }

  .about-quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -52px 14px 0;
  }

  .about-story-copy {
    padding: 42px 24px;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-card {
    min-height: auto;
  }

  .service-detail-card {
    min-height: auto;
  }

  .services-contact .contact-text {
    font-size: 34px;
  }

  .services-contact-copy {
    font-size: 15px;
    text-align: left;
  }

  .footer {
    padding: 46px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .footer .social {
    gap: 22px;
  }
}
