:root {
  --primary: #1f1f20;
  --secondary: #0ce3ea;
  --background: #F9FAFB;
  --text-primary: #112726;
  --text-secondary: #6B7280;
  --accent: #320f47;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(31, 31, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(31, 31, 32, 0.12);
  --shadow-lg: 0 8px 32px rgba(31, 31, 32, 0.16);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-md); }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all var(--transition-base);
}



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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  background: rgba(249, 250, 251, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 31, 32, 0.1);
  position: relative;
  z-index: 1000;
  transform: translateY(0);
  transition: transform var(--transition-base);
}
.header-wrapper > .container{
padding: 0 0.8rem;}
.header-wrapper.hidden {
  transform: translateY(-100%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--transition-base);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.logo:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.8rem;
  align-items: center;
}

nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

nav a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  padding: var(--space-xs);
  border: none;
  background: transparent;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.hero {
  padding: var(--space-xl) 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(12, 227, 234, 0.05) 0%, rgba(50, 15, 71, 0.05) 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: inline-flex;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(31, 31, 32, 0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: white;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.price-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--secondary);
  transform: scale(1.05);
}

.price-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(135deg, rgba(12, 227, 234, 0.05), rgba(50, 15, 71, 0.05));
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: var(--space-md) 0;
}

.price-tag span {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.price-features {
  list-style: none;
  margin: var(--space-md) 0;
  text-align: left;
}

.price-features li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.price-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(31, 31, 32, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all var(--transition-base);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(12, 227, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--primary);
  color: white;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  z-index: 2000;
  animation: slideUp 0.5s ease;
  border: 2px solid var(--secondary);
}

.privacy-popup.hidden {
  display: none;
}

.privacy-popup p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup button {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-base);
}

.privacy-popup button.accept {
  background: var(--secondary);
  color: white;
}

.privacy-popup button.decline {
  background: var(--background);
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.thank-you-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  animation: scaleIn 0.5s ease;
}

.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-404 h1 {
  font-size: 8rem;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  width: 2rem;
  flex-shrink: 0;
}

.contact-item div h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.contact-item div p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 842px){

nav a{
font-size: 0.8rem;}
} 
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    padding: var(--space-xl) var(--space-md);
    transition: left var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .burger {
    display: flex;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    max-width: none;
  }
  
  .error-404 h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
.logo{
font-size: 1rem;}
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 { font-size: 1.8rem; }
  .hero h1 { font-size: 1.9rem; }
  
  .card {
    padding: var(--space-md);
  }
  
  .map-container {
    height: 300px;
  }
}
