@font-face {
  font-family: 'TT Mussels';
  src: url('/fonts/TT-Mussels-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'TT Mussels';
  src: url('/fonts/TT-Mussels-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'TT Mussels';
  src: url('/fonts/TT-Mussels-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  --gold: #c9a84c;
  --gold-dark: #8B6914;
  --gold-light: #e8c97a;
  --black: #0a0a0a;
  --dark-navy: #0d1520;
  --dark-blue: #111a27;
  --white: #ffffff;
  --beige: #d4b896;
  --text-muted: rgba(255,255,255,0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { font-weight: 700; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  display: block;
}

.nav-mobile-menu {
  display: none;
}

#home {
  height: calc(100vh - 64px);
  position: relative;
  margin-top: 64px;
  overflow: hidden;
  
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.75) 100%);
  z-index: 1;
}

.hero-corner {
  position: absolute;
  width: 120px; height: 120px;
  border-color: rgba(201,168,76,0.4);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}
.hero-corner.tl {top: 5%;left: 20px;border-width: 2px 0 0 2px;}
.hero-corner.tr {top: 5%;right: 20px;border-width: 2px 2px 0 0;}
.hero-corner.bl {bottom: 10%;left: 20px;border-width: 0 0 2px 2px;}
.hero-corner.br {bottom: 10%;right: 20px;border-width: 0 2px 2px 0;}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.hero-arrow:hover { border-color: var(--gold); background: rgba(0,0,0,0.6); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow--prev { left: 28px; }
.hero-arrow--next { right: 28px; }

.hero-dots {
  position: absolute;
  bottom: 70px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.5;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.badge-diamond {
  width: 22px; height: 22px;
  background: #888;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.badge-text {
  padding: 8px 20px 8px 12px;
  font-family: 'TT Mussels', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

#our-team {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: url('/images/team_bg.webp') center/cover no-repeat;
  opacity: 0.75;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.35);
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.welcome-logo-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.welcome-badge-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.welcome-banner-text {
  font-family: 'TT Mussels', sans-serif;
  font-weight: 900; /* Black */
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}


.welcome-hpg {
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -2px;
  margin-top: 2px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.welcome-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 400;
}

.about-text-wrap {
  width: 100%;
  max-width: 1050px;
}

.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--white);
  font-weight: 400;
}

.about-text p {
  margin-bottom: 16px;
  text-align: justify;
}

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

#this-is {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  min-height: 600px;
}

.this-is-bg {
  position: absolute;
  inset: 0;
  background: url('/images/this_bg.webp') center/cover no-repeat;
}

.this-is-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.2) 50%,
    rgba(10,10,10,0.75) 100%
  );
}

.this-is-car-img { display: none; }

.this-is-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.this-is-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
  text-align: center;
  text-shadow:
    0 0 20px rgba(255,255,255,0.9),
    0 0 40px rgba(255,255,255,0.5),
    0 0 80px rgba(255,255,255,0.2);
}

.this-is-right {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
}

.this-is-word {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.6);
}

#service {
  background: #01070f;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  min-height: 600px;
}

.service-bg { display: none; }

.service-car-outline {
    position: absolute;
    left: -55%;
    top: 50%;
    transform: translateY(-50%);
    width: 75%;
    height: auto;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
}

.service-left {
  width: 20%;
}

.service-right {
  width: 80%;
}

.service-new-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-align: left;
}

.service-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: var(--white);
  font-weight: 300;
}

.service-text p {
  text-align: justify;
  margin-bottom: 28px;
}

.service-text p:last-child { margin-bottom: 0; }

.service-text strong {
  font-weight: 700;
  color: var(--white);
}

#ideal-for {
  background: var(--black);
  display: flex;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
}

.ideal-left {
  width: 44%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.ideal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.ideal-left:hover .ideal-photo {
  transform: scale(1.03);
}

.ideal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 80px;
  border-left: 1px solid rgba(201,168,76,0.15);
  background: linear-gradient(135deg, rgba(13,21,32,0.95) 0%, rgba(10,10,10,1) 100%);
}

.ideal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 44px;
  position: relative;
}

.ideal-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
  opacity: 0.6;
}

.ideal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.ideal-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.5px;
  transition: color 0.2s, padding-left 0.25s;
  cursor: default;
}

.ideal-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ideal-item:hover {
  color: var(--gold);
  padding-left: 10px;
}
.ideal-item {
  cursor: pointer;
  user-select: none;
}

.ideal-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 0;
  line-height: 1.5;
}

.ideal-item.open .ideal-drawer {

}

.ideal-drawer span {
  display: block;
  padding: 8px 0 4px;
}

#difference {
  position: relative;
  padding: 80px 40px 60px;
  border-top: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}

.diff-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.diff-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.diff-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
}

.diff-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.diff-heading-top {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.diff-heading-line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.diff-heading-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.55));
}
.diff-heading-line:last-child {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.55));
}
.diff-heading-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.diff-heading-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.diff-heading-sub em { font-style: italic; }

.diff-table {
  position: relative;
  z-index: 1;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
}

.diff-col { display: flex; flex-direction: column; }

.diff-col-hdr {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 16px;
  line-height: 1.5;
}
.diff-col-hdr--with {
  background: rgba(180,145,80,0.35);
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.diff-col-hdr--without {
  background: rgba(40,40,50,0.6);
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.diff-row--last { border-bottom: none; }

.diff-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-ico svg { width: 22px; height: 22px; }
.diff-ico--gold { border: 1.5px solid rgba(201,168,76,0.65); color: var(--gold); }
.diff-ico--gray { border: 1.5px solid rgba(255,255,255,1); color: rgba(255,255,255,1); }

.diff-rtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.diff-rtitle--gold { color: var(--gold); }
.diff-rtitle--gray { color: rgba(255,255,255,0.45); }

.diff-rdesc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.diff-vs {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: -1;
}
.diff-vs img {
  max-width: 700px;
}

.diff-sat {
  padding: 18px 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: auto;
}
.diff-sat--without {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.diff-sat-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.diff-sat-body { display: flex; align-items: center; gap: 14px; }

.diff-ring-wrap {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.diff-ring-wrap svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.diff-ring-wrap span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--white);
}

.diff-sat-info { display: flex; flex-direction: column; gap: 5px; }
.diff-stars { font-size: 18px; letter-spacing: 2px; line-height: 1; }
.sg { color: var(--gold); }
.sd { color: rgba(255,255,255,0.18); }
.diff-sat-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.diff-quote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 600px;
  margin: 36px auto 0;
  padding: 16px 36px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  background: rgba(10,10,10,0.55);
}
.diff-quote svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.diff-quote span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.7;
}

#clients {
  background: var(--black);
  padding: 80px 60px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.clients-heading-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-logo {
  background: var(--white);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.client-logo:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.client-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.2s;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

#partners {
  padding: 60px 40px 80px;
  background: #0a0a0a;
  text-align: center;
}

.partners-heading-wrap {
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#submit-request {
  background: var(--black);
  padding: 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.request-title {
  text-align: center;
  font-family: 'TT Mussels', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.request-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input {
  background: transparent;
  border: 1px solid rgba(255,255,255,1);
  border-radius: 50px;
  padding: 18px 28px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus { border-color: var(--gold); }

.form-textarea {
  border-radius: 30px;
  resize: none;
  height: 80px;
}

.btn-hpg {
  display: inline-block;
  position: relative;
  padding: 14px 48px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-hpg::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.35s ease;
  z-index: 0;
}

.btn-hpg:hover::before { left: 0; }
.btn-hpg:hover { color: var(--black); }

.btn-hpg span {
  position: relative;
  z-index: 1;
}

.form-submit {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 48px;
  overflow: hidden;
  position: relative;
  transition: color 0.35s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  align-self: center;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.35s ease;
  z-index: 0;
}

.form-submit:hover::before { left: 0; }
.form-submit:hover { color: var(--black); }

.form-submit span {
  position: relative;
  z-index: 1;
}

#contact {
  background: var(--dark-navy);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  background: url('/images/contact_bg.webp') center/cover no-repeat;
  opacity: 0.6;
}

.contact-title {
  text-align: center;
  font-family: 'TT Mussels', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px 48px 48px;
  position: relative;
  overflow: hidden;
  background: rgba(5,12,22,0.4);
  backdrop-filter: blur(6px);
}

.contact-card-bg {
  position: absolute;
  inset: 0;
  background: url('/images/contact_bg.webp') center/cover no-repeat;
  opacity: 0.5;
}

.contact-card:first-child .contact-card-bg {
  background-position: 25% center;
}

.contact-card:last-child .contact-card-bg {
  background-position: 75% center;
}

.contact-card-title {
  font-family: 'TT Mussels', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.contact-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg {
  width: 28px; height: 28px;
  stroke: white; fill: none; stroke-width: 1.5;
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.social-btn {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.social-btn svg {
  width: 22px; height: 22px;
  stroke: white; fill: none; stroke-width: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

footer {
  background: var(--black);
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.title-theme-style {
    font-family: 'TT Mussels', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: none;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {

  nav {
    padding: 0 20px;
    height: 56px;
  }

  .nav-links { display: none; }

  .nav-hamburger { display: flex; }

  .nav-mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 100%;
    background: rgba(8,8,10,0.98);
    backdrop-filter: blur(12px);
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-mobile-menu.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    gap: 4px;
  }

  .mobile-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-link:last-child { border-bottom: none; }

  .mobile-link:hover, .mobile-link:active {
    color: var(--gold);
    padding-left: 10px;
  }

  .nav-hamburger.active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.active span:last-child {
    transform: translateY(0px) rotate(-45deg);
  }
  .nav-hamburger span {
    transition: transform 0.25s ease;
  }

  #home { height: calc(100vh - 56px); margin-top: 56px; }

  .hero-arrow { display: none; }

  .hero-dots { bottom: 50px; }

  .hero-corner { display: none; }

  #our-team { padding: 80px 24px; }

  .about-content { gap: 36px; }

  .welcome-hpg { font-size: 90px; }

  .welcome-banner-text { font-size: 18px; }

  .welcome-diamond { width: 36px; height: 36px; }

  .about-text { font-size: 15px; }

  #this-is { padding: 70px 24px; min-height: auto; }

  .this-is-title { font-size: 22px; text-align: center; }

  .this-is-right { align-self: center; text-align: center; }

  .this-is-word { font-size: 36px; letter-spacing: 3px; }

  #service { padding: 70px 24px; }

  .service-content { justify-content: center; }

  .service-right { width: 100%; }

  .service-car-outline { width: 100%; left: 0; top: 0; transform: none; opacity: 0.2; height: 300px; object-fit: cover; }

  .service-new-title { font-size: 30px; }

  .service-text { font-size: 16px; }

  #ideal-for {
    flex-direction: column;
  }

  .ideal-left {
    width: 100%;
    height: 280px;
  }

  .ideal-right {
    padding: 56px 24px;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  .ideal-title { font-size: 28px; margin-bottom: 32px; }

  .ideal-item { font-size: 16px; padding: 14px 0; }

  #clients { padding: 70px 24px; }

  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  #submit-request { padding: 70px 24px; }

  .request-title { font-size: 22px; }

  .request-form { max-width: 100%; }

  #contact { padding: 70px 24px; }

  .contact-title { font-size: 28px; }

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

  .contact-card { padding: 32px 24px; }

  .contact-card-title { font-size: 22px; }

  .contact-info-item { font-size: 16px; }

  .section-badge .badge-text { font-size: 18px; }

  .badge-diamond { width: 18px; height: 18px; }

  footer { padding: 32px 24px; }

  .footer-links { gap: 16px; }

  
  #difference { padding: 56px 16px 48px; }
  .diff-heading-main { font-size: 20px; letter-spacing: 1px; white-space: normal; }
  .diff-heading-top { font-size: 13px; letter-spacing: 4px; }
  .diff-table { grid-template-columns: 1fr; }
  .diff-vs { display: none; }
  .diff-col--without { border-top: 2px solid rgba(255,255,255,0.1); }
  .diff-col-hdr--with { clip-path: none; }
  .diff-row { padding: 12px 14px; }
  .diff-quote { padding: 14px 20px; border-radius: 12px; max-width: 100%; }
  .diff-quote span { font-size: 10px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
  .welcome-hpg { font-size: 70px; }
  .welcome-banner-text { font-size: 15px; }
  .welcome-diamond { width: 28px; height: 28px; }
  .welcome-sub { font-size: 11px; letter-spacing: 4px; }

  .this-is-word { font-size: 28px; }

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

  .contact-socials { gap: 10px; }
  .social-btn { width: 44px; height: 44px; }

  .hero-scroll-hint { display: none; }

  
  .diff-heading-main { font-size: 16px; }
  .diff-heading-top { font-size: 11px; letter-spacing: 3px; }
  .diff-ico { width: 38px; height: 38px; }
  .diff-ico svg { width: 18px; height: 18px; }
  .diff-rtitle { font-size: 11px; }
  .diff-rdesc { font-size: 12px; }
  .diff-ring-wrap { width: 52px; height: 52px; }
  .diff-ring-wrap span { font-size: 13px; }
  .diff-stars { font-size: 15px; }
  .diff-quote span { font-size: 9px; letter-spacing: 1px; }

  
  .form-input { padding: 14px 20px; font-size: 14px; }
  .form-submit { padding: 12px 32px; font-size: 13px; }

  
  .contact-info-item { font-size: 14px; gap: 12px; }
  .contact-card { padding: 24px 16px; }

  
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }
  .footer-links a { font-size: 12px; }
}

.form-status {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  min-height: 20px;
  transition: opacity 0.3s;
}
.form-status.success { color: var(--gold); }
.form-status.error { color: #e05555; }

.contact-next-btn {
  align-self: flex-end;
  padding: 12px 36px;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }

footer {
  background: #050a0f;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 40px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

#difference-test img {
  width: 100%;
}

@media (max-width: 1400px) {
  .welcome-hpg { font-size: 130px; }
  .diff-heading-main { font-size: 34px; }
  .clients-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 1200px) {
  #home { height: 350px; margin-top: 56px; }
  .welcome-hpg { font-size: 110px; }

  .this-is-word { font-size: 48px; }

  .service-car-outline { width: 50%; }
  .service-right { width: 55%; }

  .diff-heading-main { font-size: 30px; }
  .diff-table { max-width: 96%; }
  .diff-rtitle { font-size: 11px; }
  .diff-rdesc { font-size: 12px; }

  .clients-grid { grid-template-columns: repeat(5, 1fr); }

  .contact-grid { gap: 20px; }
  .contact-card { padding: 36px 32px; }
  .contact-info-item { font-size: 17px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; height: 56px; }
  .hero-slide {  background-size: contain;}

  #our-team { padding: 70px 20px; }
  .welcome-hpg { font-size: 100px; }
  .about-text { font-size: 15px; }

  #this-is { padding: 60px 20px; }
  .this-is-title { font-size: 20px; }
  .this-is-word { font-size: 32px; letter-spacing: 3px; }

  #service { padding: 60px 20px; min-height: auto; }
  .service-car-outline { opacity: 0.15; width: 100%; left: 0; top: 0; transform: none; height: 280px; object-fit: cover; }
  .service-content { justify-content: center; display:block; }
  .service-right { width: 100%; }
  .service-new-title { font-size: 28px; }
  .service-text { font-size: 15px; }

  #ideal-for { flex-direction: column; }
  .ideal-left { width: 100%; height: 260px; }
  .ideal-right { padding: 48px 20px; border-left: none; border-top: 1px solid rgba(201,168,76,0.15); }
  .ideal-title { font-size: 26px; margin-bottom: 28px; }
  .ideal-item { font-size: 15px; padding: 13px 0; }

  #difference { padding: 50px 16px 40px; }
  .diff-heading-main { font-size: 18px; white-space: normal; letter-spacing: 1px; }
  .diff-heading-top { font-size: 12px; letter-spacing: 3px; }
  .diff-table { grid-template-columns: 1fr; }
  .diff-vs { display: none; }
  .diff-col--without { border-top: 2px solid rgba(255,255,255,0.1); }
  .diff-col-hdr--with, .diff-col-hdr--without { clip-path: none; }
  .diff-row { padding: 12px 16px; gap: 12px; }
  .diff-ico { width: 40px; height: 40px; }
  .diff-ico svg { width: 18px; height: 18px; }
  .diff-quote { padding: 14px 20px; border-radius: 14px; max-width: 100%; }
  .diff-quote span { font-size: 10px; }

  #clients { padding: 60px 20px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .clients-heading-wrap { margin-bottom: 40px; }

  #submit-request { padding: 60px 20px; }
  .request-title { font-size: 20px; letter-spacing: 1px; margin-bottom: 40px; }

  #contact { padding: 60px 20px; }
  .contact-title { font-size: 26px; margin-bottom: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 28px 20px; }
  .contact-card-title { font-size: 20px; margin-bottom: 24px; }
  .contact-info-item { font-size: 15px; gap: 14px; }
  .contact-socials { margin-top: 24px; }

  footer { padding: 32px 20px; }
  .footer-links { gap: 14px; }
}

@media (max-width: 360px) {
  .welcome-hpg { font-size: 60px; }
  .welcome-banner-text { font-size: 13px; }
  .this-is-word { font-size: 24px; }
  .diff-heading-main { font-size: 14px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .form-input { padding: 12px 16px; font-size: 13px; }
  .contact-card { padding: 20px 14px; }
  .footer-links { flex-direction: column; align-items: center; gap: 10px; }
}