@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.vcrte-body {
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #6B0A23; /* бордовый фон */
  color: #FFD700; 
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ================= CONTAINER ================= */
.vcrte-container { max-width:1200px;margin:0 auto;padding:0 20px;}

/* ================= HEADER ================= */
.lux-header {
  background-color: #000;
  border-bottom: 1px solid #FFD700;
  z-index: 1000;
}

/* Логотип */
.logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #B8860B);
}

.logo-circle img {
  width: 40px;
  height: 40px;
}

.logo-text {
  color: #FFD700;
  margin-left: 10px;
}

/* Десктоп-навигация */
.nav-link {
  color: #fff;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #FFD700;
  left: 0;
  bottom: -4px;
  transition: width 0.3s;
}

.nav-link:hover {
  color: #FFD700;
}

.nav-link:hover::after {
  width: 100%;
}

/* Кнопка */
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  border: none;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* Мобильное меню */
#luxMenu {
  background-color: #000;
  border-top: 1px solid #FFD700;
}

#luxMenu .nav-link {
  color: #FFD700;
  padding: 0.5rem 0;
}

#luxMenu .btn-gold {
  margin-top: 0.5rem;
}
/* ================= HERO ================= */
.lux-hero {
  background-color: #000;
  position: relative;
  z-index: 1;
}

/* Акцентный текст золото */
.text-gold {
  color: #FFD700 !important;
}

/* Заголовок с легким свечением */
.lux-hero-title {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Подзаголовок / lead */
.lux-hero-lead {
  color: #fff;
  opacity: 0.85;
}

/* Кнопки */
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #000;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: #FFD700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* Hero изображение с мягким свечением */
.lux-hero-img-wrapper {
  position: relative;
}

.lux-hero-img {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lux-hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}
/* ================= ABOUT & FEATURES ================= */
.lux-offer {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.lux-offer-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../img/admiral-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  background-attachment: fixed;
  z-index: 0;
}

.text-gold {
  color: #FFD700 !important;
}

.lux-offer-title {
  font-size: 4rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.lux-offer-desc {
  font-size: 1.25rem;
  max-width: 700px;
}

.lux-offer-features li {
  font-size: 1rem;
  line-height: 1.6;
}

.btn-gold {
  background-color: #FFD700;
  color: #000;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.border-gold {
  border-color: #FFD700 !important;
}
.vcrte-age-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  font-family: 'Poppins', sans-serif;
}

.vcrte-age-popup.active {
  opacity: 1;
  visibility: visible;
}

.vcrte-popup-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  top: 0; left: 0;
}

/* Card */
.vcrte-popup-card {
  position: relative;
  background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
  border-radius: 25px;
  padding: 50px 35px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
  z-index: 10;
  text-align: center;
  transform: translateY(-50px);
  transition: 0.5s ease;
  border: 2px solid #ffd70033;
}

.vcrte-age-popup.active .vcrte-popup-card {
  transform: translateY(0);
}

/* Close Button */
.vcrte-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  color: #ffd700;
  cursor: pointer;
  transition: 0.3s;
}
.vcrte-popup-close:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Header & Icon */
.vcrte-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.vcrte-popup-icon-wrapper {
  background: radial-gradient(circle, #ffd70055, #ffb70000);
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 0 20px #ffd700aa;
  margin-bottom: 15px;
}
.vcrte-popup-icon {
  font-size: 3rem;
  color: #ffd700;
}

/* Title */
#vcrte-age-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 8px #ffd70077, 0 0 15px #ffd70033;
}

/* Text */
.vcrte-popup-text {
  font-size: 1.05rem;
  color: #f5f5d7;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Buttons */
.vcrte-popup-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.vcrte-btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Gold button */
.vcrte-btn-gold {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #0c0c0c;
  border: 1px solid #ffd700;
}
.vcrte-btn-gold:hover {
  background: linear-gradient(135deg, #ffec70, #ffb700);
  box-shadow: 0 0 20px #ffd700;
}

/* Outline button */
.vcrte-btn-outline {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}
.vcrte-btn-outline:hover {
  background: #ffd700;
  color: #0c0c0c;
  box-shadow: 0 0 15px #ffd700;
}

/* Footer */
.vcrte-popup-footer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
}
/* ================= FOOTER ================= */
.vcrte-footer {
  background: #000;
  color: #fff;
  position: relative;
}

.vcrte-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
}

.vcrte-footer-logos img.vcrte-logo {
  max-height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.8);
}

.vcrte-footer-logos img.vcrte-logo:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

.vcrte-footer-links a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.vcrte-footer-bottom p {
  margin-bottom: 0.5rem;
}
.vcrte-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.vcrte-btn-gold {
  background: linear-gradient(45deg, #FFD700,#A8324A);
  color: #6B0A23;
  border: none;
}
.vcrte-btn-gold:hover {
  background: linear-gradient(45deg,#A8324A,#FFD700);
}
.vcrte-btn-ghost {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}
.vcrte-btn-ghost:hover {
  background: #ffd700;
  color: #1c1c1c;
}
.vcrte-privacy {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
}

.vcrte-privacy-intro {
  font-size: 1.2rem;
  color: #FFD700;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.vcrte-privacy-block {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #FFD700;
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vcrte-privacy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.vcrte-privacy-block h2 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vcrte-privacy-block p,
.vcrte-privacy-block li {
  color: #eee;
  line-height: 1.7;
}

.vcrte-privacy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.vcrte-privacy-list li::before {
  content: "\f00c"; /* FontAwesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #FFD700;
}

.vcrte-privacy-block.final {
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid #FFD700;
  text-align: center;
}

.vcrte-privacy a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s;
}

.vcrte-privacy a:hover {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

.vcrte-contact {
  background: #000;
  position: relative;
  overflow: hidden;
}

.vcrte-contact-info, .vcrte-contact-form {
  background: linear-gradient(135deg, rgba(30,30,30,0.85), rgba(10,10,10,0.85));
  border: 1px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vcrte-contact-info:hover, .vcrte-contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #FFD700;
}

.vcrte-contact-bg-glow {
  background: radial-gradient(circle at center, rgba(255,215,0,0.1), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.vcrte-contact .row > div {
  z-index: 1;
}

.vcrte-contact input, .vcrte-contact textarea {
  border-radius: 0.5rem;
}

.vcrte-contact .form-control:focus {
  border-color: #FFD700;
  box-shadow: 0 0 10px #FFD700;
  background-color: #111;
  color: #FFD700;
}

.btn-warning {
  background-color: #FFD700;
  border-color: #FFD700;
  color: #000;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000;
}
@media(max-width:1024px){
  .vcrte-footer-top, .vcrte-footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vcrte-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .vcrte-burger {
    display: flex;
  }
  .vcrte-about-row {
    flex-direction: column;
    text-align: center;
  }
  .vcrte-about-row.vcrte-reverse {
    flex-direction: column;
  }
  .vcrte-about {
    padding: 60px 0;
  }
  .vcrte-about-graph-modern {
    grid-template-columns: repeat(2, 1fr);
  }

.vcrte-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFD700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Когда активно */
.vcrte-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.vcrte-burger.active span:nth-child(2) {
  opacity: 0;
}
.vcrte-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
  .vcrte-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #6B0A23;
    box-shadow: 0 6px 20px rgba(255,200,0,0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .vcrte-nav.active {
    max-height: 300px;
    display: flex;
    opacity: 1;
  }

  .vcrte-nav a {
    display: block;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }
  .vcrte-popup-card { padding: 30px 20px; }
  .vcrte-popup-actions { flex-direction: column; gap: 12px; }
  .vcrte-row {
    display: block;
  }
  .vcrte-values-card {
    padding: 30px 20px;
  }
  .vcrte-section-subtitle {
    font-size: 1.5rem;
  }
  .vcrte-about-row {
    flex-direction: column;
    gap: 30px;
  }
  .vcrte-about-row.vcrte-reverse {
    flex-direction: column;
  }
  .vcrte-about-graph {
    width: 100%;
  }

  .vcrte-about-image {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .vcrte-about-title {
    font-size: 2.2rem;
  }
  .vcrte-offer-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vcrte-offer-rating {
    text-align: center;
  }
  .vcrte-header-row{gap:12px;padding:12px}.vcrte-nav{display:none}.vcrte-burger{display:block}}
@media(max-width:768px){
  .vcrte-contact-title {
    font-size: 2.4rem;
  }

  .vcrte-contact-sub {
    font-size: 1rem;
  }

  .vcrte-contact-card {
    padding: 30px 15px;
  }
  .vcrte-about-title {
    font-size: 1.9rem;
  }

  .vcrte-about-text p {
    font-size: 1rem;
  }
  .vcrte-section-title {
    font-size: 2rem;
  }
  .vcrte-offer-title {
    font-size: 1.6rem;
  }
  .vcrte-offer-logo {
    width: 120px;
  }
  .vcrte-hero-ctas {
    flex-direction: column;
    text-align: center;
  }
  .vcrte-hero-inner{flex-direction:column;gap:36px}.vcrte-hero-left,.vcrte-hero-right{flex:unset;width:100%; padding: 0 10px;}.vcrte-hero-title{font-size:2.2rem}.vcrte-hero-lead{font-size:1rem}.vcrte-features-grid{grid-template-columns:1fr}}
@media(max-width:480px){
  .vcrte-offer-highlight {
    padding: 20px 15px;
  }
  .vcrte-offer-features {
    flex-direction: column;
    gap: 6px;
  }
  .vcrte-btn-gold {
    width: 100%;
    justify-content: center;
  }
  .vcrte-hero-title{font-size:1.9rem}.vcrte-btn{padding:10px 22px;font-size:.95rem}.vcrte-feature-card{padding:22px}}
