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

:root {
  --primary: #2d5016;
  --secondary: #7cb342;
  --accent: #ff6f00;
  --tertiary: #1b3a0f;
  --dark: #0d1b2a;
  --light: #f5f7f3;
  --white: #ffffff;
  --gray: #6c757d;
  --border: #e0e5db;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.25);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background: var(--tertiary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark);
  border-color: rgba(45, 80, 22, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: 18px 48px;
  font-size: 17px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.privacy-content p {
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: 12px;
}

.btn-accept {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background: var(--primary);
}

.btn-learn {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

.header {
  background: var(--white);
  padding: 20px 0;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(
    135deg,
    rgba(245, 247, 243, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  color: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(124, 179, 66, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(45, 80, 22, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 50vh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding: 40px 0;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(45, 80, 22, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  color: var(--tertiary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(124, 179, 66, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-text > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 580px;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 2rem;
  padding: 20px 0;
  border-top: 1px solid rgba(45, 80, 22, 0.1);
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.stat-item {
  text-align: left;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-actions .btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-image {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover {
  transform: scale(1.02) translateY(-8px);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.08) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
  border: 1px solid rgba(45, 80, 22, 0.1);
  backdrop-filter: blur(10px);
  animation: slideUp 1s ease-out 0.6s both;
}

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

.why-choose {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-content > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: start;
}

.why-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 50px;
}

.why-text h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.why-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-showcase {
  padding: 100px 0;
  background: var(--light);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-center h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-arrow:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.products {
  padding: 80px 0;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f8fdf5 0%, #ffffff 100%);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
}

.product-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
}

.product-price span {
  font-size: 1.2rem;
  color: var(--gray);
}

.product-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.product-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.product-features i {
  color: var(--secondary);
  font-size: 18px;
}

.process {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 36px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 15px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray);
}

.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.final-cta-content > p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-large {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-size: 18px;
  padding: 20px 56px;
}

.final-cta .btn-large:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
  font-size: 15px;
  margin-top: 20px;
  opacity: 0.9;
  font-weight: 500;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

.page-hero {
  background: linear-gradient(
    135deg,
    rgba(245, 247, 243, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  color: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 179, 66, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.page-hero .hero-grid {
  min-height: 50vh;
}

.service-details {
  padding: 80px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-details-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.service-details-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-benefits {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 14px;
  margin: 0;
}

.service-details-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 100px;
}

.service-features {
  padding: 80px 0;
  background: var(--light);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.service-cta {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.service-cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.service-cta .btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.service-cta .btn-primary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.seasonal-care {
  padding: 80px 0;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.season-card {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.season-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.season-card h3 i {
  color: var(--secondary);
}

.season-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.contact-main {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--light);
  padding: 32px;
  border-radius: 12px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--white);
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-hours {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid var(--border);
}

.contact-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}

.map-section {
  padding: 80px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thankyou-icon i {
  font-size: 50px;
  color: var(--white);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thankyou-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.thankyou-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.thankyou-contact p {
  font-size: 1rem;
  margin-bottom: 8px;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.error-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.error-links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.error-links p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.error-links a {
  display: inline-block;
  color: var(--primary);
  margin: 0 12px;
  text-decoration: underline;
}

.policy-section {
  padding: 80px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.policy-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.trust-section {
  padding: 100px 0;
  background: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.trust-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 16px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}

.trust-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--tertiary);
}

.trust-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.coverage-section {
  padding: 100px 0;
  background: var(--white);
}

.coverage-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.coverage-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary);
}

.coverage-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.coverage-item {
  background: var(--light);
  padding: 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.coverage-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.guarantee-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary);
}

.guarantee-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guarantee-feature {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.guarantee-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--white);
}

.guarantee-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--tertiary);
}

.guarantee-feature p {
  font-size: 15px;
  margin: 0;
  color: var(--gray);
}

.guarantee-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.guarantee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .coverage-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .coverage-list {
    grid-template-columns: 1fr;
  }
  .coverage-content h2 {
    font-size: 2.2rem;
  }
  .guarantee-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .trust-section,
  .coverage-section,
  .guarantee-section {
    padding: 60px 0;
  }
  .coverage-content h2 {
    font-size: 1.9rem;
  }
  .guarantee-content h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 320px) {
  .trust-card {
    padding: 30px 20px;
  }
  .trust-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .coverage-content h2 {
    font-size: 1.6rem;
  }
  .guarantee-content h2 {
    font-size: 1.6rem;
  }
  .guarantee-feature {
    padding: 20px;
  }
  .trust-section,
  .coverage-section,
  .guarantee-section {
    padding: 50px 0;
  }
}

@media (max-width: 968px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .page-hero::before {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding: 0 40px;
  }
  .hero-text {
    padding: 40px 0 30px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
  }
  .hero-image {
    height: 45vh;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-details-image {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    gap: 16px;
    z-index: 999;
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
  }
  .nav.active {
    transform: translateY(0);
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid {
    padding: 0 20px;
    gap: 25px;
  }
  .hero-text {
    padding: 35px 0 25px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text > p {
    font-size: 1rem;
  }
  .hero-image {
    height: 40vh;
  }
  .hero-image-wrapper {
    border-radius: 16px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 16px 0;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 13px;
  }
  .page-hero .hero-grid {
    min-height: auto;
  }
  .section-header-center h2 {
    font-size: 2rem;
  }
  .why-content h2 {
    font-size: 2.2rem;
  }
  .final-cta-content h2 {
    font-size: 2.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-grid {
    padding: 0 16px;
    gap: 20px;
  }
  .hero-text {
    padding: 30px 0 20px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  .hero-text > p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-image {
    height: 35vh;
  }
  .hero-image-wrapper {
    border-radius: 14px;
  }
  .hero-image-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 18px;
    font-size: 13px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }
  .stat-item {
    text-align: center;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 12px;
  }
  .why-choose,
  .services-showcase,
  .products,
  .process,
  .testimonials,
  .final-cta {
    padding: 60px 0;
  }
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  .btn-large {
    padding: 16px 36px;
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .why-content h2 {
    font-size: 1.9rem;
  }
  .section-header-center h2 {
    font-size: 1.9rem;
  }
  .final-cta-content h2 {
    font-size: 2.2rem;
  }
  .final-cta-content > p {
    font-size: 1.1rem;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }
  .thankyou-actions .btn,
  .error-actions .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .container {
    padding: 0 12px;
  }
  .hero-grid {
    padding: 0 12px;
    gap: 16px;
  }
  .hero-text {
    padding: 25px 0 20px;
  }
  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.15;
  }
  .hero-text > p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .hero-text h1 .highlight::after {
    height: 6px;
    bottom: 2px;
  }
  .hero-image {
    height: 32vh;
  }
  .hero-image-wrapper {
    border-radius: 12px;
  }
  .hero-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .logo a {
    font-size: 1.1rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }
  .stat-item {
    text-align: center;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 11px;
  }
  .hero-badge {
    padding: 8px 18px;
    font-size: 12px;
  }
  .why-content h2 {
    font-size: 1.6rem;
  }
  .section-header-center h2 {
    font-size: 1.6rem;
  }
  .final-cta {
    padding: 60px 0;
  }
  .final-cta-content h2 {
    font-size: 1.9rem;
  }
  .final-cta-content > p {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 13px;
    border-radius: 10px;
  }
  .btn-large {
    padding: 14px 32px;
    font-size: 15px;
  }
  .service-card,
  .product-card,
  .feature-item {
    padding: 28px 20px;
  }
  .why-choose,
  .services-showcase,
  .products,
  .process,
  .testimonials {
    padding: 50px 0;
  }
}
