@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --color-ocean: #1a4d6e;
  --color-ocean-dark: #0f3347;
  --color-sand: #f5f0e6;
  --color-sand-dark: #e8dfd0;
  --color-sage: #7a9e7e;
  --color-sage-light: #a5c5a8;
  --color-sunset: #e8b86d;
  --color-sunset-dark: #d9a04f;
  --color-white: #ffffff;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(26, 77, 110, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 77, 110, 0.12);
  --shadow-lg: 0 8px 24px rgba(26, 77, 110, 0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-sand);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-ocean);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-sunset-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-ocean-dark);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-sunset);
  color: var(--color-ocean-dark);
}

.btn-primary:hover {
  background: var(--color-sunset-dark);
  color: var(--color-ocean-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-ocean);
  border: 1px solid var(--color-ocean);
}

.btn-outline:hover {
  background: var(--color-ocean);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ocean-dark);
}

.logo:hover {
  color: var(--color-ocean);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sunset);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ocean-dark);
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-sand);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  text-align: center;
}

.nav-mobile li {
  margin-bottom: var(--space-lg);
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-ocean-dark);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(122, 158, 126, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(232, 184, 109, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-sage-light);
  color: var(--color-ocean-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero-btns {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.route-line {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  pointer-events: none;
  overflow: hidden;
}

.section {
  padding: var(--space-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-light);
  max-width: 32rem;
  margin: 0 auto;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
  border-radius: var(--radius-md);
  color: var(--color-ocean);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.zigzag {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.zigzag-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.zigzag-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.zigzag-content h3 {
  margin-bottom: var(--space-sm);
}

.zigzag-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.stamp-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 2px dashed var(--color-sand-dark);
}

.stamp-card::before {
  content: '';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 3rem;
  height: 3rem;
  background: var(--color-sage-light);
  border-radius: 50%;
  opacity: 0.5;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  padding-left: calc(var(--space-lg) + 2.5rem);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sunset);
  color: var(--color-ocean-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50%;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-body {
  padding: var(--space-lg);
}

.product-body h3 {
  margin-bottom: var(--space-xs);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-sunset-dark);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.product-body p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ocean-dark);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-sand);
}

.faq-question i {
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info {
  background: var(--color-ocean);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-detail i {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-sunset);
}

.contact-detail span {
  font-size: 0.875rem;
  line-height: 2rem;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ocean-dark);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--color-sand-dark);
  border-radius: var(--radius-md);
  background: var(--color-sand);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(26, 77, 110, 0.1);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check input {
  width: auto;
  margin-top: 0.25rem;
}

.form-check label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.form-check a {
  color: var(--color-ocean);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 18rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: var(--color-ocean-dark);
  color: var(--color-sand);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-sand);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-sunset);
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.cookie-content a {
  color: var(--color-ocean);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: var(--space-md);
}

.page-hero {
  padding: calc(var(--space-xxl) * 2) 0 var(--space-xxl);
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-dark) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 32rem;
  margin: 0 auto;
}

.policy-content {
  max-width: 48rem;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.policy-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.policy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  color: var(--color-text-light);
}

.policy-content li {
  margin-bottom: var(--space-sm);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--color-sunset);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content {
  max-width: 28rem;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage-light);
  border-radius: 50%;
  color: var(--color-ocean-dark);
  font-size: 2rem;
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cta-section {
  background: var(--color-ocean);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-md);
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-sage-light);
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ocean-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.bg-alt {
  background: var(--color-white);
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .zigzag-item {
    grid-template-columns: 1fr 1fr;
  }
  
  .zigzag-item:nth-child(even) .zigzag-img {
    order: 2;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}