@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.grad {
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-bg {
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left logo right";
  align-items: center;
  padding: 28px 64px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
nav .nav-left {
  grid-area: left;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 48px;
}
nav .nav-right {
  grid-area: right;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 48px;
}
nav .nav-logo {
  grid-area: logo;
}
nav .logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
nav a:hover {
  color: #fdc700;
}

.nav-toggle {
  display: none;
  grid-area: toggle;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.nav-mobile.open {
  visibility: visible;
  opacity: 1;
}
.nav-mobile a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 14px 32px;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: #fdc700;
}

@media (min-width: 769px) {
  .nav-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . toggle";
    padding: 20px 24px;
  }
  nav .nav-left,
  nav .nav-right {
    display: none;
  }
  nav .logo {
    height: 44px;
  }
  .nav-toggle {
    display: flex;
  }
}
.hero {
  height: 75vh;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  max-height: 850px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s linear forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.18);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.5) 75%, rgb(10, 10, 10) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 80px 0;
  max-width: 1100px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 104px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
}
.hero h1 span {
  display: block;
}
.hero h1 .grad {
  display: inline-block;
  padding-bottom: 0.1em;
}
.hero p {
  margin-top: 24px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero-indicators button {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hero-indicators button.active {
  width: 56px;
  background: linear-gradient(90deg, #fdc700, #ff6900);
}

.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 64px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-caption .dash {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1,
.hero-content p,
.hero-content .hero-btns {
  animation: heroRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content h1 {
  animation-delay: 0.15s;
}
.hero-content p {
  animation-delay: 0.3s;
}
.hero-content .hero-btns {
  animation-delay: 0.45s;
}

.hero-caption {
  animation: heroRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .hero-content p,
  .hero-content .hero-btns,
  .hero-caption {
    animation: none;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 85vh;
    min-height: 500px;
    max-height: none;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero h1 {
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 17px;
    margin-top: 16px;
  }
  .hero-btns {
    margin-top: 28px;
  }
  .hero-caption {
    display: none;
  }
  .hero-indicators {
    bottom: 24px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-btns a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.btn-primary {
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  padding: 15px 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

section {
  padding: 96px 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.section-header p {
  margin-top: 16px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  section {
    padding: 80px 48px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 64px 24px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 36px;
  }
  .section-header p {
    font-size: 17px;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 56px 20px;
  }
  .section-header h2 {
    font-size: 32px;
  }
}
.services {
  background: #0a0a0a;
}

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

.service-card {
  background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(255, 105, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 105, 0, 0.08);
}
.service-card.highlighted {
  border-color: rgba(255, 105, 0, 0.5);
  box-shadow: 0 4px 6px -4px rgba(255, 105, 0, 0.1), 0 10px 15px -3px rgba(255, 105, 0, 0.1);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
}
.service-icon svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "icon desc";
    align-items: start;
    column-gap: 16px;
    padding: 20px;
  }
  .service-card h3 {
    grid-area: title;
  }
  .service-card p {
    grid-area: desc;
  }
  .service-icon {
    grid-area: icon;
    margin-bottom: 0;
  }
}
.about {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.about-text > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-text > p + p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pillar-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img.tall {
  height: 256px;
}
.about-img.short {
  height: 192px;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-col.offset {
  padding-top: 32px;
}

@media (max-width: 1024px) {
  .about-inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text > p {
    font-size: 16px;
  }
  .about-images {
    grid-template-columns: 1fr 1fr;
  }
  .about-img.tall {
    height: 200px;
  }
  .about-img.short {
    height: 152px;
  }
  .about-col.offset {
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .about-images {
    grid-template-columns: 1fr;
  }
  .about-col.offset {
    padding-top: 0;
  }
  .about-img.tall, .about-img.short {
    height: 220px;
  }
}
.work {
  background: #0a0a0a;
}

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

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  cursor: pointer;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.work-card:hover img {
  transform: scale(1.05);
}
.work-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.work-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  width: fit-content;
}

@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.work-card .work-overlay {
  transition: background 0.3s;
}
.work-card:hover .work-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.15) 60%);
}
.work-card .work-card-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.work-card .work-card-view svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.work-card:hover .work-card-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
}
.work-modal.open {
  visibility: visible;
}
.work-modal.open .work-modal-backdrop {
  opacity: 1;
}
.work-modal.open .work-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.work-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.work-modal-panel {
  position: relative;
  z-index: 1;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 920px;
  max-height: 86vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.work-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}
.work-modal-close svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.work-modal-slideshow {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 400px;
  border-radius: 20px 0 0 20px;
  transform: translateZ(0);
}

.work-modal-images {
  position: absolute;
  inset: 0;
}

.work-modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.work-modal-img.active {
  opacity: 1;
}

.work-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.work-modal-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}
.work-modal-arrow.prev {
  left: 12px;
}
.work-modal-arrow.next {
  right: 12px;
}
.work-modal-arrow svg {
  width: 18px;
  height: 18px;
}

.work-modal-img-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.work-modal-img-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.work-modal-img-dots button.active {
  background: #fff;
  transform: scale(1.35);
}

.work-modal-info {
  overflow-y: auto;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.work-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.work-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}
.work-modal-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.work-modal-tag.tag-category {
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
  color: #000;
}
.work-modal-tag.tag-meta {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.work-modal-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.work-modal-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .work-modal-panel {
    max-width: 760px;
  }
  .work-modal-info {
    padding: 32px 28px;
  }
  .work-modal-title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .work-modal {
    padding: 0;
    align-items: flex-end;
  }
  .work-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: 92vh;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(48px) scale(1);
  }
  .work-modal.open .work-modal-panel {
    transform: translateY(0) scale(1);
  }
  .work-modal-slideshow {
    min-height: 0;
    aspect-ratio: 4/3;
    border-radius: 20px 20px 0 0;
  }
  .work-modal-info {
    padding: 28px 24px 36px;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 50vh;
  }
  .work-modal-title {
    font-size: 20px;
  }
}
.testimonials {
  background: #0a0a0a;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial-stage {
  position: relative;
  min-height: 200px;
}

.testimonial-quote-mark {
  position: absolute;
  top: -16px;
  left: -12px;
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  pointer-events: none;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 56px;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.testimonial-service {
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
  color: #000;
}

.testimonial-date {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-body {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testimonial-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.testimonial-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  min-width: 200px;
}

.testimonial-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-label .dash {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.testimonial-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(253, 199, 0, 0.4);
}
.testimonial-nav button:active {
  transform: scale(0.95);
}
.testimonial-nav button svg {
  width: 18px;
  height: 18px;
}

.testimonial-progress {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.testimonial-progress .current {
  color: #fdc700;
  font-size: 18px;
}

.testimonial-dots {
  display: flex;
  gap: 6px;
}
.testimonial-dots button {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.testimonial-dots button.active {
  width: 40px;
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
}

@media (max-width: 1024px) {
  .testimonials-inner {
    padding: 64px 48px;
    gap: 40px;
  }
  .testimonial-side {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 48px;
    gap: 32px;
  }
  .testimonial-stage {
    min-height: 300px;
  }
  .testimonial-slide {
    padding-left: 40px;
  }
  .testimonial-quote-mark {
    font-size: 100px;
    top: -12px;
    left: -8px;
  }
  .testimonial-body {
    font-size: 18px;
  }
  .testimonial-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    flex-wrap: wrap;
    gap: 16px;
  }
  .testimonial-label {
    display: none;
  }
  .testimonial-progress {
    order: 1;
  }
  .testimonial-nav {
    order: 2;
  }
  .testimonial-dots {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .testimonial-stage {
    min-height: 340px;
  }
  .testimonial-slide {
    padding-left: 28px;
  }
}
.contact {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .btn-primary {
  width: 100%;
  font-size: 16px;
}
.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: rgba(46, 205, 143, 0.12);
  border: 1px solid rgba(46, 205, 143, 0.45);
  color: #6ee7b7;
}
.form-status.error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.45);
  color: #ff9a9a;
}

.form-error {
  display: none;
  color: #ff8a8a;
  font-size: 13px;
  line-height: 1.4;
}

label .optional {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 12px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 105, 0, 0.5);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: #1a1a1a;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: rgba(255, 107, 107, 0.8);
}
.form-group.error .form-error {
  display: block;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-item-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.contact-item-text p a {
  color: rgba(255, 255, 255, 0.6);
}

.why-choose {
  margin-top: 32px;
}
.why-choose h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-list li::before {
  content: "✓";
  color: #fdc700;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .contact-inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 80px;
  text-align: center;
}
footer img {
  height: 52px;
  margin-bottom: 20px;
}
footer .serve {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
footer .links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
footer .links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 24px;
  }
  footer .serve {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
