html{

  scroll-behavior:smooth;

}

/* ================= IOS FIX ================= */

*{
  -webkit-tap-highlight-color: transparent;
}

a,
button,
div{

  -webkit-tap-highlight-color:
  transparent;

  outline:none;
}

input,
textarea,
select,
button{

  appearance:none;
  -webkit-appearance:none;

  border-radius:0;
}

/* ================= SAFARI AUTO LINK FIX ================= */

a{
  color:inherit;
  text-decoration:none;
}

a[href^="tel"]{
  color:inherit;
  text-decoration:none;
}

a[href^="sms"]{
  color:inherit;
  text-decoration:none;
}

a[href^="https"]{
  color:inherit;
  text-decoration:none;
}

.whatsapp-link{
  color:#25D366 !important;
}

.location-link{
  color:#C9A063 !important;
}

/* ================= БАЗА ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
a,
img {
  -webkit-user-drag: none;

  -webkit-touch-callout: none;

  user-select: none;
  -webkit-user-select: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #1A1A1A;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 110px;
}

/* ================= ФОН ================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    repeating-linear-gradient(
      120deg,
      rgba(201,160,99,0.04) 0px,
      rgba(201,160,99,0.04) 1px,
      transparent 1px,
      transparent 60px
    );

  animation: bgMove 20s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    repeating-linear-gradient(
      120deg,
      transparent 0px,
      transparent 140px,
      rgba(201,160,99,0.12) 141px,
      rgba(201,160,99,0.12) 143px
    );

  opacity: 0.5;
  animation: bgMove 40s linear infinite;
}

/* ================= КОНТЕЙНЕР ================= */
.container {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {

  position: fixed;

  overflow:hidden;

  top: 0;

  width: 100%;

  background: rgba(18, 18, 18, 0.85);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid #2A2A2A;

  z-index: 10;
}

/* ================= HEADER SHINE ================= */

.header::after{

  content:"";

  position:absolute;

  top:0;
  left:-35%;

  width:22%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(201,160,99,0.10),
    rgba(255,255,255,0.05),
    rgba(201,160,99,0.10),
    transparent
  );

  transform:
  skewX(-25deg);

  animation:
  headerShine 7s linear infinite;

  pointer-events:none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #C9A063;

  user-select: none;
  -webkit-user-select: none;

  -webkit-user-drag: none;
}

.logo span {
  color: #fff;
  font-weight: 300;
}

/* ================= HEADER BOTTOM SHINE ================= */

.header::before{

  content:"";

  position:absolute;

  bottom:0;
  left:-40%;

  width:30%;
  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(201,160,99,0.9),
    transparent
  );

  filter:
  blur(.4px);

  animation:
  headerBottomShine 6s linear infinite;

  pointer-events:none;
}

/* ================= MENU ================= */
.menu a {
  margin-left: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
  transition: 0.3s;

  user-select: none;
  -webkit-user-select: none;
}

.menu a:hover {
  color: #C9A063;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #C9A063;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* ================= LANGUAGE SWITCHER ================= */

.lang{

  display:flex;

  align-items:center;

  gap:4px;

  padding:4px;

  border-radius:999px;

  background:
  rgba(255,255,255,0.03);

  border:
  1px solid rgba(255,255,255,0.06);

  backdrop-filter:
  blur(10px);
}

/* ================= LANGUAGE ITEM ================= */

.lang-switch{

  position:relative;

  padding:
  8px 12px;

  border-radius:999px;

  font-size:13px;

  font-weight:600;

  color:
  rgba(255,255,255,0.55);

  transition:.25s;

  cursor:pointer;
}

/* ================= ACTIVE ================= */

.lang-switch.active{

  color:#C9A063;
}

/* ================= HOVER ================= */

.lang-switch:hover{

  color:#fff;
}

/* ================= LANG INDICATOR ================= */

.lang-indicator{

  position:absolute;

  top:3px;

  left:0;

  transform:
  translateX(0);

  width:48px;

  height:36px;

  border-radius:999px;

  background:
  linear-gradient(
    180deg,
    rgba(201,160,99,0.22),
    rgba(201,160,99,0.10)
  );

  border:
  1px solid rgba(201,160,99,0.18);

  backdrop-filter:
  blur(10px);

  box-shadow:
    0 0 20px rgba(201,160,99,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition:
  all .35s cubic-bezier(.22,.61,.36,1);

  z-index:0;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ================= ЛЕВО ================= */
.hero-left {
  flex: 0.45;
  max-width: 520px;
  margin-left: 80px;
}

.hero-left h1 {
  font-size: 38px;
  line-height: 1.2;
  color: #C9A063;
  margin-bottom: 16px;
}

.hero-left p {
  font-size: 15px;
  margin-bottom: 24px;
  color: #ccc;
}

/* ================= PREMIUM BUTTON ================= */

.btn{

  height:58px;

  padding:0 34px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #C9A063,
    #E0BE86
  );

  color:#111;

  font-size:15px;

  font-weight:700;

  letter-spacing:0.3px;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:10px;

  transition:0.35s;

  box-shadow:
  0 0 20px rgba(201,160,99,0.22),
  0 0 50px rgba(201,160,99,0.10);

}

/* ================= BUTTON SHINE ================= */

.btn::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transform:skewX(-25deg);

  transition:0.8s;

}

/* ================= HOVER ================= */

.btn:hover{

  transform:
  translateY(-3px);

  box-shadow:
  0 0 28px rgba(201,160,99,0.32),
  0 0 70px rgba(201,160,99,0.14);

}

.btn:hover::before{

  left:140%;

}
/* ================= ПРАВО ================= */
.hero-right {
  flex: 0.65;
  display: flex;
  justify-content: flex-start;
}

/* ================= КАРТИНКА ================= */
.hero-image {
  width: 720px;
  height: 480px;

  margin-left: 230px;

  border-radius: 30px;
  border: 2px solid rgba(201,160,99,0.35);

  box-shadow:
    0 0 30px rgba(201,160,99,0.3),
    0 0 100px rgba(201,160,99,0.2);

  animation: floatImage 5s ease-in-out infinite;
}

.hero-image.active {
  background: url("https://i.postimg.cc/mkHCStws/Whats-App-Image-2026-05-01-at-22-23-17.jpg") center/cover no-repeat;
}

/* ================= СЕКЦИИ ================= */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}


/* ================= SERVICES ================= */
#services {
  text-align: center;
}

#services h2 {
  color: #C9A063;
  margin-bottom: 40px;
  transform: translateY(-20px);
}

/* ================= ABOUT ================= */

#about h2 {
  color: #C9A063;
}

#about h2 {
  color: #C9A063;
  font-size: 16px;
}

/* ================= СЕТКА ================= */
.grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  width: 100%;
}


/* ================= КАРТОЧКИ ================= */
.card {
  background: #121212;

  border: 1px solid #2A2A2A;
  border-radius: 22px;

  overflow: visible;
  
  box-shadow:
  0 0 20px rgba(201,160,99,0.08),
  0 0 50px rgba(201,160,99,0.05);
  
  background:
  linear-gradient(
    180deg,
    #121212,
    #0d0d0d
  );

  transition: 0.4s;

  user-select: none;
  -webkit-user-select: none;

  cursor: pointer;

  position: relative;

  display: flex;

  min-height: 340px;
}

.card:hover {
  transform: translateY(-8px);

  border-color: #C9A063;

  box-shadow:
  0 0 25px rgba(201,160,99,0.18),
  0 0 60px rgba(201,160,99,0.12),
  0 0 120px rgba(201,160,99,0.08);
}

/* ================= CONTENT ================= */
.card-content {
  width: 54%;

  padding: 34px 30px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  align-items: flex-start;

  text-align: left;

  order: 1;

  position: relative;

  overflow: hidden;
}

/* ================= CARD SHIMMER ================= */

.card-content::before{

  content:"";

  position:absolute;

  inset:-40%;

  background:
  linear-gradient(
    115deg,
    transparent 20%,
    rgba(201,160,99,0.05) 40%,
    rgba(255,255,255,0.08) 50%,
    rgba(201,160,99,0.05) 60%,
    transparent 80%
  );

  pointer-events:none;

  opacity:0;

  animation:
  luxurySweep 9s ease-in-out infinite;
}

/* ================= RANDOM SHIMMER ================= */

@keyframes luxurySweep{

  0%{

    transform:
    translate(-45%,-45%)
    rotate(18deg);

    opacity:0;
  }

  18%{
    opacity:0.10;
  }

  32%{
    opacity:0.16;
  }

  45%{

    transform:
    translate(15%,10%)
    rotate(18deg);

    opacity:0.08;
  }

  60%{
    opacity:0;
  }

  72%{

    transform:
    translate(10%,-20%)
    rotate(-14deg);

    opacity:0.12;
  }

  84%{
    opacity:0.18;
  }

  100%{

    transform:
    translate(-45%,-45%)
    rotate(-14deg);

    opacity:0;
  }

}

/* ================= IMAGE ================= */
.card-image {
  width: 46%;

  min-height: 100%;

  background:
    linear-gradient(
      135deg,
      #1f1f1f,
      #2a2a2a
    );

  border-left: 1px solid #2A2A2A;

  order: 2;

  overflow: hidden;

  border-top-right-radius: 22px;

  border-bottom-right-radius: 22px;
}

/* ================= SOFT PREMIUM CARD ICON ================= */

.card-icon {

  width: 72px;
  height: 72px;

  border-radius: 26px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(52,42,30,0.42),
      rgba(18,16,14,0.24)
    );

  border:
    1px solid rgba(201,160,99,0.08);

  box-shadow:
    0 0 12px rgba(201,160,99,0.015),
    inset 0 1px 0 rgba(255,255,255,0.02),
    inset 0 -2px 8px rgba(0,0,0,0.10);

  backdrop-filter:
    blur(10px);

  overflow: hidden;
}

/* SOFT GOLD LIGHT */

.card-icon::before{

  content:"";

  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at top left,
      rgba(201,160,99,0.05),
      transparent 76%
    );

  pointer-events:none;
}

/* ICON */

.card-icon i {

  color: #D6AE6B;

  font-size: 22px;

  position: relative;

  z-index: 2;

  text-shadow:
    0 0 4px rgba(201,160,99,0.05);
}

/* ================= TITLE ================= */
.card h3 {
  font-size: 19px;

  line-height: 1.25;

  margin-bottom: 14px;

  color: #C9A063;

  text-align: left;

  font-weight: 700;
}

/* ================= PRICE ================= */
.card-price {
  color: #fff;

  font-size: 18px;

  font-weight: 600;

  margin-top: auto;

  text-align: left;
}
/* ================= BOTTOM ================= */
.bottom-bar {
  box-shadow: 0 -10px 40px rgba(201,160,99,0.15);
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(18,18,18,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #2A2A2A;
  z-index: 999;
}

/* ================= BOTTOM BAR METAL SHINE ================= */

.bottom-bar::after{

  content:"";

  position:absolute;

  top:0;
  left:-35%;

  width:22%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(201,160,99,0.10),
    rgba(255,255,255,0.05),
    rgba(201,160,99,0.10),
    transparent
  );

  transform:
  skewX(-25deg);

  animation:
  bottomBarMetalShine 7s linear infinite;

  pointer-events:none;
}

/* ================= BOTTOM BAR TOP SHINE ================= */

.bottom-bar::before{

  content:"";

  position:absolute;

  top:0;
  left:-40%;

  width:30%;
  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(201,160,99,0.9),
    transparent
  );

  filter:blur(.4px);

  animation:
  bottomBarShine 6s linear infinite;

  pointer-events:none;
}

.bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 40px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

/* ================= ЛОГО ================= */
.bottom-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.bottom-logo img {
  height: 36px;
  object-fit: contain;

  transition: 0.4s;
  cursor: pointer;
}

.bottom-logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(201,160,99,0.7));
}

/* ================= СОЦ ================= */
.bottom-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-social a {
  margin: 0 14px;
  color: #C9A063;
  font-size: 24px;
  transition: 0.3s;
}

.bottom-social a:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(201,160,99,0.8);
}

/* ================= КОНТАКТ ================= */
.bottom-contact {
  display: flex;
  align-items: center;
  gap: 16px;

  justify-self: end;
  max-width: 420px;
  width: 100%;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C9A063;
  text-decoration: none;
  white-space: nowrap;
}

.phone-number i {
  font-size: 18px;
  width: 22px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C9A063;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.whatsapp-link i {
  font-size: 20px;
  width: 22px;
}

.whatsapp-link:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(201,160,99,0.8);
}

.whatsapp-link:hover i {
  color: #fff;
}

/* ================= LOCATION ================= */
.location-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C9A063;
  text-decoration: none;
  margin-left: 12px;
  transition: 0.3s;
  white-space: nowrap;
}

.location-link i {
  font-size: 18px;
}

.location-link:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(201,160,99,0.8);
}

.location-link:hover i {
  color: #fff;
}

/* ================= АНИМАЦИИ ================= */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes bgMove {
  0% { background-position: 0 0; }
  100% { background-position: 300px 300px; }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  body {
    padding-bottom: 58px;
  }

  /* HEADER */
  .nav {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 14px 0;
  }

  .logo {
    font-size: 20px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu a {
    margin: 0 10px;
    font-size: 13px;
  }

  .lang {
    margin-top: 4px;
  }

  .lang a {
    font-size: 12px;
  }

  /* HERO */
  .hero {
    height: auto;
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 24px;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: #D6AE6B;

    text-shadow:
      0 0 12px rgba(201,160,99,0.18);
  }

  .hero-right {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 340px;
    height: 260px;

    margin-left: 0;

    border-radius: 20px;
  }

  /* SECTIONS */
  .section {
    padding: 80px 0;
  }


  /* SERVICES */
  .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card {

    flex-direction: column;

    min-height: auto;

    padding: 0;

  }

  .card-content {

    width: 100%;

    padding: 26px;

  }

  .card-image {

    width: 100%;

    min-height: 220px;

    border-left: none;

    border-top: 1px solid #2A2A2A;

    border-top-right-radius: 0;

    border-bottom-left-radius: 22px;

    border-bottom-right-radius: 22px;

  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
  }

  /* BOTTOM BAR */
  .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 2px 0;

    background: rgba(18,18,18,0.96);
    backdrop-filter: blur(10px);

    border-top: 1px solid #2A2A2A;
  }

  .bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 6px 6px;
  }

  .bottom-logo {
    display: none;
  }

  .bottom-social a {
    font-size: 22px;
    margin: 0 10px;
  }

  .bottom-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
  }

  .phone-number,
  .whatsapp-link,
  .location-link {
    justify-content: center;
    font-size: 10px;
  }

  .location-link {
    margin-left: 0;
  }

}

/* ================= DESKTOP CARD FIX ================= */

@media (min-width: 769px){

  .card-image{

    border-top-right-radius: 22px;

    border-bottom-right-radius: 22px;

  }

}





/* ================= CALCULATOR ================= */

#calculator{
  text-align:center;
}

.calculator-title{
  color:#C9A063;
  font-size:34px;
  margin-bottom:28px;
  font-weight:700;
}

/* ================= MAIN BOX ================= */

.premium-calc{
  background:
  linear-gradient(
    135deg,
    rgba(16,16,16,0.96),
    rgba(8,8,8,0.98)
  );

  border:1px solid rgba(201,160,99,0.18);

  border-radius:28px;

  padding:28px;

  box-shadow:
  0 0 60px rgba(201,160,99,0.06);

  overflow:hidden;
}

/* ================= TOP ROW ================= */

.calc-row{
  display:grid;

  grid-template-columns:
  1fr
  1fr
  1fr
  1fr;

  gap:18px;

  align-items:stretch;
}

/* ================= ITEM ================= */

.calc-item{

  background:
  linear-gradient(
    180deg,
    rgba(22,22,22,0.96),
    rgba(10,10,10,0.98)
  );

  border:1px solid rgba(255,255,255,0.06);

  border-radius:20px;

  padding:18px;
  
  padding-top:20px;

  transition:0.3s;

  min-height:160px;

  display:flex;

  flex-direction:column;

  justify-content:flex-start;
}

.calc-item:hover{

  border-color:
  rgba(201,160,99,0.28);

  box-shadow:
  0 0 25px rgba(201,160,99,0.08);
}

/* ================= HEADER ================= */

.calc-top{
  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:16px;
}

.calc-top h3{

  color:#fff;

  font-size:15px;

  font-weight:600;

  line-height:1.35;

  word-break:break-word;

  max-width:220px;
}

/* ================= STEP ================= */

.premium-step{
  width:36px;
  height:36px;

  min-width:36px;

  border-radius:50%;

  border:1px solid #C9A063;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#C9A063;

  font-size:15px;
  font-weight:700;

  box-shadow:
  0 0 18px rgba(201,160,99,0.14);
}

/* ================= TYPE ================= */

.type-grid,
.level-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:10px;
}

.type-card,
.level-card{
  height:74px;

  border-radius:14px;

  border:1px solid rgba(255,255,255,0.07);

  background:
  linear-gradient(
    180deg,
    rgba(28,28,28,0.95),
    rgba(12,12,12,0.98)
  );

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  gap:8px;

  cursor:pointer;

  transition:0.25s;

  color:#fff;

  font-size:13px;

  font-weight:600;
}

.type-card i,
.level-card i{
  font-size:18px;
}

.type-card.active,
.level-card.active{
  border-color:#C9A063;

  color:#C9A063;

  box-shadow:
  0 0 20px rgba(201,160,99,0.15);
}

/* ================= SELECT ================= */

.premium-select{
  position:relative;
}

.premium-select-head{
  height:74px;

  border-radius:14px;

  border:1px solid rgba(255,255,255,0.07);

  background:
  linear-gradient(
    180deg,
    rgba(28,28,28,0.95),
    rgba(10,10,10,0.98)
  );

  padding:0 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  cursor:pointer;

  transition:0.25s;
}

.premium-select-head:hover{
  border-color:rgba(201,160,99,0.35);
}

.premium-select-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.premium-select-left i{
  color:#C9A063;

  font-size:18px;
}

.service-name{
  color:#C9A063;

  font-size:15px;

  font-weight:600;
}

.fa-chevron-down{
  color:#C9A063;

  font-size:13px;
}

/* ================= DROPDOWN ================= */

.premium-dropdown{
  position:absolute;

  top:calc(100% + 8px);

  left:0;

  width:100%;

  display:none;

  z-index:999;

  overflow:auto;
  max-height: 320px;


  border-radius:16px;

  background:
  linear-gradient(
    180deg,
    rgba(20,20,20,0.98),
    rgba(8,8,8,0.99)
  );

  border:1px solid rgba(201,160,99,0.14);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.55);
}

.premium-dropdown.active{
  display:block;
}

.premium-option{
  padding:14px 18px;

  color:#fff;

  font-size:14px;

  cursor:pointer;

  transition:0.2s;
}

.premium-option:hover{
  background:rgba(201,160,99,0.08);

  color:#C9A063;
}

/* ================= AREA ================= */

.area-wrapper{
  display:flex;

  align-items:center;

  gap:16px;
}

.area-input-box{
  width:120px;
  height:58px;

  border-radius:14px;

  border:1px solid rgba(255,255,255,0.07);

  background:
  linear-gradient(
    180deg,
    rgba(28,28,28,0.95),
    rgba(10,10,10,0.98)
  );

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 14px;
}

.area-input-box input{
  background:none;
  border:none;
  outline:none;

  width:100%;

  color:#fff;

  font-size:20px;

  font-weight:700;
}

.area-input-box span{
  color:#fff;

  font-size:18px;
}

/* ================= SLIDER ================= */

.slider-wrapper{
  flex:1;
}

.premium-slider{
  width:100%;
  height:4px;

  appearance:none;

  border-radius:20px;

  background:rgba(255,255,255,0.12);

  outline:none;
}

.premium-slider::-webkit-slider-thumb{
  appearance:none;

  width:18px;
  height:18px;

  border-radius:50%;

  background:#C9A063;

  border:3px solid #f5ddb2;

  cursor:pointer;

  box-shadow:
  0 0 15px rgba(201,160,99,0.4);
}

.slider-values{
  display:flex;

  justify-content:space-between;

  margin-top:10px;

  color:rgba(255,255,255,0.6);

  font-size:11px;
}

/* ================= RESULT ================= */

.premium-result{
  margin-top:20px;

  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.96),
    rgba(8,8,8,0.98)
  );

  border:1px solid rgba(201,160,99,0.14);

  border-radius:20px;

  padding:20px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.premium-result-left{
  display:flex;
  align-items:center;

  gap:16px;
}

.result-icon{
  width:58px;
  height:58px;

  border-radius:50%;

  border:1px solid rgba(201,160,99,0.25);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#C9A063;

  font-size:22px;
}

.result-label{
  color:rgba(255,255,255,0.55);

  font-size:12px;

  margin-bottom:4px;
}

.result-price{
  color:#C9A063;

  font-size:42px;

  font-weight:800;
}

/* ================= PREMIUM CALC BUTTON ================= */

.premium-btn{

  margin-top:24px;

  height:52px;

  padding:0 26px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  font-size:15px;

  font-weight:600;

  color:#D6AE6B;

  background:
    linear-gradient(
      145deg,
      rgba(42,34,24,0.32),
      rgba(18,16,14,0.18)
    );

  border:
    1px solid rgba(201,160,99,0.10);

  box-shadow:
    0 0 12px rgba(201,160,99,0.015),
    inset 0 1px 0 rgba(255,255,255,0.02);

  backdrop-filter:blur(8px);

  display:flex;
  align-items:center;
  justify-content:center;

  gap:10px;

  transition:
    all .35s ease;
}

/* ================= HOVER ================= */

.premium-btn:hover{

  transform:
    translateY(-2px);

  border-color:
    rgba(201,160,99,0.18);

  background:
    linear-gradient(
      145deg,
      rgba(58,46,30,0.42),
      rgba(24,20,18,0.26)
    );
}

/* ================= CLICK ================= */

.premium-btn:active{

  transform:
    scale(0.98);
}

/* ================= MOBILE ================= */

@media(max-width:1100px){

  .calc-row{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .premium-calc{
    padding:18px;
  }

  .calc-row{
    grid-template-columns:1fr;
  }

  .type-grid,
  .level-grid{
    grid-template-columns:1fr;
  }

  .area-wrapper{
    flex-direction:column;
    align-items:stretch;
  }

  .area-input-box{
    width:100%;
  }

  .premium-result{
    flex-direction:column;

    gap:18px;

    align-items:flex-start;
  }

  .premium-btn{
    width:100%;

    justify-content:center;
  }

  .result-price{
    font-size:34px;
  }

}
/* ================= ULTRA PREMIUM EFFECT ================= */

.premium-calc{
  position: relative;

  overflow: hidden;

  isolation: isolate;

  background:
  linear-gradient(
    135deg,
    rgba(12,12,12,0.96),
    rgba(6,6,6,0.98)
  );

  border: 1px solid rgba(201,160,99,0.18);

  box-shadow:
    0 0 80px rgba(201,160,99,0.05),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* MOVING GOLD LIGHT */

.premium-calc::before{
  content:"";

  position:absolute;

  width:700px;
  height:700px;

  top:-250px;
  left:-250px;

  background:
  radial-gradient(
    circle,
    rgba(201,160,99,0.12) 0%,
    rgba(201,160,99,0.04) 35%,
    transparent 72%
  );

  animation:
    luxuryMove 14s ease-in-out infinite;

  pointer-events:none;

  z-index:-1;

  filter: blur(10px);
}

/* SHIMMER LINE */

.premium-calc::after{
  content:"";

  position:absolute;

  top:0;
  left:-40%;

  width:50%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.03),
    rgba(201,160,99,0.10),
    rgba(255,255,255,0.03),
    transparent
  );

  transform: skewX(-25deg);

  animation:
    shimmerMove 7s linear infinite;

  pointer-events:none;
}

/* ================= DROPDOWN FIX ================= */

.premium-block{
  overflow: visible;

  position: relative;

  z-index: 2;
}

.premium-select{
  position: relative;

  z-index: 30;
}

.premium-dropdown{

  position: absolute;

  top: calc(100% + 10px);

  left: 0;

  width: 100%;

  z-index: 9999;

  max-height: 180px;
  padding-bottom: 14px;

  overflow-y: auto;

  overflow-x: hidden;

  opacity: 0;

  visibility: hidden;

  transform:
  translateY(12px)
  scale(0.98);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  pointer-events: none;

  background:
  linear-gradient(
    180deg,
    rgba(10,10,10,0.98),
    rgba(4,4,4,0.99)
  );

  border: 1px solid rgba(201,160,99,0.18);

  border-radius: 22px;

  backdrop-filter: blur(16px);

  box-shadow:
    0 20px 80px rgba(0,0,0,0.75),
    0 0 30px rgba(201,160,99,0.08);

  padding: 14px 0;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(201,160,99,0.8)
    transparent;
}

/* ACTIVE */

.premium-dropdown.active{

  opacity: 1;

  visibility: visible;

  transform:
  translateY(0)
  scale(1);

  pointer-events: auto;
}

/* SCROLLBAR */

.premium-dropdown::-webkit-scrollbar{
  width: 4px;
}

.premium-dropdown::-webkit-scrollbar-track{
  background: transparent;

  margin: 16px 0;
}

.premium-dropdown::-webkit-scrollbar-thumb{

  background:
  linear-gradient(
    180deg,
    #D8B178,
    #A8844A
  );

  border-radius: 20px;
}

.premium-dropdown::-webkit-scrollbar-thumb:hover{

  background:
  linear-gradient(
    180deg,
    #E6C38D,
    #C9A063
  );
}

/* OPTIONS */

.premium-option{

  position:relative;

  overflow:hidden;

  padding:18px 22px;

  cursor:pointer;

  color:#F5F5F5;

  font-size:14px;

  font-weight:500;

  border-left:
  1px solid transparent;

  transition:
  all .45s cubic-bezier(.22,.61,.36,1);

  z-index:1;
}

/* ================= HOVER ================= */

.premium-option:hover{

  color:#E6C38D;

  padding-left:34px;

  letter-spacing:0.3px;

  border-left:
  2px solid rgba(201,160,99,0.75);

  box-shadow:
  inset 0 0 24px rgba(201,160,99,0.08);
}

/* ================= CINEMATIC LIGHT ================= */

.premium-option::before{

  content:"";

  position:absolute;

  inset:0;

  z-index:-1;

  opacity:0;

  background:
  linear-gradient(
    90deg,
    rgba(201,160,99,0.22),
    rgba(201,160,99,0.06),
    transparent
  );

  transition:
  opacity .45s ease;
}

.premium-option:hover::before{

  opacity:1;
}

/* ================= NO SELECT ================= */

.premium-calc,
.premium-calc *{

  user-select:none;
  -webkit-user-select:none;
}

.calc-input{

  user-select:text;
  -webkit-user-select:text;
}

/* ================= ANIMATIONS ================= */

@keyframes luxuryMove{

  0%{
    transform:
    translate(0,0)
    scale(1);
  }

  25%{
    transform:
    translate(120px,60px)
    scale(1.08);
  }

  50%{
    transform:
    translate(240px,120px)
    scale(1);
  }

  75%{
    transform:
    translate(120px,180px)
    scale(1.12);
  }

  100%{
    transform:
    translate(0,0)
    scale(1);
  }

}

@keyframes shimmerMove{

  0%{
    left:-40%;
  }

  100%{
    left:100%;
  }

}

/* ================= CARD IMAGES ================= */

/* CARD 1 */

.card:nth-child(1) .card-image{

  background-image:
  url("img/kraska.png");

  background-size: cover;

  background-position: center;
}

/* CARD 2 */

.card:nth-child(2) .card-image{

  background-image:
  url("img/kladka.png");

  background-size: cover;

  background-position: center;
}

/* CARD 3 */

.card:nth-child(3) .card-image{

  background-image:
  url("img/Uravnenie pola.png");

  background-size: cover;

  background-position: center;
}

/* CARD 4 */

.card:nth-child(4) .card-image{

  background-image:
  url("img/Stukaturka.png");

  background-size: cover;

  background-position: center;
}

/* CARD 5 */

.card:nth-child(5) .card-image{

  background-image:
  url("img/Snos.png");

  background-size: cover;

  background-position: center;
}

/* CARD 6 */

.card:nth-child(6) .card-image{

  background-image:
  url("img/Elektrika.png");

  background-size: cover;

  background-position: center;
}

/* CARD 7 */

.card:nth-child(7) .card-image{

  background-image:
  url("img/Santexnika.png");

  background-size: cover;

  background-position: center;
}

/* CARD 8 */

.card:nth-child(8) .card-image{

  background-image:
  url("img/Gips.png");

  background-size: cover;

  background-position: center;
}

/* CARD 9 */

.card:nth-child(9) .card-image{

  background-image:
  url("img/Francuse potolok.png");

  background-size: cover;

  background-position: center;
}

/* CARD 10 */

.card:nth-child(10) .card-image{

  background-image:
  url("img/Virav.png");

  background-size: cover;

  background-position: center;
}

/* CARD 11 */

.card:nth-child(11) .card-image{

  background-image:
  url("img/Plitka.png");

  background-size: cover;

  background-position: center;
}

/* CARD 12 */

.card:nth-child(12) .card-image{

  background-image:
  url("img/Laminat.png");

  background-size: cover;

  background-position: center;
}

/* CARD 13 */

.card:nth-child(13) .card-image{

  background-image:
  url("img/Plintus.png");

  background-size: cover;

  background-position: center;
}

/* CARD 14 */

.card:nth-child(14) .card-image{

  background-image:
  url("img/Dveri.png");

  background-size: cover;

  background-position: center;
}

/* CARD 15 */

.card:nth-child(15) .card-image{

  background-image:
  url("img/Oboi.png");

  background-size: cover;

  background-position: center;
}

/* CARD 16 */

.card:nth-child(16) .card-image{

  background-image:
  url("img/Dekor.png");

  background-size: cover;

  background-position: center;
}

/* CARD 17 */

.card:nth-child(17) .card-image{

  background-image:
  url("img/Molding.png");

  background-size: cover;

  background-position: center;
}

/* CARD 18 */

.card:nth-child(18) .card-image{

  background-image:
  url("img/Karniz.png");

  background-size: cover;

  background-position: center;
}

/* CARD 19 */

.card:nth-child(19) .card-image{

  background-image:
  url("img/Armstrong.png");

  background-size: cover;

  background-position: center;
}

/* CARD 20 */

.card:nth-child(20) .card-image{

  background-image:
  url("img/Nalivnoj-pol.png");

  background-size: cover;

  background-position: center;
}

/* CARD 21 */

.card:nth-child(21) .card-image{

  background-image:
  url("img/Zidkij-pol.png");

  background-size: cover;

  background-position: center;
}

/* CARD 22 */

.card:nth-child(22) .card-image{

  background-image:
  url("img/Podogrev-pola.png");

  background-size: cover;

  background-position: center;
}

/* ================= CARD BUTTON ================= */

.card-btn{

  margin-top:24px;

  width:100%;

  height:52px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  font-size:15px;

  font-weight:600;

  color:#D6AE6B;

  background:
    linear-gradient(
      145deg,
      rgba(42,34,24,0.32),
      rgba(18,16,14,0.18)
    );

  border:
    1px solid rgba(201,160,99,0.10);

  box-shadow:
    0 0 12px rgba(201,160,99,0.015),
    inset 0 1px 0 rgba(255,255,255,0.02);

  backdrop-filter:blur(8px);

  transition:
    all .35s ease;
}

/* HOVER */

.card-btn:hover{

  transform:
    translateY(-2px);

  border-color:
    rgba(201,160,99,0.18);

  background:
    linear-gradient(
      145deg,
      rgba(58,46,30,0.42),
      rgba(24,20,18,0.26)
    );
}

/* CLICK */

.card-btn:active{

  transform:
    scale(0.98);
}

/* ================= ACTIVE SERVICE ================= */

.active-service{

  color:#D6AE6B;

  background:
    rgba(201,160,99,0.08);

  border-left:
    2px solid #C9A063;
}

section{

  scroll-margin-top:120px;

}

/* ================= MENU ANIMATION ================= */

.menu a{

  position:relative;

  transition:
    color .35s ease;
}

.menu a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-6px;

  width:0;
  height:1px;

  background:#C9A063;

  transition:
    width .35s ease;
}

.menu a:hover::after{

  width:100%;
}

/* ================= NO TEXT SELECT ================= */

body{

  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;

}

/* ================= REMOVE NUMBER ARROWS ================= */

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{

  -webkit-appearance:none;

  margin:0;
}

input[type=number]{

  -moz-appearance:textfield;

  appearance:textfield;
}

/* ================= CALC NOTE ================= */

.calc-note{

  margin-top:18px;

  text-align:center;

  font-size:13px;

  line-height:1.7;

  font-weight:600;

  color:
  rgba(214,174,107,0.82);

}

/* ================= NOTE GLOW ================= */

@keyframes noteGlow{

  0%{
    opacity:0.72;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:0.72;
  }

}

/* ================= FIXED BG LOGO ================= */

.bg-logo{

  position:fixed;

  top:50%;
  left:50%;

  transform:
  translate(-50%,-50%);

  width:700px;
  height:700px;

  background:
  url("https://i.postimg.cc/NGCztmTv/21580e49-72b9-44d6-b15d-29765ed952dc-copy.png")
  center/contain
  no-repeat;

  opacity:0.035;

  pointer-events:none;

  z-index:0;

  filter:
  drop-shadow(
    0 0 40px rgba(201,160,99,0.08)
  );

}

/* ================= BUTTON SHINE ================= */

.card-btn,
.premium-btn{

  position:relative;

  overflow:hidden;
}

.card-btn::before,
.premium-btn::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.10),
      transparent
    );

  transform:skewX(-25deg);

  transition:0.8s;
}

/* ================= SHINE HOVER ================= */

.card-btn:hover::before,
.premium-btn:hover::before{

  left:140%;
}

/* ================= CONTACT MODAL ================= */

.contact-modal-overlay{

  position:fixed;

  inset:0;

  background:
  rgba(0,0,0,0.72);

  backdrop-filter:blur(10px);

  display:flex;

  align-items:center;
  justify-content:center;

  padding:20px;

  z-index:99999;

  opacity:0;

  visibility:hidden;

  transition:0.35s;
}

/* ACTIVE */

.contact-modal-overlay.active{

  opacity:1;

  visibility:visible;
}

/* ================= MODAL ================= */

.contact-modal{

  width:100%;

  max-width:520px;

  position:relative;

  overflow:hidden;

  border-radius:30px;

  padding:38px 30px;

  background:
  linear-gradient(
    145deg,
    rgba(18,18,18,0.96),
    rgba(6,6,6,0.98)
  );

  border:
  1px solid rgba(201,160,99,0.18);

  box-shadow:
  0 0 80px rgba(201,160,99,0.08),
  0 20px 80px rgba(0,0,0,0.65);

  transform:
  translateY(30px)
  scale(0.96);

  transition:0.35s;
}

/* ACTIVE */

.contact-modal-overlay.active .contact-modal{

  transform:
  translateY(0)
  scale(1);
}

.contact-bg-logo{

  position:absolute;

  inset:0;

  background-image:
  url("https://i.postimg.cc/gJy77zj1/21580e49-72b9-44d6-b15d-29765ed952dc.png");

  background-repeat:no-repeat;

  background-position:center;

  background-size:320px;

  opacity:0.05;

  pointer-events:none;

  user-select:none;

  filter:blur(1px);
}/* ================= BG LOGO ================= */

.contact-bg-logo{

  position:absolute;

  inset:0;

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:140px;

  font-weight:800;

  letter-spacing:12px;

  color:
  rgba(201,160,99,0.03);

  pointer-events:none;

  user-select:none;
}

/* ================= CLOSE ================= */

.contact-close{

  position:absolute;

  z-index:9999;

  top:18px;
  right:18px;

  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border:none;

  border-radius:50%;

  cursor:pointer;

  color:#C9A063;

  font-size:16px;

  line-height:1;

  background:
  rgba(255,255,255,0.04);

  transition:0.25s;
}

.contact-close:hover{

  transform:rotate(90deg);

  background:
  rgba(201,160,99,0.12);
}

/* ================= TOP ================= */

.contact-modal-top{

  position:relative;

  z-index:2;

  text-align:center;

  margin-bottom:30px;
}

.contact-icon{

  width:78px;
  height:78px;

  margin:0 auto 18px;

  border-radius:50%;

  display:flex;

  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #C9A063,
    #E0BE86
  );

  color:#111;

  font-size:30px;

  box-shadow:
  0 0 30px rgba(201,160,99,0.25);
}

.contact-modal-top h2{

  color:#C9A063;

  font-size:32px;

  margin-bottom:10px;
}

.contact-modal-top p{

  color:#bdbdbd;

  font-size:15px;
}

/* ================= ACTIONS ================= */

.contact-actions{

  display:flex;

  flex-direction:column;

  gap:14px;

  position:relative;

  z-index:2;
}

/* ================= ACTION ================= */

.contact-action{

  position:relative;

  overflow:hidden;

  cursor:pointer;

  display:flex;

  align-items:center;

  gap:12px;

  padding:14px 16px;

  border-radius:18px;

  text-decoration:none;

  background:
  linear-gradient(
    180deg,
    rgba(24,24,24,0.96),
    rgba(8,8,8,0.98)
  );

  border:
  1px solid rgba(201,160,99,0.10);

  transition:0.35s;

  box-shadow:
  0 0 14px rgba(201,160,99,0.04),
  inset 0 1px 0 rgba(255,255,255,0.02);
}

/* ================= SHINE ================= */

.contact-action::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.10),
    transparent
  );

  transform:skewX(-25deg);

  transition:0.8s;
}

/* ================= HOVER ================= */

.contact-action:hover{

  transform:
  translateY(-2px);

  border-color:
  rgba(201,160,99,0.24);

  box-shadow:
  0 0 22px rgba(201,160,99,0.10);
}

.contact-action:hover::before{

  left:140%;
}

/* ================= ICON ================= */

.contact-action-icon{

  width:38px;
  height:38px;

  min-width:38px;

  border-radius:12px;

  display:flex;

  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    rgba(201,160,99,0.18),
    rgba(201,160,99,0.06)
  );

  color:#D6AE6B;

  font-size:14px;

  box-shadow:
  0 0 10px rgba(201,160,99,0.06);
}

/* ================= TEXT ================= */

.contact-action span{

  flex:1;

  text-align:center;

  color:#F5F5F5;

  font-size:14px;

  font-weight:600;

  letter-spacing:0.2px;

  transform:
  translateX(-10px);
}

.contact-action small{

  color:#9c9c9c;

  font-size:12px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .contact-modal{

    padding:34px 20px;
  }

  .contact-bg-logo{

    font-size:90px;
  }

  .contact-modal-top h2{

    font-size:26px;
  }

}

/* ================= PREMIUM MODAL EFFECTS ================= */

/* ================= CINEMATIC LIGHT ================= */

.contact-modal{

  position:relative;

  overflow:hidden;

  animation:
  modalBreath 5s ease-in-out infinite;
}

.contact-modal::before{

  content:"";

  position:absolute;

  top:-40%;

  left:-140%;

  width:70%;

  height:180%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.035),
    transparent
  );

  transform:
  rotate(12deg);

  animation:
  cinematicSweep 8s ease-in-out infinite;

  pointer-events:none;
}

/* ================= SHINE ================= */

.contact-action{

  position:relative;

  overflow:hidden;
}

.contact-action::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:80%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );

  transform:
  skewX(-25deg);

  transition:0.8s;
}

.contact-action:hover::before{

  left:140%;
}

/* ================= KEYFRAMES ================= */

@keyframes cinematicSweep{

  0%{

    left:-140%;
  }

  45%{

    left:160%;
  }

  100%{

    left:160%;
  }

}

@keyframes modalBreath{

  0%{

    box-shadow:
    0 0 80px rgba(201,160,99,0.08),
    0 20px 80px rgba(0,0,0,0.65);
  }

  50%{

    box-shadow:
    0 0 110px rgba(201,160,99,0.14),
    0 25px 100px rgba(0,0,0,0.72);
  }

  100%{

    box-shadow:
    0 0 80px rgba(201,160,99,0.08),
    0 20px 80px rgba(0,0,0,0.65);
  }

}

/* ================= ORDER MODAL ================= */

.order-modal-overlay{

  position:fixed;

  inset:0;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:20px;

  background:
  rgba(0,0,0,0.76);

  backdrop-filter:
  blur(14px);

  z-index:99999;

  opacity:0;

  visibility:hidden;

  transition:
  opacity .45s ease,
  visibility .45s ease;
}

/* ACTIVE */

.order-modal-overlay.active{

  opacity:1;

  visibility:visible;
}

/* ================= MODAL ================= */

.order-modal{

  width:92%;

  max-width:520px;

  border-radius:30px;

  padding:28px;

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.98),
    rgba(8,8,8,0.99)
  );

  border:
  1px solid rgba(201,160,99,0.18);

  box-shadow:
  0 0 90px rgba(201,160,99,0.10),
  0 30px 120px rgba(0,0,0,0.65);

  transform:
  translateY(40px)
  scale(.92);

  opacity:0;

  transition:
  transform .55s cubic-bezier(.22,.61,.36,1),
  opacity .45s ease;
}

/* ACTIVE */

.order-modal-overlay.active .order-modal{

  transform:
  translateY(0)
  scale(1);

  opacity:1;
}

/* ================= GOLD LIGHT ================= */

.order-modal::before{

  content:"";

  position:absolute;

  width:420px;
  height:420px;

  top:-220px;
  left:-120px;

  background:
  radial-gradient(
    circle,
    rgba(201,160,99,0.12),
    transparent 72%
  );

  filter:blur(10px);

  pointer-events:none;

  animation:
  orderGlow 8s ease-in-out infinite;
}

/* ================= SHIMMER ================= */

.order-modal::after{

  content:"";

  position:absolute;

  top:0;
  left:-50%;

  width:40%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.03),
    rgba(201,160,99,0.08),
    rgba(255,255,255,0.03),
    transparent
  );

  transform:
  skewX(-25deg);

  animation:
  orderShimmer 8s linear infinite;

  pointer-events:none;
}

/* ================= KEYFRAMES ================= */

@keyframes orderGlow{

  0%{
    transform:
    translate(0,0);
  }

  50%{
    transform:
    translate(30px,25px);
  }

  100%{
    transform:
    translate(0,0);
  }
}

@keyframes orderShimmer{

  0%{
    left:-50%;
  }

  100%{
    left:140%;
  }
}

/* ================= CLOSE ================= */

.order-close{

  position:absolute;

  top:18px;
  right:18px;

  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  border:none;

  border-radius:50%;

  cursor:pointer;

  color:#C9A063;

  font-size:16px;

  line-height:1;

  background:
  rgba(255,255,255,0.04);

  transition:0.25s;
}

.order-close:hover{

  background:
  rgba(201,160,99,0.12);

  transform:rotate(90deg);
}

/* ================= TOP ================= */

.order-modal-top{

  margin-bottom:24px;
}

.order-modal-top h3{

  color:#C9A063;

  font-size:28px;

  margin-bottom:10px;
}

.order-modal-top p{

  color:rgba(255,255,255,0.62);

  line-height:1.6;

  font-size:14px;
}

/* ================= FORM ================= */

.order-form{

  display:flex;

  flex-direction:column;

  gap:18px;

  margin-bottom:26px;
}

.order-input-box{

  display:flex;

  flex-direction:column;

  gap:10px;
}

.order-input-box label{

  color:#C9A063;

  font-size:13px;

  font-weight:600;
}

.order-input-box input,
.order-input-box select{

  height:58px;

  border:none;

  outline:none;

  border-radius:16px;

  padding:0 18px;

  color:#fff;

  font-size:15px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.25s;
}

.order-input-box input:focus,
.order-input-box select:focus{

  border-color:
  rgba(201,160,99,0.35);

  box-shadow:
  0 0 20px rgba(201,160,99,0.10);
}

/* ================= CONTACTS ================= */

.order-contact-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:14px;
}

.order-contact-btn{

  height:56px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  text-decoration:none;

  color:#fff;

  font-size:15px;

  font-weight:600;

  display:flex;

  align-items:center;
  justify-content:center;

  gap:10px;

  transition:0.25s;

  background:
  linear-gradient(
    145deg,
    rgba(42,34,24,0.32),
    rgba(18,16,14,0.18)
  );

  border:
  1px solid rgba(201,160,99,0.10);
}

.order-contact-btn:hover{

  transform:
  translateY(-2px);

  border-color:
  rgba(201,160,99,0.24);

  box-shadow:
  0 0 24px rgba(201,160,99,0.10);
}

/* ================= PREMIUM CONTACT BUTTONS ================= */

.contact-action{

  position:relative;

  overflow:hidden;

  height:58px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:12px;

  background:
  linear-gradient(
    145deg,
    rgba(42,34,24,0.32),
    rgba(18,16,14,0.18)
  );

  border:
  1px solid rgba(201,160,99,0.10);

  color:#fff;

  font-size:15px;

  font-weight:700;

  transition:0.35s;

  box-shadow:
  0 0 12px rgba(201,160,99,0.015),
  inset 0 1px 0 rgba(255,255,255,0.02);

  text-decoration:none;
}

/* ================= SHINE ================= */

.contact-action::before{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.20),
    transparent
  );

  transform:skewX(-25deg);

  transition:0.8s;
}

/* ================= HOVER ================= */

.contact-action:hover{

  transform:
  translateY(-3px);

  border-color:
  rgba(201,160,99,0.22);

  box-shadow:
  0 0 24px rgba(201,160,99,0.12);

}

.contact-action:hover::before{

  left:140%;

}

/* ================= ICON ================= */

.contact-action-icon{

  width:34px;
  height:34px;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  rgba(201,160,99,0.12);

  color:#D6AE6B;

  font-size:15px;

  flex-shrink:0;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .order-modal{

    padding:22px;
  }

  .order-contact-grid{

    grid-template-columns:1fr;
  }

}

/* ================= ORDER CITY FIX ================= */

.order-city{

  appearance:none;
  -webkit-appearance:none;

  color:#fff;

  background:
  linear-gradient(
    145deg,
    rgba(28,28,28,0.96),
    rgba(12,12,12,0.98)
  ) !important;

  color-scheme:dark;

  cursor:pointer;
}

.order-city option{

  background:#111;

  color:#fff;

  padding:14px;
}

/* ================= ORDER DROPDOWN ================= */

.order-select{

  position:relative;
}

/* HEAD */

.order-select-head{

  height:58px;

  border-radius:16px;

  padding:0 18px;

  display:flex;

  align-items:center;
  justify-content:space-between;

  cursor:pointer;

  color:#fff;

  background:
  linear-gradient(
    145deg,
    rgba(28,28,28,0.96),
    rgba(12,12,12,0.98)
  );

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.25s;
}

.order-select-head:hover{

  border-color:
  rgba(201,160,99,0.30);

  box-shadow:
  0 0 20px rgba(201,160,99,0.08);
}

/* TEXT */

.order-region-name{

  color:#fff;

  font-size:15px;
}

/* ICON */

.order-select-head i{

  color:#C9A063;

  font-size:12px;

  transition:0.25s;
}

/* DROPDOWN */

.order-dropdown{
  
  pointer-events:none;

  position:absolute;

  top:calc(100% + 10px);

  left:0;

  width:100%;

  max-height:260px;

  overflow-y:auto;

  border-radius:18px;

  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.98),
    rgba(8,8,8,0.99)
  );

  border:
  1px solid rgba(201,160,99,0.14);

  box-shadow:
  0 20px 60px rgba(0,0,0,0.6);

  opacity:0;

  visibility:hidden;

  transform:
  translateY(10px)
  scale(0.98);

  transition:0.25s;

  z-index:9999;
}

/* ACTIVE */

.order-dropdown.active{
  
  pointer-events:auto;

  opacity:1;

  visibility:visible;

  transform:
  translateY(0)
  scale(1);
}

/* OPTIONS */

.order-option{

  position:relative;

  overflow:hidden;

  padding:18px 22px;

  cursor:pointer;

  color:#F5F5F5;

  font-size:14px;

  font-weight:500;

  border-left:
  2px solid transparent;

  transition:
  all .45s cubic-bezier(.22,.61,.36,1);
}

/* ================= LIGHT ================= */

.order-option::before{

  content:"";

  position:absolute;

  inset:0;

  opacity:0;

  background:
  linear-gradient(
    90deg,
    rgba(201,160,99,0.18),
    rgba(201,160,99,0.05),
    transparent
  );

  transition:
  opacity .45s ease;
}

/* ================= HOVER ================= */

.order-option:hover{

  color:#E6C38D;

  padding-left:34px;

  border-left:
  2px solid rgba(201,160,99,0.75);

  box-shadow:
  inset 0 0 20px rgba(201,160,99,0.06);
}

.order-option:hover::before{

  opacity:1;
}

/* SCROLL */

.order-dropdown::-webkit-scrollbar{
  width:4px;
}

.order-dropdown::-webkit-scrollbar-thumb{

  background:#C9A063;

  border-radius:20px;
}

/* ================= WARNING MODAL ================= */

.warning-overlay{

  position:fixed;

  inset:0;

  display:flex;

  align-items:center;
  justify-content:center;

  padding:20px;

  background:
  rgba(0,0,0,0.72);

  backdrop-filter:blur(10px);

  z-index:999999;

  opacity:0;

  visibility:hidden;

  transition:0.3s;
}

/* ACTIVE */

.warning-overlay.active{

  opacity:1;

  visibility:visible;
}

/* ================= MODAL ================= */

.warning-modal{

  width:100%;

  max-width:420px;

  border-radius:28px;

  padding:34px 28px;

  text-align:center;

  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.98),
    rgba(8,8,8,0.99)
  );

  border:
  1px solid rgba(201,160,99,0.18);

  box-shadow:
  0 0 80px rgba(201,160,99,0.10);

  transform:
  translateY(20px)
  scale(0.96);

  transition:0.3s;
}

/* ACTIVE */

.warning-overlay.active .warning-modal{

  transform:
  translateY(0)
  scale(1);
}

/* ================= ICON ================= */

.warning-icon{

  width:82px;
  height:82px;

  margin:0 auto 22px;

  border-radius:50%;

  display:flex;

  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    rgba(201,160,99,0.22),
    rgba(201,160,99,0.08)
  );

  color:#C9A063;

  font-size:34px;

  box-shadow:
  0 0 40px rgba(201,160,99,0.16);
}

/* ================= TITLE ================= */

.warning-title{

  color:#fff;

  font-size:28px;

  font-weight:700;

  margin-bottom:14px;
}

/* ================= TEXT ================= */

.warning-text{

  color:rgba(255,255,255,0.72);

  line-height:1.7;

  font-size:15px;

  margin-bottom:28px;
}

/* ================= BUTTON ================= */

.warning-btn{

  width:100%;

  height:58px;

  border:none;

  border-radius:18px;

  cursor:pointer;

  color:#111;

  font-size:15px;

  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #C9A063,
    #E0BE86
  );

  transition:0.25s;
}

.warning-btn:hover{

  transform:
  translateY(-2px);

  box-shadow:
  0 0 30px rgba(201,160,99,0.24);
}

@keyframes headerShine{

  0%{
    left:-35%;
  }

  100%{
    left:140%;
  }

}

@keyframes headerBottomShine{

  0%{
    left:-40%;
  }

  100%{
    left:140%;
  }

}

@keyframes bottomBarShine{

  0%{
    left:-40%;
  }

  100%{
    left:140%;
  }

}

@keyframes bottomBarMetalShine{

  0%{
    left:-35%;
  }

  100%{
    left:140%;
  }

}