/* 
 * Main stylesheet for domain.com
 * Color Palette:
 * - Primary: #3B1E54 (Cosmic Indigo)
 * - Secondary: #00F5D4 (Aurora Teal)
 * - Accent: #FF7D00 (Solar Tangerine)
 * - Background: #1C1C1C (Lunar Ash)
 * - Text: #F5F5F5 (Arctic White)
 */

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #3B1E54;
  --color-secondary: #00F5D4;
  --color-accent: #FF7D00;
  --color-background: #1C1C1C;
  --color-text: #F5F5F5;
  --color-dark-text: #333333;
  --color-light-bg: #2C2C2C;
  --font-family: 'Arial', 'Helvetica Neue', sans-serif;
}

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Layout */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--color-background);
}

section:nth-child(even) {
  background-color: var(--color-light-bg);
}

/* Section Dividers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.divider {
  height: 0.4rem;
  width: 6rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 0 auto;
  border-radius: 0.2rem;
}

/* Policy Pages */
.page-header h1 {
  text-align: center;
}

.policy-container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.6rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text);
  box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 245, 212, 0.5);
  color: var(--color-text);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-background);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 125, 0, 0.5);
  color: var(--color-text);
}

.btn-full {
  width: 100%;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(28, 28, 28, 0.95);
  padding: 2rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2.4rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 30, 84, 0.9), rgba(28, 28, 28, 0.9)),
    url('../img/KDtf3P.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10vw;
  left: 0;
  width: 100%;
  height: 20vw;
  background-color: var(--color-background);
  transform: skewY(-5deg);
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.tagline {
  font-size: 2rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

/* Mobile optimization for hero section */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content .tagline {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  
  .hero-content .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}

/* About Section */
.about-content {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.service-card {
  background-color: rgba(44, 44, 44, 0.7);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 35rem;
  flex: 1 1 30rem;
  border: 1px solid transparent;
}

/* No hover effects */

.service-icon {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 2rem;
  border-radius: 0.8rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--color-primary);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 30, 84, 0.2), rgba(0, 245, 212, 0.1));
  z-index: 1;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.service-card h3 {
  margin: 1.5rem 0;
  text-align: center;
}

.service-card p {
  text-align: center;
  opacity: 0.9;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

/* Pricing Section */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.price-card {
  background-color: rgba(44, 44, 44, 0.7);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 35rem;
}

.price-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 245, 212, 0.2);
  border: 2px solid var(--color-secondary);
  position: relative;
}

.price-card:hover {
  transform: translateY(-1rem);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-1rem);
}

.price-header {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 30, 84, 0.9), rgba(59, 30, 84, 0.7));
}

.price-header h3 {
  margin: 0 0 1rem;
  font-size: 2.4rem;
}

.price {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.price span {
  font-size: 1.6rem;
  font-weight: 400;
}

.price-features {
  padding: 3rem 2rem;
}

.price-features ul {
  list-style: none;
  margin-bottom: 3rem;
}

.price-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 3rem;
}

.price-features li::before {
  content: '✓';
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.price-features li.not-included {
  opacity: 0.5;
}

.price-features li.not-included::before {
  content: '×';
  color: rgba(255, 255, 255, 0.5);
}

.price-card .btn {
  display: block;
  margin: 0 2rem 2rem;
}

/* Testimonials Section */
.testimonials-container {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: all 0.3s ease;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-content {
  background-color: rgba(44, 44, 44, 0.7);
  padding: 3rem;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 3rem;
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 2rem solid rgba(44, 44, 44, 0.7);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

.author-info h4 {
  margin: 0;
  font-size: 1.8rem;
}

.author-info p {
  margin: 0;
  opacity: 0.7;
}

/* Highlight Banner */
.highlight-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  padding: 8rem 0;
  text-align: center;
}

.banner-content h2 {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
}

.banner-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Order Form Section */
.order-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--color-background), var(--color-primary));
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: var(--color-background);
  transform: skewY(-3deg);
  transform-origin: left;
}

.form-container {
  max-width: 60rem;
  margin: 0 auto;
  background-color: rgba(44, 44, 44, 0.8);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(59, 30, 84, 0.1), rgba(0, 245, 212, 0.1));
  border-radius: 1rem;
  z-index: -1;
}

.order-form {
  display: grid;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.form-group.checkbox input {
  margin-top: 0.5rem;
}

label {
  margin-bottom: 0.8rem;
  font-weight: 600;
}

input, select, textarea {
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background-color: rgba(28, 28, 28, 0.8);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}

/* Footer */
.site-footer {
  background-color: var(--color-background);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.footer-col h3 {
  position: relative;
  margin-bottom: 2.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 0.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-text);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.contact-info p {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(28, 28, 28, 0.95);
  padding: 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-text {
  flex-grow: 1;
  margin-right: 2rem;
}

.cookie-text h3 {
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(28, 28, 28, 0.98);
    padding: 8rem 2rem 2rem;
    transition: all 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 1000;
  }
  
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-content .tagline {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 3rem 2rem;
  }
}
