:root {
  --color-primary: #0D1A63;
  --color-secondary: #1A2CA3;
  --color-accent: #2845D6;
  --color-warm: #F68048;
  --color-bg: #f8f9fc;
  --color-text: #1a1a2e;
  --color-text-muted: #4a4a6a;
  --color-white: #ffffff;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 3px rgba(13, 26, 99, 0.08);
  --shadow-md: 0 4px 12px rgba(13, 26, 99, 0.12);
  --shadow-lg: 0 8px 24px rgba(13, 26, 99, 0.15);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-hero: 3rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.section img,
.overlap-card img,
.product-card img {
  min-width: 0;
}

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

a:hover {
  color: var(--color-text-muted);
}

.header {
  background-color: #f68048;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.header.hidden {
  transform: translateY(-100%);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8rem, 4vw, var(--fs-xl));
  color: white;
  text-shadow: 1px 1px 2px black;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: var(--fs-sm);
  font-weight: 500;
}

.burger {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 2.5rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: var(--space-sm);
  position: relative;
  overflow: visible;
}

.burger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -0.625rem;
  transform: rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -0.625rem;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  padding: var(--space-3xl) var(--space-xl);
  z-index: 99;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  color: var(--color-white);
  font-size: var(--fs-base);
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 98;
}



.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  background-image: url('../pictures/BG.jpg');
  background-position: center;
  background-size: cover;

}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-white);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-hero));
  font-weight: 800;
  margin-bottom: var(--space-md);
  animation: fadeUp 1s ease;
  color: white;
  text-shadow: 1px 1px 2px black;
}

.hero p {
  font-size: var(--fs-lg);
  color: white;
  text-shadow: 1px 1px 2px black;
  max-width: 32rem;
  margin: 0 auto var(--space-xl);
  animation: fadeUp 1s ease 0.2s both;
}

.hero .btn {
  animation: fadeUp 1s ease 0.4s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  margin: 15px 0;
}

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

.btn-primary:hover {
  background: #e56a38;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

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

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

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

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

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.section {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease both;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.section p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

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

.features > *,
.products-grid > *,
.gallery-grid > * {
  min-width: 0;
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: fadeInUp 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.feature-card h3 i {
  margin-right: var(--space-sm);
  color: var(--color-warm);
}

.asymmetric-section {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
}

.asymmetric-section .content-block {
  margin-left: 0;
  margin-bottom: var(--space-xl);
}

.asymmetric-section .content-block:nth-child(odd) {
  transform: rotate(-1deg);
}

.asymmetric-section .content-block:nth-child(even) {
  transform: rotate(1deg);
  margin-left: auto;
  margin-right: 0;
}

.overlap-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 90%;
}

.angled-section {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-white);
}

.angled-section .section-title {
  color: var(--color-white);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.contact-section {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

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

.form-group.checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: var(--fs-xs);
}

.submit-btn {
  width: 100%;
  padding: var(--space-md);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.product-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.product-card .price {
  font-weight: 700;
  color: var(--color-warm);
  font-size: var(--fs-lg);
  display: block;
  margin-bottom: var(--space-sm);
}

.product-card .btn {
  margin-top: var(--space-xs);
}

a.feature-card {
  color: inherit;
  display: block;
}

a.feature-card:hover {
  color: inherit;
}

.testimonial {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warm);
}

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

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

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-xs);
}

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

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  padding: var(--space-md);
  text-align: center;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  border-top: 1px solid #eee;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
}

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

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 28rem;
  margin: 0 auto;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup p {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.95);
}

.cookie-popup p a {
  color: var(--color-warm);
}

.cookie-popup .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
}

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

.thank-you-page h1 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

.error-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.legal-page {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page p,
.legal-page li {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}







@media (max-width: 359px) {
  html {
    font-size: 14px;
  }
  .header {
    padding: var(--space-sm) var(--space-sm);
  }
  .header-inner {
    padding: 0 var(--space-xs);
  }
  .logo {
    font-size: var(--fs-base);
  }
  .burger {
    width: 2.25rem;
    height: 1.75rem;
    padding: var(--space-xs);
  }
  .burger span {
    width: 1rem;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-content {
    padding: var(--space-md);
  }
  .hero h1 {
    font-size: var(--fs-xl);
  }
  .hero p {
    font-size: var(--fs-base);
  }
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  .section-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
  }
  .section p {
    font-size: var(--fs-xs);
  }
  .feature-card {
    padding: var(--space-md);
  }
  .feature-card h3 {
    font-size: var(--fs-base);
  }
  .asymmetric-section {
    padding: var(--space-xl) var(--space-sm);
  }
  .angled-section {
    padding: var(--space-xl) var(--space-sm);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  }
  .overlap-card {
    padding: var(--space-md);
    max-width: 95%;
  }
  .contact-section {
    padding: var(--space-md);
  }
  .form-group input,
  .form-group textarea {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-xs);
  }
  .form-group textarea {
    min-height: 5rem;
  }
  .product-card .content {
    padding: var(--space-md);
  }
  .product-card img {
    height: 140px;
  }
  .product-card h3 {
    font-size: var(--fs-base);
  }
  .testimonial {
    padding: var(--space-md);
  }
  .footer {
    padding: var(--space-md);
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .disclaimer {
    padding: var(--space-sm);
    font-size: 0.65rem;
  }
  .map-container {
    height: 180px;
  }
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-sm);
    max-width: none;
  }
  .thank-you-page,
  .error-page {
    padding: var(--space-md);
    min-height: 70vh;
  }
  .thank-you-page h1,
  .error-page h1 {
    font-size: var(--fs-xl);
  }
  .legal-page {
    padding: var(--space-lg) var(--space-sm);
  }
  .legal-page h1 {
    font-size: var(--fs-xl);
  }
  .button-group {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .button-group .btn {
    width: 100%;
  }
}

@media (min-width: 360px) and (max-width: 479px) {
  .header {
    padding: var(--space-md) var(--space-md);
  }
  .hero-content {
    padding: var(--space-lg);
  }
  .section {
    padding: var(--space-xl) var(--space-md);
  }
  .map-container {
    height: 200px;
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  .section {
    padding: var(--space-2xl) var(--space-lg);
  }
  .hero h1 {
    font-size: var(--fs-3xl);
  }
  .features {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-container {
    height: 280px;
  }
}

@media (min-width: 830px) {
  .nav-desktop {
    display: block;
  }
  .burger {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-mobile {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1280px) {
  .header-inner,
  .footer-inner {
    max-width: 1200px;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  .section {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
  .angled-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 17px;
  }
  .hero h1 {
    font-size: var(--fs-hero);
  }
}

@media (pointer: coarse) {
  .burger {
    min-width: 2.75rem;
    min-height: 2.25rem;
  }
  .btn,
  .nav-mobile a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile a {
    display: flex;
  }
}
