/* Stylesheet for Limited Charm - LOSSLESS ŠAMPON (Botanical Glassmorphism Theme) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@400;600;700;800;900&display=swap&subset=cyrillic,cyrillic-ext');

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

body {
  font-family: 'Roboto', sans-serif;
  background: url('images/luxury_bg.jpg') center top / cover repeat-y fixed #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- TOP HEADER --- */
.top-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(39, 174, 96, 0.3);
  padding: 16px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #0f172a;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 12px;
  color: #27ae60;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-callback {
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.35);
  transition: all 0.2s ease;
}

.btn-callback:hover {
  background: linear-gradient(180deg, #27ae60 0%, #1e824c 100%);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.5);
  transform: translateY(-1px);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  padding: 45px 0 60px 0;
  border-bottom: 1px solid #e2e8f0;
}

.hero-header-banner {
  text-align: center;
  margin-bottom: 35px;
}

.hero-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f172a;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #27ae60;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.hero-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 25px;
  align-items: center;
}

/* Left Hero Box: Offer Badge & Points */
.hero-left-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-offer-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid #27ae60;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.discount-highlight {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #27ae60;
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.pain-points-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-point-item {
  font-size: 14px;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.pain-point-item i {
  color: #27ae60;
  font-size: 16px;
  margin-top: 2px;
}

/* Center Hero Product Image */
.hero-center-box {
  text-align: center;
  position: relative;
}

.hero-product-img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 2px solid #ffffff;
  transition: transform 0.3s ease;
}

.hero-product-img:hover {
  transform: scale(1.02);
}

/* Right Hero Box: Order Form */
.hero-order-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 2px solid #27ae60;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.order-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.form-control {
  width: 100%;
  padding: 12px 14px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: #27ae60;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.18);
}

.pricing-table-box {
  background: #f1f8f5;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  margin: 18px 0;
  padding: 16px;
}

.single-price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.volume-tag {
  color: #1b4f35;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

.price-flex-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.old-price {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 700;
}

.current-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #27ae60;
  background: #ffffff;
  padding: 4px 14px;
  border-radius: 4px;
  border: 1px solid #81c784;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.btn-cta-main {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.btn-cta-main:hover {
  background: linear-gradient(180deg, #27ae60 0%, #1e824c 100%);
  box-shadow: 0 8px 22px rgba(39, 174, 96, 0.6);
  transform: translateY(-2px);
}

/* --- NAVIGATION BAR --- */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  border-bottom: 2px solid #cbd5e1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.nav-list {
  display: flex;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}

.nav-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.nav-item:last-child {
  border-right: none;
}

.nav-link {
  display: block;
  padding: 16px 10px;
  color: #1e293b;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background-color: #f1f8f5;
  color: #27ae60;
}

/* --- SHOWCASE SECTION --- */
.section-showcase {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}

.section-title-showcase {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-image-box {
  border: 2px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.showcase-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-image-box:hover .showcase-img {
  transform: scale(1.02);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.feature-item {
  font-size: 16px;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.feature-bold-highlight {
  color: #27ae60;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-secondary-cta {
  display: inline-block;
  padding: 15px 36px;
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.35);
  transition: all 0.2s ease;
}

.btn-secondary-cta:hover {
  background: linear-gradient(180deg, #27ae60 0%, #1e824c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.5);
}

/* --- CHARACTERISTICS SECTION --- */
.section-common {
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}

.bg-light-gray {
  background-color: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(10px);
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  font-size: 24px;
  flex-shrink: 0;
}

.spec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.spec-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
}

/* --- CUSTOM LEGAL FOOTER --- */
.custom-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 30px 0;
  border-top: 3px solid #27ae60;
}

.disclaimer-box {
  background: rgba(30, 41, 59, 0.9);
  border-left: 4px solid #e67e22;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.disclaimer-box strong {
  color: #f39c12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.company-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2ecc71;
  font-size: 15px;
  margin-bottom: 8px;
}

.company-info {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 8px;
  line-height: 1.5;
}

.company-info i {
  color: #2ecc71;
  margin-right: 6px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #2ecc71;
  transform: translateX(4px);
}

.footer-bottom-copyright {
  text-align: center;
  border-top: 1px solid #1e293b;
  padding-top: 25px;
  font-size: 12px;
  color: #64748b;
}

/* --- MODAL DIALOG --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 2px solid #27ae60;
  border-radius: 10px;
  padding: 32px;
  width: 90%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #64748b;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #0f172a;
}

/* Responsive queries */
@media (max-width: 992px) {
  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .grid-showcase {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .header-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-main-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .nav-list {
    flex-wrap: wrap;
  }
  .nav-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #e2e8f0;
  }
}

/* --- THANK YOU PAGE STYLES --- */
.thankyou-section {
  padding: 50px 0 80px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  min-height: calc(100vh - 200px);
}

.thankyou-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 45px 35px;
  border: 2px solid #27ae60;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thankyou-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.thankyou-icon {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 42px;
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
  animation: pulseScale 2s infinite;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 32px rgba(39, 174, 96, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
  }
}

.thankyou-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
}

.thankyou-subtitle {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
}

.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1e293b;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 35px;
}

.order-status-badge span {
  color: #27ae60;
  font-weight: 900;
}

.next-steps-container {
  text-align: left;
  margin-bottom: 30px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.next-steps-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #27ae60;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 4px;
}

.step-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

.order-summary-box {
  text-align: left;
  background: #ffffff;
  border-radius: 8px;
  border: 2px dashed #a5d6a7;
  padding: 20px;
  margin-bottom: 25px;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.summary-label {
  color: #64748b;
  font-weight: 500;
}

.summary-val {
  color: #1e293b;
  font-weight: 700;
}

.summary-total {
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
  margin-top: 5px;
}

.price-highlight {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #27ae60;
}

.support-info-box {
  background: #f1f8f5;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: #1b4f35;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .thankyou-card {
    padding: 25px 18px;
  }
  .thankyou-title {
    font-size: 22px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- PHONE INPUT VALIDATION STYLES --- */
.form-control.input-error {
  border-color: #e74c3c !important;
  background-color: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.phone-error-msg {
  color: #e74c3c;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-error-msg::before {
  content: '⚠️ ';
}


