:root {
  --primary: #BB6653;
  --secondary: #F08B51;
  --accent: #DEE8CE;
  --light: #FFF8E8;
  --dark: #2C2C2C;
  --text: #333333;
  --text-light: #666666;

  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--text);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

header {
  background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
  padding: var(--space-sm) 0;
  position: relative;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

nav ul li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-base);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23BB6653" opacity="0.05"/></svg>');
  background-size: 200px;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

section {
  padding: var(--space-lg) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
  color: white;
}

.card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.product-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin: var(--space-xs) 0;
  font-family: var(--font-primary);
}

.testimonial-card {
  background: white;
  padding: var(--space-md);
  border-left: 4px solid var(--primary);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  margin: var(--space-md) 0 var(--space-sm);
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.manager-card {
  text-align: center;
}

.manager-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  border: 4px solid var(--primary);
  object-fit: cover;
}

.manager-name {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.manager-role {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.contact-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.contact-item div h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.contact-item div p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: var(--space-sm) 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: white;
  padding: var(--space-md) 0 var(--space-sm);
  margin-top: var(--space-xl);
  position: relative;
  z-index: 100;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-about h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.footer-about p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.4rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
  z-index: 101;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(240, 139, 81, 0.3);
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.privacy-popup.show {
  opacity: 1;
}

.privacy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-content p {
  font-size: 0.8rem;
  color: var(--text);
  margin: 0;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-xs);
}

.privacy-buttons .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.error-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.error-content p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.thankyou-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-content {
  max-width: 600px;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.thankyou-content h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-sm);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  nav ul.active {
    display: flex;
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links ul li a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  footer {
    padding-bottom: 80px;
  }

  .privacy-popup {
    z-index: 10000;
  }
}

/* Stats Section */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Journey Steps */
.journey-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-left: 4px solid var(--primary);
}

.journey-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.journey-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-primary);
  min-width: 60px;
  opacity: 0.3;
}

.journey-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.journey-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* Testimonial Highlight */
.testimonial-highlight {
  position: relative;
}

.highlight-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.highlight-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.highlight-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin: var(--space-md) 0;
  font-family: var(--font-primary);
}

.highlight-author {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--accent);
}

.highlight-author strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.highlight-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.insight-card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 3px solid transparent;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--primary);
}

.insight-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  color: white;
}

.insight-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
}

.insight-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }

  .journey-step {
    flex-direction: column;
    text-align: center;
  }

  .journey-number {
    margin: 0 auto;
  }

  .journey-step:hover {
    transform: translateY(-5px);
  }

  .highlight-quote {
    font-size: 1rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .error-content h1 {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .highlight-card {
    padding: var(--space-md);
  }
}