@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --soft-steel: #DDE2E6;
  --deep-navy: #1A2B44;
  --cool-gray: #9AA1A9;
  --accent-teal: #54A0A8;
  --pure-white: #FFFFFF;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Cormorant Garamond', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 0.125rem 0.25rem rgba(26, 43, 68, 0.1);
  --shadow-md: 0 0.5rem 1rem rgba(26, 43, 68, 0.15);
  --shadow-lg: 0 1rem 2rem rgba(26, 43, 68, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--deep-navy);
  background-color: var(--pure-white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-teal);
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  background: linear-gradient(135deg, var(--soft-steel) 0%, var(--pure-white) 100%);
  border-bottom: 0.0625rem solid rgba(26, 43, 68, 0.1);
  transform-origin: top;
  transition: transform var(--transition-normal);
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

.main-header {
  padding: var(--space-sm) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.brand-logo {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.brand-logo:hover {
  color: var(--accent-teal);
}

.nav-main {
  display: none;
}

.nav-main.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 43, 68, 0.98);
  z-index: 1000;
  padding: var(--space-xl) var(--space-md);
  overflow-y: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.nav-item a {
  font-size: 1.3rem;
  color: var(--pure-white);
  display: block;
  padding: var(--space-sm);
  transition: all var(--transition-fast);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.nav-item a:hover {
  color: var(--accent-teal);
  padding-left: var(--space-md);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger-line {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--deep-navy);
  transition: all var(--transition-normal);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
  background-color: var(--pure-white);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
  background-color: var(--pure-white);
}

.hero-section {

  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: subtle-move 20s ease-in-out infinite;
  opacity: 0.6;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(84, 160, 168, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes subtle-move {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--pure-white);
  color: var(--deep-navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background-color: var(--accent-teal);
  color: var(--pure-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-0.2rem);
}

.section .btn-primary,
.product-card .btn-primary {
  background-color: var(--accent-teal);
  color: var(--pure-white);
}

.section .btn-primary:hover,
.product-card .btn-primary:hover {
  background-color: var(--deep-navy);
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: transparent;
  color: var(--deep-navy);
  border: 0.0625rem solid var(--deep-navy);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.btn-secondary:hover {
  background-color: var(--deep-navy);
  color: var(--pure-white);
  transform: translateY(-0.125rem);
}

main {
  flex: 1;
}

.section {
  padding: var(--space-lg) 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--cool-gray);
  text-align: center;
  max-width: 45rem;
  margin: 0 auto var(--space-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 0.0625rem solid var(--soft-steel);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-0.25rem);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-xs);
}

.card-description {
  font-size: 0.85rem;
  color: var(--cool-gray);
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-top: var(--space-md);
}

.feature-item {
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--deep-navy);
}

.feature-item i {
  color: var(--accent-teal);
  font-size: 0.9rem;
}

.product-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 0.0625rem solid var(--soft-steel);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.25rem);
}

.product-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background: linear-gradient(135deg, var(--soft-steel) 0%, var(--cool-gray) 100%);
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-xs);
}

.product-description {
  font-size: 0.85rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: var(--space-md);
}

.contact-section {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--soft-steel) 100%);
  padding: var(--space-xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-info {
  padding: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item i {
  color: var(--accent-teal);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item-content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  font-size: 0.85rem;
  color: var(--cool-gray);
}

.contact-form-wrapper {
  background: var(--pure-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-navy);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem;
  border: 0.0625rem solid var(--soft-steel);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-primary);
  color: var(--deep-navy);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 0.1875rem rgba(84, 160, 168, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-checkbox {
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.8rem;
  color: var(--cool-gray);
  line-height: 1.4;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 18rem;
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--deep-navy);
  color: var(--pure-white);
  padding: var(--space-md) 0;
  font-size: 0.8rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  list-style: none;
}

.footer-links a {
  color: var(--soft-steel);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-teal);
}

.footer-text {
  color: var(--cool-gray);
  font-size: 0.75rem;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.privacy-text {
  font-size: 0.8rem;
  color: var(--soft-steel);
  text-align: center;
}

.privacy-text a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-accept,
.btn-decline {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.btn-accept {
  background-color: var(--accent-teal);
  color: var(--pure-white);
}

.btn-accept:hover {
  background-color: #468a91;
}

.btn-decline {
  background-color: transparent;
  color: var(--pure-white);
  border: 0.0625rem solid var(--pure-white);
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.thankyou-content {
  max-width: 35rem;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--accent-teal);
  margin-bottom: var(--space-md);
}

.thankyou-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-sm);
}

.thankyou-message {
  font-size: 0.95rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-lg);
}

.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.error-content {
  max-width: 35rem;
}

.error-code {
  font-family: var(--font-secondary);
  font-size: 6rem;
  font-weight: 600;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-title {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-sm);
}

.error-message {
  font-size: 0.95rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-lg);
}

.policy-section {
  padding: var(--space-lg) 0;
  max-width: 50rem;
  margin: 0 auto;
}

.policy-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-sm);
}

.policy-updated {
  font-size: 0.8rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-lg);
}

.policy-content h2 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.policy-content p {
  font-size: 0.9rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-content li {
  font-size: 0.9rem;
  color: var(--cool-gray);
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

@media (min-width: 37.5rem) {
  body {
    font-size: 1rem;
  }

  .hero-section {
    padding: 7rem 0 6rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }

  .privacy-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .privacy-text {
    text-align: left;
  }
}

@media (min-width: 48rem) {
  .nav-main {
    display: block;
  }

  .nav-main.active {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow-y: visible;
  }

  .nav-list {
    flex-direction: row;
    gap: var(--space-md);
    margin-top: 0;
  }

  .nav-item a {
    font-size: 0.9rem;
    color: var(--deep-navy);
    border-bottom: none;
    padding: var(--space-xs) var(--space-sm);
  }

  .nav-item a:hover {
    padding-left: var(--space-sm);
  }

  .burger-menu {
    display: none;
  }

  .hero-section {
    padding: 8rem 0 7rem;
  }

  .hero-title {
    font-size: 3.2rem;
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 62rem) {
  .hero-section {
    padding: 9rem 0 8rem;
  }

  .hero-title {
    font-size: 3.8rem;
    max-width: 60rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 45rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

