@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #2D6A4F;
  --primary-light: #40916C;
  --primary-dark: #1B4332;
  --accent: #D4A373;
  --accent-light: #EADBC8;
  --bg: #FAFAF5;
  --bg-alt: #F0EDE6;
  --text: #2B2B2B;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 64px;
  --footer-h: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  background: linear-gradient(180deg, rgba(27,67,50,0.7) 0%, transparent 100%);
}

.site-header.header-compact {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.header-compact .logo {
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-compact .nav-menu a {
  color: var(--text);
}

.header-compact .nav-menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10022;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  border-radius: 2px;
}

.header-compact .menu-toggle span {
  background: var(--text);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: black;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: black;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212,163,115,0.08);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: #c4915f;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-dark);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 36px;
  max-width: 500px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--white);
}

.card-icon.green {
  background: var(--primary);
}

.card-icon.tan {
  background: var(--accent);
}

.card-icon.dark {
  background: var(--primary-dark);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.split-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.stats-row {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
}

.tip-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-top: 3px solid var(--primary);
}

.tip-card:nth-child(2) {
  border-top-color: var(--accent);
}

.tip-card:nth-child(3) {
  border-top-color: var(--primary-light);
}

.tip-card:nth-child(4) {
  border-top-color: var(--primary-dark);
}

.tip-card:hover {
  transform: translateY(-3px);
}

.tip-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.tip-card h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.tip-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--accent);
  font-family: serif;
  position: absolute;
  top: 10px;
  left: 18px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 12px;
  padding-top: 24px;
  line-height: 1.65;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.cta-section {
  text-align: center;
  padding: 50px 0;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 110px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 0.92rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
}

.content-section {
  padding: 50px 0;
}

.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.content-section h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.content-section p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
}

.content-section ul {
  margin-bottom: 14px;
  padding-left: 6px;
}

.content-section ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0 4px 20px;
  position: relative;
}

.content-section ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 7px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-icon-area {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:nth-child(2) .product-icon-area {
  background: linear-gradient(135deg, var(--accent), #c4915f);
}

.product-card:nth-child(3) .product-icon-area {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.product-icon-area i {
  font-size: 2.5rem;
  color: var(--white);
}

.product-info {
  padding: 22px 20px;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.info-item i {
  font-size: 1rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.info-item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.info-item a {
  font-size: 0.82rem;
  color: var(--primary);
}

.info-item a:hover {
  color: var(--primary-dark);
}

.hours-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.hours-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.hours-card p {
  font-size: 0.8rem;
  opacity: 0.85;
  padding: 3px 0;
}

.map-section {
  padding: 0 0 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.fullpage-msg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 20px 40px;
}

.fullpage-msg-inner {
  max-width: 460px;
}

.fullpage-msg i {
  font-size: 3rem;
  margin-bottom: 18px;
  opacity: 0.8;
}

.fullpage-msg h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.fullpage-msg p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.7;
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  height: var(--footer-h);
  display: flex;
  align-items: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner p {
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: bottom 0.4s ease;
  padding: 16px 0;
}

.cookie-popup.visible {
  bottom: 0;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  flex: 1;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.policy-content {
  padding: 40px 0;
}

.policy-content h1 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 14px;
  padding-left: 2px;
}

.policy-content ul li {
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 3px 0 3px 18px;
  position: relative;
}

.policy-content ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--primary);
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .grid-3,
  .testimonial-grid,
  .product-grid,
  .features-list,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tip-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
  }

  .nav-menu a:hover {
    color: var(--primary);
  }

  .split-section,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-section .split-image {
    order: -1;
  }

  .hero {
    min-height: 75vh;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 40px 0;
  }

  .grid-3,
  .testimonial-grid,
  .product-grid,
  .features-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .tip-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .tip-cards {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-menu {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .header-inner {
    padding: 0 12px;
  }

  .container {
    padding: 0 12px;
  }
}
