@font-face {
  font-family: 'BPG Studio Caps';
  src: url('../fonts/bpg_le_studio_02_caps.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #121212;
  --main-text: #ffffff;
  --small-text: #b3b0b0;
  --gold: #b08a33;
  --gold-hover: #c69a39;
  --header-btn-border: #b08a33;
  --max-width: 1349px;
}

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

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--bg-color);
  color: var(--main-text);
  font-family: 'BPG Studio Caps', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.hero {
  position: relative;
  width: 100%;
  min-height: 738px;
  background: var(--bg-color);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 54px;
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 28px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  flex: 0 0 auto;
}

.logo {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 30px;
  margin-right: auto;
  padding-left: 70px;
}

.main-nav a {
  font-size: 18px;
  line-height: 1;
  color: var(--main-text);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.78;
}

.header-btn {
  min-width: 149px;
  height: 50px;
  border: 1px solid var(--header-btn-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  background: transparent;
  transition: all 0.2s ease;
}

.header-btn:hover {
  border-color: var(--gold-hover);
  color: var(--main-text);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 640px;
  padding-top: 84px;
}

.hero-content {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: 670px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  letter-spacing: 0;
  margin-bottom: 34px;
}

.hero-content p {
  font-size: 14px;
  line-height: 1.35;
  color: var(--small-text);
  max-width: 540px;
}

.hero-content p + p {
  margin-top: 26px;
}

.hero-btn {
  margin-top: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 269px;
  height: 58px;
  border: 1px solid var(--gold);
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  background: transparent;
  transition: all 0.2s ease;
}

.hero-btn:hover {
  border-color: var(--gold-hover);
}

.hero-visual {
  position: absolute;
  right: -25px;
  top: 16px;
  width: 835px;
  height: 640px;
  z-index: 5;
}

.overlay-shape {
  position: absolute;
  left: -49px;
  top: -146px;
  z-index: 1;
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.car-image {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 785px;
  max-width: none;
  height: auto;
  z-index: 3;
}

.about-section {
  background: var(--bg-color);
  padding: 58px 0 70px;
  overflow: hidden;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.about-media {
  position: relative;
  width: 100%;
  max-width: 585px;
  flex: 0 0 585px;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  top: -60px;
  right: 85px;
  width: 119px;
  min-height: 119px;
  background: #f28c00;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
}

.about-badge strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 6px;
}

.about-badge span {
  display: block;
  font-size: 10px;
  line-height: 1.15;
  color: #ffffff;
}

.about-content {
  width: 100%;
  max-width: 610px;
  padding-top: 18px;
}

.about-content h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 52px;
}

.about-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  vertical-align: middle;
}

.about-title-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.about-content p {
  max-width: 570px;
  font-size: 12px;
  line-height: 1.26;
  color: var(--small-text);
  margin-bottom: 68px;
}

.about-features {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: #f77f00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.feature-text h3,
.feature-text span {
  display: block;
  color: var(--main-text);
  font-weight: normal;
  line-height: 1.08;
}

.feature-text h3 {
  font-size: 14px;
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 18px;
}

.routes-section {
  padding: 70px 0 80px;
  background: var(--bg-color);
}

.routes-head {
  text-align: center;
  margin-bottom: 74px;
}

.routes-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 22px;
}

.routes-head h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.route-card {
  background: #1e1f22;
  overflow: hidden;
}

.route-card-top {
  padding: 22px 18px 28px;
  min-height: 128px;
}

.route-card-top h3 {
  font-size: 28px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 10px;
}

.route-card-top p {
  font-size: 18px;
  line-height: 1.15;
  color: var(--small-text);
}

.route-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.route-card-image {
  width: 100%;
  height: 294px;
  object-fit: cover;
  display: block;
}

.route-card-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14px);
  min-width: 185px;
  height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 31, 34, 0.72);
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 2;
}

.route-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.25s ease;
}

.route-card:hover .route-card-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.route-card:hover .route-card-image-wrap::after {
  background: rgba(0, 0, 0, 0.28);
}

.gallery-section {
  background: var(--bg-color);
  padding: 54px 0 70px;
}

.gallery-container {
  max-width: 1610px;
  padding: 0 20px;
}

.gallery-head {
  text-align: center;
  margin-bottom: 34px;
}

.gallery-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 18px;
}

.gallery-head h2 {
  font-size: 30px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 403px 301px 277px 218px 338px;
  grid-template-rows: 160px 150px 210px;
  gap: 4px;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.item-1 {
  grid-column: 1;
  grid-row: 1 / 4;
}

.item-2 {
  grid-column: 2;
  grid-row: 1 / 2;
}

.item-4 {
  grid-column: 3;
  grid-row: 1 / 2;
}

.item-5 {
  grid-column: 4;
  grid-row: 1 / 2;
}

.item-7 {
  grid-column: 5;
  grid-row: 1 / 3;
}

.item-3 {
  grid-column: 2;
  grid-row: 2 / 4;
}

.item-6 {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}

.item-8 {
  grid-column: 5;
  grid-row: 3;
}

.faq-section {
  background: var(--bg-color);
  padding: 58px 0 110px;
}

.faq-head {
  text-align: center;
  margin-bottom: 52px;
}

.faq-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 18px;
}

.faq-head h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  color: var(--main-text);
  font-family: inherit;
}

.faq-question span:first-child {
  font-size: 17px;
  line-height: 1.2;
  color: var(--main-text);
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 34px;
  line-height: 1;
  color: var(--main-text);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
  padding-bottom: 0;
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--small-text);
  max-width: 92%;
  padding-right: 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.site-footer {
  background: #1e1f22;
  padding: 70px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-left {
  max-width: 320px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 40px;
}

.footer-contact span {
  display: block;
  font-size: 14px;
  color: var(--small-text);
  margin-bottom: 18px;
}

.footer-contact a {
  display: block;
  font-size: 26px;
  color: var(--main-text);
  margin-bottom: 12px;
}

.footer-right h2 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 18px;
}

.footer-right p {
  font-size: 16px;
  color: var(--small-text);
  margin-bottom: 30px;
  max-width: 740px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  border: 1px solid var(--gold);
  color: var(--main-text);
  font-size: 16px;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.footer-bottom span {
  font-size: 14px;
  color: var(--small-text);
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 22px;
  }

  .site-header {
    padding-top: 20px;
  }

  .header-inner {
    position: relative;
    min-height: 54px;
  }

  .main-nav,
  .header-btn {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .logo {
    width: 54px;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1e1f22;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 50;
  }

  .mobile-menu.active {
    display: block;
    max-height: 500px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav a {
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
  }

  .mobile-menu-btn {
    margin-top: 8px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-height: 470px;
    padding-top: 38px;
  }

  .hero-content {
    max-width: 48%;
    padding-top: 8px;
    z-index: 3;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 10px;
    line-height: 1.4;
    max-width: 100%;
  }

  .hero-content p + p {
    margin-top: 12px;
  }

  .hero-btn {
    min-width: 160px;
    height: 42px;
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-visual {
    position: absolute;
    right: -80px;
    top: 36px;
    width: 58%;
    height: 350px;
  }

  .overlay-shape {
    left: 10px;
    top: -20px;
    width: 100%;
    height: 100%;
  }

  .car-image {
    width: 520px;
    right: -35px;
    bottom: 15px;
  }

  .about-section {
    padding: 46px 0 52px;
  }

  .about-inner {
    flex-direction: column;
    gap: 26px;
  }

  .about-media {
    max-width: 100%;
    flex: none;
    order: 1;
  }

  .about-content {
    max-width: 100%;
    padding-top: 0;
    order: 2;
  }

  .about-main-image {
    width: 100%;
  }

  .about-badge {
    top: 14px;
    right: 14px;
    width: 92px;
    min-height: 92px;
  }

  .about-badge strong {
    font-size: 24px;
  }

  .about-badge span {
    font-size: 8px;
  }

  .about-content h2 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .about-title-icon img {
    width: 18px;
    height: 18px;
  }

  .about-content p {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .about-features {
    flex-direction: column;
    gap: 18px;
  }

  .feature-item {
    gap: 14px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .feature-icon img {
    width: 22px;
    height: 22px;
  }

  .feature-text h3 {
    font-size: 13px;
  }

  .feature-text span {
    font-size: 15px;
  }

  .routes-section {
    padding: 50px 0 56px;
  }

  .routes-head {
    margin-bottom: 28px;
  }

  .routes-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .routes-head h2 {
    font-size: 24px;
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .route-card-top {
    min-height: auto;
    padding: 16px 12px 18px;
  }

  .route-card-top h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .route-card-top p {
    font-size: 13px;
  }

  .route-card-image {
    height: 180px;
  }

  .route-card-btn {
    min-width: 120px;
    height: 40px;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    background: rgba(30, 31, 34, 0.82);
  }

  .route-card-image-wrap::after {
    background: rgba(0, 0, 0, 0.18);
  }

  .gallery-section {
    padding: 50px 0 56px;
  }

  .gallery-container {
    padding: 0 22px;
  }

  .gallery-head {
    margin-bottom: 24px;
  }

  .gallery-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .gallery-head h2 {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 120px 160px 160px 120px 160px;
    gap: 6px;
    transform: none;
    margin-bottom: 0;
  }

  .item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .item-4 {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .item-5 {
    grid-column: 1;
    grid-row: 3;
  }

  .item-7 {
    grid-column: 1 / 3;
    grid-row: 4;
  }

  .item-3 {
    grid-column: 1;
    grid-row: 5;
  }

  .item-6 {
    grid-column: 2;
    grid-row: 5;
  }

  .item-8 {
    grid-column: 1 / 3;
    grid-row: 6;
  }

  .gallery-item {
    height: 100%;
  }

  .faq-section {
    padding: 50px 0 56px;
  }

  .faq-head {
    margin-bottom: 28px;
  }

  .faq-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .faq-head h2 {
    font-size: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-question {
    padding: 18px 0;
  }

  .faq-question span:first-child {
    font-size: 15px;
  }

  .faq-icon {
    font-size: 26px;
  }

  .faq-answer p {
    font-size: 11px;
    line-height: 1.5;
    max-width: 100%;
    padding-right: 0;
  }

  .site-footer {
    padding: 44px 0 22px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-right {
    order: 2;
    width: 100%;
  }

  .footer-left {
    order: 1;
    max-width: 100%;
  }

  .footer-right h2 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .footer-right p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .footer-btn {
    width: 150px;
    height: 44px;
    font-size: 13px;
    margin-bottom: 0;
  }

  .footer-logo {
    width: 70px;
    margin-bottom: 18px;
  }

  .footer-contact span {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-contact a {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 18px;
    margin-top: 8px;
  }

  .footer-bottom span {
    font-size: 12px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
  }

  .footer-socials img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding-top: 16px;
  }

  .header-inner {
    min-height: 48px;
  }

  .logo {
    width: 46px;
  }

  .burger-btn {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu.active {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .mobile-nav {
    gap: 12px;
  }

  .mobile-nav a {
    font-size: 15px;
  }

  .mobile-menu-btn {
    height: 46px;
    font-size: 15px;
  }

  .hero {
    min-height: 470px;
  }

  .hero-inner {
    min-height: 370px;
    padding-top: 40px;
    gap: 6px;
  }

  .hero-content {
    max-width: 52%;
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: 18px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 9px;
    line-height: 1.45;
  }

  .hero-content p + p {
    margin-top: 9px;
  }

  .hero-btn {
    min-width: 130px;
    height: 36px;
    margin-top: 16px;
    font-size: 11px;
  }

  .hero-visual {
    right: -92px;
    top: 44px;
    width: 58%;
    height: 250px;
  }

  .overlay-shape {
    left: -135px;
    top: -16px;
  }

  .car-image {
    width: 390px;
    right: -40px;
    bottom: -45px;
  }

  .about-section {
    padding: 0px 0 44px;
  }

  .about-inner {
    gap: 22px;
  }

  .about-badge {
    top: 12px;
    right: 12px;
    width: 80px;
    min-height: 80px;
    padding: 8px 5px;
  }

  .about-badge strong {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .about-badge span {
    font-size: 7px;
    line-height: 1.15;
  }

  .about-content h2 {
    font-size: 18px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .about-content p {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .about-features {
    gap: 14px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .feature-icon img {
    width: 18px;
    height: 18px;
  }

  .feature-text h3 {
    font-size: 11px;
  }

  .feature-text span {
    font-size: 13px;
  }

  .routes-section {
    padding: 42px 0 46px;
  }

  .routes-head {
    margin-bottom: 22px;
  }

  .routes-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .routes-head h2 {
    font-size: 20px;
  }

  .routes-grid {
    gap: 10px;
  }

  .route-card-top {
    padding: 13px 10px 14px;
  }

  .route-card-top h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .route-card-top p {
    font-size: 11px;
  }

  .route-card-image {
    height: 135px;
  }

  .route-card-btn {
    min-width: 96px;
    height: 34px;
    font-size: 10px;
  }

  .gallery-section {
    padding: 42px 0 46px;
  }

  .gallery-container {
    padding: 0 16px;
  }

  .gallery-head {
    margin-bottom: 20px;
  }

  .gallery-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .gallery-head h2 {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-rows: 150px 95px 125px 125px 95px 130px;
    gap: 5px;
  }

  .faq-section {
    padding: 42px 0 46px;
  }

  .faq-head {
    margin-bottom: 22px;
  }

  .faq-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .faq-head h2 {
    font-size: 20px;
  }

  .faq-question {
    padding: 15px 0;
    gap: 12px;
  }

  .faq-question span:first-child {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq-icon {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 10px;
    line-height: 1.55;
  }

  .faq-item.active .faq-answer {
    max-height: 260px;
    padding-bottom: 14px;
  }

  .site-footer {
    padding: 21px 0 21px;
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-right h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-right p {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .footer-btn {
    width: 136px;
    height: 40px;
    font-size: 12px;
  }

  .footer-logo {
    width: 60px;
    margin-bottom: 14px;
  }

  .footer-contact span {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .footer-contact a {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 14px;
  }

  .footer-bottom span {
    font-size: 11px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .footer-socials img {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   დამატებითი სტილები - შიდა გვერდები (about, tours, gallery, faq, contact, booking)
   ============================================================ */

.page-hero {
  background: var(--bg-color);
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(176, 138, 51, 0.25);
}

.page-hero h1 {
  font-size: 38px;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 14px;
}

.page-hero .breadcrumb {
  font-size: 14px;
  color: var(--small-text);
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

.page-section {
  padding: 60px 0;
}

/* --- ტურების სრული გვერდი --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 46px;
}

.filter-bar a {
  padding: 10px 22px;
  border: 1px solid var(--header-btn-border);
  color: var(--main-text);
  font-size: 14px;
  transition: all 0.2s ease;
}

.filter-bar a.active,
.filter-bar a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #121212;
}

.tours-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.tour-card {
  background: #1e1f22;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tour-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.tour-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-card-image-wrap img {
  transform: scale(1.06);
}

.tour-card-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #121212;
  font-size: 14px;
  padding: 6px 14px;
}

.tour-card-body {
  padding: 22px 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-body h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 8px;
}

.tour-card-body .tour-meta {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}

.tour-card-body p {
  font-size: 13px;
  color: var(--small-text);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.tour-card-body .tour-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid var(--gold);
  font-size: 14px;
  color: var(--main-text);
  transition: all 0.2s ease;
}

.tour-card-body .tour-card-btn:hover {
  background: var(--gold);
  color: #121212;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--small-text);
}

/* --- ტურის ცალკეული გვერდი --- */
.tour-single-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.tour-single-header h1 {
  font-size: 34px;
  font-weight: normal;
}

.tour-single-price {
  font-size: 26px;
  color: var(--gold);
}

.tour-single-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 36px;
}

.tour-single-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.tour-single-content p {
  color: var(--small-text);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.tour-info-box {
  background: #1e1f22;
  padding: 30px;
}

.tour-info-box .info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.tour-info-box .info-row span:first-child {
  color: var(--small-text);
}

.tour-info-box .info-row span:last-child {
  color: var(--main-text);
}

.tour-info-box .tour-book-btn {
  margin-top: 26px;
  width: 100%;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #121212;
  font-size: 16px;
  transition: all 0.2s ease;
}

.tour-info-box .tour-book-btn:hover {
  background: var(--gold-hover);
}

.tour-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.tour-gallery-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
}

/* --- ფორმები (contact/booking) --- */
.form-section {
  max-width: 720px;
  margin: 0 auto;
}

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

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

.form-group.full {
  grid-column: 1 / 3;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--small-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 50px;
  background: #1e1f22;
  border: 1px solid rgba(176, 138, 51, 0.3);
  color: var(--main-text);
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  height: 130px;
  padding: 14px 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-submit-btn {
  width: 100%;
  height: 54px;
  background: var(--gold);
  border: none;
  color: #121212;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit-btn:hover {
  background: var(--gold-hover);
}

.alert {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  border-left: 3px solid var(--gold);
  background: #1e1f22;
}

.alert-success { border-color: #3fbf5f; }
.alert-error { border-color: #d9534f; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  text-align: center;
}

.contact-info-item {
  background: #1e1f22;
  padding: 30px 20px;
}

.contact-info-item h3 {
  font-size: 16px;
  font-weight: normal;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--small-text);
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 60px 0 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #1e1f22;
  padding: 28px;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 14px;
}

.testimonial-card p {
  color: var(--small-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card .t-name {
  color: var(--main-text);
  font-size: 15px;
}

/* --- lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: zoom-out;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 138, 51, 0.3);
  color: var(--main-text);
  font-size: 14px;
}

.pagination a:hover, .pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: #121212;
}

.main-nav a.active {
  color: var(--gold);
}

@media (max-width: 900px) {
  .tours-full-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-single-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tour-gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-hero { padding: 46px 0 36px; }
  .page-hero h1 { font-size: 24px; }
  .tours-full-grid { grid-template-columns: 1fr; }
  .tour-single-header h1 { font-size: 22px; }
}

/* ============================================================
   ადმინ პანელის სტილები
   ============================================================ */

.admin-body {
  display: flex;
  min-height: 100vh;
  background: #0d0d0d;
}

.admin-sidebar {
  width: 260px;
  min-width: 260px;
  background: #17181a;
  border-right: 1px solid rgba(176,138,51,0.2);
  padding: 26px 0;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  padding: 0 26px 26px;
  border-bottom: 1px solid rgba(176,138,51,0.15);
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--gold);
}

.admin-logo span {
  display: block;
  font-size: 12px;
  color: var(--small-text);
  margin-top: 4px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-nav a {
  padding: 13px 26px;
  color: var(--small-text);
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: var(--main-text);
  background: rgba(176,138,51,0.1);
  border-left-color: var(--gold);
}

.admin-nav .nav-group-label {
  padding: 18px 26px 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a5a5a;
}

.admin-logout {
  padding: 14px 26px;
  border-top: 1px solid rgba(176,138,51,0.15);
  color: var(--small-text);
  font-size: 14px;
}

.admin-main {
  flex: 1;
  padding: 32px 40px 60px;
  max-width: calc(100% - 260px);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-topbar h1 {
  font-size: 26px;
  font-weight: normal;
  color: var(--main-text);
}

.admin-topbar .admin-user {
  font-size: 14px;
  color: var(--small-text);
}

.admin-topbar .admin-user strong {
  color: var(--gold);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: #1e1f22;
  padding: 24px;
  border-left: 3px solid var(--gold);
}

.stat-card .stat-value {
  font-size: 32px;
  color: var(--main-text);
  margin-bottom: 6px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--small-text);
}

.admin-panel {
  background: #1e1f22;
  padding: 28px;
  margin-bottom: 30px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-panel-head h2 {
  font-size: 19px;
  font-weight: normal;
  color: var(--main-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  background: var(--gold);
  color: #121212;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn:hover { background: var(--gold-hover); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--main-text);
}

.btn-outline:hover { background: var(--gold); color: #121212; }

.btn-danger {
  background: #7a2c2c;
  color: #fff;
}

.btn-danger:hover { background: #922f2f; }

.btn-small { height: 34px; padding: 0 14px; font-size: 13px; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--main-text);
  vertical-align: middle;
}

.admin-table th {
  color: var(--small-text);
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.admin-table img.thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.badge-active, .badge-confirmed, .badge-completed { background: rgba(63,191,95,0.15); color: #3fbf5f; }
.badge-inactive, .badge-cancelled { background: rgba(217,83,79,0.15); color: #d9534f; }
.badge-new { background: rgba(176,138,51,0.2); color: var(--gold); }

.action-links { display: flex; gap: 10px; }
.action-links a, .action-links button { font-size: 13px; color: var(--gold); background: none; border: none; cursor: pointer; font-family: inherit; }
.action-links .danger-link { color: #d9534f; }

.admin-form .form-group { margin-bottom: 20px; }
.admin-form label { display: block; font-size: 13px; color: var(--small-text); margin-bottom: 8px; }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(176,138,51,0.25);
  color: var(--main-text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { outline: none; border-color: var(--gold); }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-form .checkbox-row { display: flex; align-items: center; gap: 10px; }
.admin-form .checkbox-row input { width: auto; }
.admin-form .current-image { margin-bottom: 12px; }
.admin-form .current-image img { width: 140px; height: 100px; object-fit: cover; }

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
}

.login-box {
  width: 100%;
  max-width: 380px;
  background: #1e1f22;
  padding: 44px 36px;
  border-top: 3px solid var(--gold);
}

.login-box h1 {
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 6px;
  color: var(--main-text);
}

.login-box .login-sub {
  text-align: center;
  font-size: 13px;
  color: var(--small-text);
  margin-bottom: 30px;
}

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.mini-gallery-item {
  position: relative;
  background: #121212;
}

.mini-gallery-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.mini-gallery-item form {
  position: absolute;
  top: 6px;
  right: 6px;
}

.mini-gallery-item button {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .admin-body { flex-direction: column; }
  .admin-sidebar { width: 100%; min-width: 100%; flex-direction: row; overflow-x: auto; padding: 14px 0; }
  .admin-logo { display: none; }
  .admin-nav { flex-direction: row; }
  .admin-nav a { white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; }
  .admin-nav a.active, .admin-nav a:hover { border-left-color: transparent; border-bottom-color: var(--gold); }
  .admin-logout { display: none; }
  .admin-main { max-width: 100%; padding: 24px 18px 40px; }
  .admin-form .form-row { grid-template-columns: 1fr; }
  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}
