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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0a0e1a;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

a {
  color: #d4a843;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #e8c36a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wide {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-dark {
  background: #0f1320;
}

.section-gradient {
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1320 100%);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1001;
}
.navbar .logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #d4a843, #b8922c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
}
.navbar .logo .logo-text {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.navbar .logo .logo-text span {
  color: #d4a843;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
@media (max-width: 991px) {
  .navbar .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .navbar .nav-links.active {
    transform: translateX(0);
  }
}
.navbar .nav-links li {
  position: relative;
}
.navbar .nav-links a {
  display: block;
  padding: 0.6rem 1rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.navbar .nav-links a:hover, .navbar .nav-links a.active {
  color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
}
@media (max-width: 991px) {
  .navbar .nav-links a {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    text-align: center;
  }
}
.navbar .nav-links .dropdown {
  position: relative;
}
.navbar .nav-links .dropdown .dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.navbar .nav-links .dropdown .dropdown-toggle::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.7rem;
  opacity: 0.6;
}
.navbar .nav-links .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 991px) {
  .navbar .nav-links .dropdown .dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: unset;
    margin-top: 0;
    border-radius: 8px;
  }
}
.navbar .nav-links .dropdown .dropdown-menu a {
  padding: 0.7rem 1.25rem;
  border-radius: 0;
  font-size: 0.85rem;
}
.navbar .nav-links .dropdown .dropdown-menu a:hover {
  background: rgba(212, 168, 67, 0.1);
}
@media (max-width: 991px) {
  .navbar .nav-links .dropdown .dropdown-menu a {
    font-size: 1rem;
  }
}
.navbar .nav-links .dropdown:hover .dropdown-menu, .navbar .nav-links .dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem !important;
  background: linear-gradient(135deg, #d4a843, #b8922c) !important;
  color: #1a1a2e !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}
.navbar .nav-cta:hover {
  background: linear-gradient(135deg, #e8c36a, #d4a843) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}
.navbar .hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 991px) {
  .navbar .hamburger {
    display: flex;
  }
}

body {
  padding-top: 70px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1225 50%, #111b36 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #0a0e1a, transparent);
  pointer-events: none;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero .hero-content {
    text-align: center;
    max-width: 100%;
  }
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #d4a843;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero .hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero .hero-title .highlight {
  background: linear-gradient(135deg, #d4a843, #e8c36a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-desc {
  font-size: 1.15rem;
  color: #8892a4;
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero .hero-desc {
    margin: 0 auto 2rem;
  }
}
.hero .hero-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero .hero-markets {
    justify-content: center;
  }
}
.hero .hero-markets .market-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #e0e0e0;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero .hero-markets .market-chip .flag-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.hero .hero-markets .market-chip .flag-icon.flag-usa {
  background: linear-gradient(180deg, #b22234 0 16%, #ffffff 16% 32%, #b22234 32% 48%, #ffffff 48% 64%, #b22234 64% 80%, #ffffff 80% 100%);
}
.hero .hero-markets .market-chip .flag-icon.flag-usa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 55%;
  background: #3c3b6e;
}
.hero .hero-markets .market-chip .flag-icon.flag-uae {
  background: linear-gradient(180deg, #00732f 0 33%, #ffffff 33% 66%, #000000 66% 100%);
}
.hero .hero-markets .market-chip .flag-icon.flag-uae::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: #ff0000;
}
.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .hero-actions {
    justify-content: center;
  }
}
.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .hero .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
}
.hero .hero-stats .stat .stat-number {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #d4a843;
}
.hero .hero-stats .stat .stat-label {
  font-size: 0.85rem;
  color: #8892a4;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d4a843, #b8922c);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e8c36a, #d4a843);
  box-shadow: 0 6px 30px rgba(212, 168, 67, 0.35);
  color: #1a1a2e;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: #d4a843;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.05);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4a843;
  margin-bottom: 1rem;
}
.section-header .section-label::before, .section-header .section-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #d4a843;
  opacity: 0.4;
}
.section-header .section-title {
  margin-bottom: 1rem;
}
.section-header .section-desc {
  color: #8892a4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-label-left {
  justify-content: flex-start;
}
.section-label-left::before {
  display: none;
}

.section-desc-left {
  margin-left: 0;
  max-width: 100%;
}

.rental-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 991px) {
  .rental-section {
    grid-template-columns: 1fr;
  }
}

.rental-copy {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.08), rgba(17, 24, 39, 0.85));
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 28px;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .rental-copy {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
}

.rental-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.rental-point {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: rgba(10, 14, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.rental-point strong {
  color: #ffffff;
  font-size: 1rem;
}

.rental-point span {
  color: #b8c0cf;
  font-size: 0.92rem;
}

.rental-form-wrap {
  height: 100%;
}

.rental-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.rental-points-compact {
  margin-bottom: 1.75rem;
}

.rental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
@media (max-width: 600px) {
  .rental-actions {
    flex-direction: column;
  }
}

.rental-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
@media (max-width: 991px) {
  .rental-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.rental-highlight {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(10, 14, 26, 0.96));
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 22px;
  padding: 1.5rem;
}

.rental-highlight h3 {
  margin-bottom: 0.65rem;
}

.rental-highlight p {
  color: #b8c0cf;
  margin-bottom: 0;
}

.compact-form-section {
  margin-top: 0;
}

.form-section-title {
  text-align: center;
  margin-bottom: 0.65rem;
}

.form-section-desc {
  text-align: center;
  color: #8892a4;
  margin-bottom: 1.75rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a843, transparent);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-card:hover {
  background: #1a2332;
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-card .benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.benefit-card .benefit-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.benefit-card .benefit-desc {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a843, #b8922c);
  color: #1a1a2e;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}
.process-step .step-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.process-step .step-desc {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .service-focus-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.18);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.service-card-featured {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.12), #111827 65%);
  border-color: rgba(212, 168, 67, 0.28);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.12);
  color: #d4a843;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #a6afbf;
  margin-bottom: 1.1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #d7dce6;
  font-size: 0.8rem;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cars-grid {
    grid-template-columns: 1fr;
  }
}

.car-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.2);
}
.car-card .car-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.car-card .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card .car-image:hover img {
  transform: scale(1.05);
}
.car-card .car-image .car-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.car-card .car-image .car-badge.badge-usa {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.car-card .car-image .car-badge.badge-uae {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.car-card .car-image .car-sold {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-card .car-image .car-sold span {
  background: #ef4444;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.car-card .car-info {
  padding: 1.25rem;
}
.car-card .car-info .car-title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.car-card .car-info .car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.car-card .car-info .car-specs .spec {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 0.78rem;
  color: #8892a4;
}
.car-card .car-info .car-specs .spec .spec-icon {
  font-size: 0.85rem;
}
.car-card .car-info .car-price {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4a843;
}

.contact-form-section {
  background: #0f1320;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 0.25rem;
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  transition: all 0.15s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: #8892a4;
  opacity: 0.6;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group .form-hint {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8892a4;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option {
  background: #111827;
  color: #e0e0e0;
}

.custom-spec-group {
  display: none;
}
.custom-spec-group.visible {
  display: block;
}

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

.form-message {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}
.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #0f1320 0%, #0a0e1a 100%);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
}
.page-hero .page-hero-title {
  position: relative;
  margin-bottom: 1rem;
}
.page-hero .page-hero-desc {
  position: relative;
  color: #8892a4;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #8892a4;
}
.page-hero .breadcrumb a {
  color: #8892a4;
}
.page-hero .breadcrumb a:hover {
  color: #d4a843;
}
.page-hero .breadcrumb .separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.page-hero .breadcrumb .current {
  color: #d4a843;
}

.content-block {
  margin-bottom: 3rem;
}
.content-block .content-title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(212, 168, 67, 0.15);
}
.content-block p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-block ul, .content-block ol {
  color: #e0e0e0;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content-block ul li, .content-block ol li {
  margin-bottom: 0.5rem;
}
.content-block ul li::marker, .content-block ol li::marker {
  color: #d4a843;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pricing-card.featured {
  border-color: #d4a843;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.05), #111827);
}
.pricing-card.featured::before {
  content: "Nejoblíbenější";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, #d4a843, #b8922c);
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
}
.pricing-card .pricing-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.pricing-card .pricing-price {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #d4a843;
  margin-bottom: 0.25rem;
}
.pricing-card .pricing-price small {
  font-size: 0.4em;
  font-weight: 400;
  color: #8892a4;
}
.pricing-card .pricing-desc {
  color: #8892a4;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.pricing-card .pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card .pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-card .pricing-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  font-size: 0.85rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active {
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.1);
}
.faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  gap: 1rem;
  user-select: none;
}
.faq-item .faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}
.faq-item .faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #d4a843;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item .faq-answer .faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: #8892a4;
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

.site-footer {
  background: #0f1320;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.site-footer .footer-brand .footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #d4a843, #b8922c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1a1a2e;
  font-size: 1.1rem;
}
.site-footer .footer-brand .footer-logo .logo-text {
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
}
.site-footer .footer-brand .footer-logo .logo-text span {
  color: #d4a843;
}
.site-footer .footer-brand .footer-desc {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.site-footer .footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.site-footer .footer-col ul {
  list-style: none;
}
.site-footer .footer-col ul li {
  margin-bottom: 0.6rem;
}
.site-footer .footer-col ul li a {
  color: #8892a4;
  font-size: 0.9rem;
  transition: all 0.15s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #d4a843;
  padding-left: 4px;
}
.site-footer .footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #8892a4;
  font-size: 0.9rem;
}
.site-footer .footer-col .contact-item .contact-icon {
  width: 20px;
  text-align: center;
  color: #d4a843;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.site-footer .footer-bottom .footer-copyright {
  font-size: 0.85rem;
  color: #8892a4;
}
.site-footer .footer-bottom .footer-social {
  display: flex;
  gap: 0.75rem;
}
.site-footer .footer-bottom .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8892a4;
  font-size: 0.9rem;
  transition: all 0.15s ease;
}
.site-footer .footer-bottom .footer-social a:hover {
  background: rgba(212, 168, 67, 0.15);
  color: #d4a843;
  transform: translateY(-2px);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

.delay-11 {
  transition-delay: 1.1s;
}

.delay-12 {
  transition-delay: 1.2s;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.empty-state .empty-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #8892a4;
}
.empty-state .empty-desc {
  color: #8892a4;
  font-size: 0.9rem;
  opacity: 0.7;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) invert(0.92) contrast(0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateX(4px);
}
.contact-info-card .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card .info-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.contact-info-card .info-content p, .contact-info-card .info-content a {
  color: #8892a4;
  font-size: 0.9rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .service-features {
    grid-template-columns: 1fr;
  }
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.service-feature .feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.service-feature .feature-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.service-feature .feature-desc {
  color: #8892a4;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #d4a843;
}

.text-muted {
  color: #8892a4;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(212, 168, 67, 0.2);
  border-top-color: #d4a843;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0e1a;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}