@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2c3e50;
  --secondary: #8e7cc3;
  --accent: #e8d5b7;
  --light: #faf8f5;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

header.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: 20px;
  z-index: -1;
}

section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
}

.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--light);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
}

.about-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.about-list {
  margin-top: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.about-list i {
  color: var(--secondary);
}

.services {
  background: var(--primary);
  color: var(--white);
}

.services .section-header h2,
.services .section-header p {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.1);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.service-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.service-card .price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}

.service-card .price span {
  font-size: 12px;
  font-weight: 400;
}

.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--secondary);
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 14px;
}

.process-step h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-light);
}

.testimonials {
  background: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author i {
  font-size: 32px;
  color: var(--secondary);
}

.author-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 11px;
  color: var(--text-light);
}

.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 50px 0;
}

.cta h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}

.cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta .btn {
  background: var(--white);
  color: var(--primary);
}

.cta .btn:hover {
  background: var(--accent);
}

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
}

.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  height: 180px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.6;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}

.product-price span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

.about-page-section {
  background: var(--white);
}

.about-page-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-page-text h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-page-text p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.values-section {
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 12px;
  color: var(--text-light);
}

.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-member {
  text-align: center;
  padding: 24px 16px;
  background: var(--light);
  border-radius: var(--radius);
}

.team-member i {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 14px;
}

.team-member h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.team-member span {
  font-size: 12px;
  color: var(--text-light);
}

.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 32px 24px;
  border-radius: var(--radius);
  color: var(--white);
}

.contact-info h2 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item i {
  font-size: 18px;
  margin-top: 2px;
}

.contact-item h4 {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  font-size: 12px;
  opacity: 0.9;
  color: var(--white);
}

.contact-form-wrapper {
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius);
}

.contact-form-wrapper h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--secondary);
}

.checkbox-group label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--secondary);
  text-decoration: underline;
}

.map-section {
  background: var(--light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.error-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  background: var(--light);
}

.error-content h1 {
  font-size: 100px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.error-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.error-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.thankyou-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.thankyou-content i {
  font-size: 64px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.thankyou-content h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.thankyou-content p {
  color: var(--text-light);
  margin: 0 auto;
  margin-bottom: 24px;
  max-width: 400px;
}

.policy-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-size: 16px;
  margin: 20px 0 10px;
}

.policy-content p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 12px 0 16px 20px;
}

.policy-content li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.policy-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.last-updated {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 24px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 11px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 16px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 12px;
  flex: 1;
}

.cookie-inner a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btns button {
  padding: 8px 20px;
  font-size: 12px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 24px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .features-grid,
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
  
  .about-content,
  .about-page-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    font-size: 16px;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 50px;
  }
  
  .hero-text h1 {
    font-size: 30px;
  }
  
  .features-grid,
  .services-grid,
  .products-grid,
  .process-steps,
  .testimonial-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero-text h1 {
    font-size: 26px;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 12px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .hero-text h1 {
    font-size: 22px;
  }
  
  .section-header h2 {
    font-size: 20px;
  }
  
  .page-hero h1 {
    font-size: 22px;
  }
}
