@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #222831;
  --secondary: #31363F;
  --accent: #76ABAE;
  --light: #EEEEEE;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 8px rgba(34, 40, 49, 0.1);
  --shadow-md: 0 4px 16px rgba(34, 40, 49, 0.15);
  --shadow-lg: 0 8px 32px rgba(34, 40, 49, 0.2);
  --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(--primary);
  background-color: var(--light);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  color:#76ABAE;
}

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

a:hover {
  color: var(--primary);
}

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

header {
  background: var(--light);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(118, 171, 174, 0.1);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  padding: var(--space-xs);
}

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

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-lg);
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 3rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent);
  color: var(--light);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
}

.cta-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease-out;
}

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

.section-title p {
  color: var(--secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

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

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

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

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

.asymmetric-section:nth-child(even) {
  direction: rtl;
}

.asymmetric-section:nth-child(even) > * {
  direction: ltr;
}

.asymmetric-content {
  animation: fadeInLeft 0.8s ease-out;
}

.asymmetric-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.asymmetric-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease-out;
}

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

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

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

.contact-section h2 {
  color: var(--light);
  margin-bottom: var(--space-lg);
}

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

.contact-item {
  background: rgba(238, 238, 238, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.contact-item h3 {
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.contact-item p {
  color: var(--light);
  margin: 0;
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--light);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(238, 238, 238, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(238, 238, 238, 0.05);
  color: var(--light);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(238, 238, 238, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(238, 238, 238, 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-md);
}

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

.checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  cursor: pointer;
}

.form-submit {
  background: var(--accent);
  color: var(--primary);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-submit:hover {
  background: var(--light);
  transform: translateY(-2px);
}

footer {
  background: var(--primary);
  color: var(--light);
  padding: var(--space-lg);
  text-align: center;
  font-size: 0.85rem;
  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);
  text-align: left;
  margin-bottom: var(--space-lg);
}

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

.footer-section a {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--light);
  font-size: 0.85rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(118, 171, 174, 0.2);
  padding-top: var(--space-lg);
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 40, 49, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease-out;
}

.modal-content h2 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

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

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

.modal-button {
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.modal-button.primary {
  background: var(--accent);
  color: var(--light);
}

.modal-button.primary:hover {
  background: var(--primary);
}

.modal-button.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.modal-button.secondary:hover {
  background: var(--primary);
  color: var(--light);
}

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

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

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

.error-content h1 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-xl) var(--space-md);
  }

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

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

  .header-container {
    padding: 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2001;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100dvh;
    flex-direction: column;
    background: var(--light);
    padding: calc(var(--space-2xl) + var(--space-lg)) var(--space-lg) var(--space-lg);
    gap: var(--space-lg);
    justify-content: flex-start;
    align-items: center;
    transition: var(--transition);
    border: 0;
    z-index: 2000;
  }

  nav.active {
    display: flex;
  }

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

  body.menu-open {
    overflow: hidden;
  }

  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .asymmetric-section:nth-child(even) {
    direction: ltr;
  }

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

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

  .modal-content {
    width: 95%;
  }

  .map-container {
    height: 300px;
  }

  main {
    padding: 0 var(--space-md);
  }

  header {
    padding: var(--space-md);
  }

  .logo {
    font-size: 1.2rem;
  }

  body {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-md);
  }

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

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

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

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

  .modal-buttons {
    flex-direction: column;
  }

  .modal-button {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .map-container {
    height: 250px;
  }
}
