:root {
  --primary: #030637;
  --secondary: #3C0753;
  --accent: #720455;
  --highlight: #910A67;
  --light: #F5F5F5;
  --text: #1A1A1A;
  --border: #E0E0E0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3.5rem;
  color: var(--primary);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

h3 {
  font-size: 1.75rem;
  color: var(--secondary);
}

h4 {
  font-size: 1.25rem;
  color: var(--text);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1rem;
  }
}

p {
  margin-bottom: var(--space-md);
  color: #555;
  font-size: 0.95rem;
}

a {
  color: var(--highlight);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

button, .btn {
  font-family: var(--font-body);
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--accent);
}

.btn-outline {
  border: 2px solid var(--highlight);
  color: var(--highlight);
  background: transparent;
}

.btn-outline:hover {
  background: var(--highlight);
  color: white;
}

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: var(--space-md) var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.logo:hover {
  color: var(--highlight);
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--highlight);
}

nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  z-index: 999999999999999999999999;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

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

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

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

@media (max-width: 1024px) {
  .header-container {
    padding: 0 var(--space-md);
  }

  nav {
    gap: var(--space-md);
  }

  nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: var(--space-sm) var(--space-md);
  }

  .header-container {
    padding: 0;
  }

  .logo {
    font-size: 1.25rem;
  }

  .burger-menu {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--space-2xl) var(--space-md);
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: var(--space-md) var(--space-lg);
    display: block;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  header {
    padding: var(--space-sm) var(--space-sm);
  }

  .header-container {
    gap: var(--space-sm);
  }

  .logo {
    font-size: 1.1rem;
  }

  nav {
    padding: var(--space-sm);
  }

  nav a {
    padding: var(--space-sm);
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  header {
    padding: 0.4rem var(--space-sm);
  }

  .header-container {
    gap: var(--space-xs);
  }

  .logo {
    font-size: 1rem;
  }

  .burger-menu {
    width: 24px;
    height: 20px;
  }

  .burger-menu span {
    width: 20px;
    height: 2px;
  }

  nav {
    padding: var(--space-xs);
  }

  nav a {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.85rem;
  }
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(145, 10, 103, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(114, 4, 85, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: slideUp 0.8s ease-out;
}

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

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
}

.hero .btn {
  margin: 0 var(--space-sm);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: var(--space-xl) var(--space-md);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .hero::after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-md);
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero .btn {
    display: block;
    margin: var(--space-sm) 0;
  }
}

section {
  padding: var(--space-2xl) var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title h2 {
  margin-bottom: var(--space-md);
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card p, .card h3 {
  color: black!important;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

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

.card p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: var(--space-md);
}

.asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
}

.asymmetric-content {
  padding: var(--space-lg);
}

.asymmetric-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.asymmetric-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.asymmetric:hover .asymmetric-image img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .asymmetric {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .asymmetric-content {
    padding: 0;
  }
}

.angled-section {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  margin: var(--space-2xl) 0;
}

.angled-section h2 {
  color: white;
}

.angled-section p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .angled-section {
    clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
  }
}

.feature-list {
  list-style: none;
  display: grid;
  gap: var(--space-lg);
}

.feature-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-list li::before {
  content: '✓';
  color: var(--highlight);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--highlight);
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  margin: var(--space-2xl) 0;
}

.contact-section h2 {
  color: white;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.contact-item {
  text-align: center;
}

.contact-item h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(145, 10, 103, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

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

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  color: black;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .form-container {
    padding: var(--space-lg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: var(--space-2xl) 0;
}

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

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-md);
}

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

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section a {
    display: inline;
    margin: 0 var(--space-sm);
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease-out;
}

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

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--highlight);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.modal p {
  margin-bottom: var(--space-lg);
}

.modal-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

.modal-buttons button {
  padding: var(--space-md) var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-content h1 {
  color: var(--highlight);
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.error-content {
  text-align: center;
  max-width: 600px;
  color: white;
}

.error-content h1 {
  color: white;
  font-size: 5rem;
  margin-bottom: var(--space-lg);
}

.error-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
}

.error-content .btn {
  margin: 0 var(--space-sm);
}

@media (max-width: 768px) {
  .error-content h1 {
    font-size: 3rem;
  }

  .thank-you-content h1 {
    font-size: 1.75rem;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--highlight);
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stagger-children > * {
  animation: slideUp 0.6s ease-out;
}

.stagger-children > *:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger-children > *:nth-child(3) {
  animation-delay: 0.2s;
}

.stagger-children > *:nth-child(4) {
  animation-delay: 0.3s;
}

.stagger-children > *:nth-child(5) {
  animation-delay: 0.4s;
}

.stagger-children > *:nth-child(6) {
  animation-delay: 0.5s;
}

.stagger-children > *:nth-child(7) {
  animation-delay: 0.6s;
}

.stagger-children > *:nth-child(8) {
  animation-delay: 0.7s;
}

.success-message {
  background: #4CAF50;
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: none;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.error-message {
  background: #f44336;
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: none;
}

.error-message.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@media (max-width: 480px) {
  section {
    padding: var(--space-lg) var(--space-md);
  }

  .section-title {
    margin-bottom: var(--space-lg);
  }

  .grid {
    gap: var(--space-md);
  }

  .card {
    padding: var(--space-md);
  }

  .form-container {
    padding: var(--space-lg);
  }

  .contact-section {
    padding: var(--space-lg);
  }
}
