/* Base Styles */
:root {
  --primary: #4e342e;
  --primary-light: #7b5e57;
  --primary-dark: #260e04;
  --secondary: #d7ccc8;
  --accent: #8d6e63;
  --text: #3e2723;
  --text-light: #5d4037;
  --background: #efebe9;
  --white: #fff;
  --black: #222;
  --gray: #757575;
  --light-gray: #e0e0e0;
  --success: #2e7d32;
  --warning: #ff8f00;
  --error: #c62828;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text);
  border: 1px solid var(--primary-light);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-list a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
  max-height: 1400px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  animation: fadeInUp 0.8s ease;
}

.hero-image {
  flex: 1;
  animation: fadeIn 1s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Featured Products */
.featured {
  padding: 80px 0;
}

.featured h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.featured h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

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

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  color: var(--primary);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 10px 0;
}

/* About Company Section */
.about-company {
  padding: 80px 0;
  background-color: var(--white);
}

.about-company .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Materials Section */
.materials {
  padding: 80px 0;
  background-color: var(--background);
}

.materials h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.material-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.material-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
}

.material-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 30px;
  background-color: var(--background);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

blockquote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

blockquote::before,
blockquote::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
}

cite {
  font-weight: 600;
  color: var(--primary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-prev,
.slider-next {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  color: var(--primary-dark);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--background);
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--secondary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
}

.faq-answer p {
  padding: 0 20px 20px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
}

.cta .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.cta-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

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

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact address p {
  margin-bottom: 10px;
}

.footer-contact a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border-radius: var(--radius-sm);
  border: none;
}

.newsletter-form button {
  padding: 10px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary);
}

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

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.legal-links a {
  color: var(--secondary);
}

.legal-links a:hover {
  text-decoration: underline;
}

/* About Page Specific Styles */
.about-hero {
  padding: 150px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease;
}

.timeline-section {
  padding: 80px 0;
  background-color: var(--background);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.centr {
  text-align: center;
}
.bb {
  border: 1px white solid;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.timeline-year {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  width: calc(50% - 80px);
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  color: var(--primary);
}

.timeline-content img {
  margin-top: 15px;
  border-radius: var(--radius-sm);
}

.timeline-item:nth-child(even) .timeline-content {
  order: -1;
}

.artisans-gallery {
  padding: 80px 0;
  background-color: var(--white);
}

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

.artisan-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.artisan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.artisan-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.artisan-info {
  padding: 20px;
  text-align: center;
}

.artisan-info h3 {
  color: var(--primary);
}

.artisan-info span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 5px;
}

.process-section {
  padding: 80px 0;
  background-color: var(--background);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  min-width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 5px;
}

.step-content {
  flex: 1;
}

.step-content img {
  margin-top: 15px;
  border-radius: var(--radius-sm);
}

.ethical-section {
  padding: 80px 0;
  background-color: var(--white);
}

.ethical-section .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ethical-content {
  flex: 1;
}

.ethical-content ul {
  margin: 20px 0;
}

.ethical-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.ethical-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.ethical-image {
  flex: 1;
  position: relative;
}

.ethical-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ethical-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.testimonials-about {
  padding: 80px 0;
  background-color: var(--background);
}

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

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text blockquote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author cite {
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

.about-cta {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.about-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Pricing Page Specific Styles */
.pricing-hero {
  padding: 150px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/pr-1.jpg') no-repeat center/cover;
  color: var(--white);
  text-align: center;
}

.collections-section {
  padding: 80px 0;
  background-color: var(--background);
}

.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  background-color: var(--secondary);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  background-color: var(--accent);
  color: var(--white);
}

.collection-content {
  display: none;
}

.collection-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.pricing-card h3 {
  color: var(--primary);
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 15px 0;
}

.pricing-card .features {
  margin-bottom: 20px;
}

.pricing-card .features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.pricing-card .features li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--accent);
}

.sale-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.sale-subtitle {
  color: var(--gray);
  margin-bottom: 40px;
}

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

.sale-card {
  background-color: var(--background);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  transition: var(--transition);
}

.sale-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.sale-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--error);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.sale-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.price {
  margin: 15px 0;
}

.original-price {
  text-decoration: line-through;
  color: var(--gray);
  margin-right: 10px;
}

.sale-price {
  font-weight: 700;
  color: var(--error);
  font-size: 1.2rem;
}

.materials-value {
  padding: 80px 0;
  background-color: var(--background);
}

.materials-value .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.value-content {
  flex: 1;
}

.value-comparison {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.value-item {
  flex: 1;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-item h3 {
  color: var(--primary);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.value-item ul {
  margin-top: 15px;
}

.value-item li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.value-item li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--gray);
}

.stepcraft-value {
  border: 2px solid var(--primary);
  position: relative;
}

.stepcraft-value::after {
  content: 'Best Value';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.value-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.value-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.custom-orders {
  padding: 80px 0;
  background-color: var(--white);
}

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

.custom-card {
  background-color: var(--background);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.custom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-card h3 {
  color: var(--primary);
  padding: 0 20px;
  margin-top: 20px;
}

.custom-card p {
  padding: 0 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.custom-card ul {
  padding: 0 20px;
  margin: 15px 0;
}

.custom-card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.custom-card li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--accent);
}

.custom-card a {
  display: block;
  margin: 20px;
  text-align: center;
}

.payment-options {
  padding: 80px 0;
  background-color: var(--background);
}

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

.method {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.method img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.method h3 {
  color: var(--primary);
}

.pricing-cta {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.pricing-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* Services Page Specific Styles */
.services-hero {
  padding: 150px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  color: var(--white);
  text-align: center;
}

.main-services {
  padding: 80px 0;
  background-color: var(--background);
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.service-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card h3 {
  color: var(--primary);
  text-align: center;
}

.service-card ul {
  margin: 20px 0;
}

.service-card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.service-card li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--accent);
}

.price-range {
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin: 20px 0;
}

.service-card a {
  display: block;
  text-align: center;
}

.repair-process {
  padding: 80px 0;
  background-color: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  min-width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 5px;
}

.step-content {
  flex: 1;
}

.step-content img {
  margin-top: 15px;
  border-radius: var(--radius-sm);
}

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

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

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 15px;
}

.product-card h3 {
  color: var(--primary);
}

.membership {
  padding: 80px 0;
  background-color: var(--white);
}

.membership .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.membership-content {
  flex: 1;
}

.membership-content ul {
  margin: 20px 0;
}

.membership-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.membership-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.membership-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.membership-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.workshop-section {
  padding: 80px 0;
  background-color: var(--background);
}

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

.workshop-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.workshop-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.workshop-info {
  padding: 20px;
}

.workshop-info h3 {
  color: var(--primary);
}

.details {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.details span {
  font-weight: 600;
}

.details span:first-child {
  color: var(--primary-dark);
}

.services-cta {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.services-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* Contact Page Specific Styles */
.contact-hero {
  padding: 150px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  color: var(--white);
  text-align: center;
}

.contact-cards {
  padding: 80px 0;
  background-color: var(--background);
}

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

.contact-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.contact-card h3 {
  color: var(--primary);
}

.contact-methods {
  margin: 20px 0;
}

.contact-methods a {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-methods a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.hours h4,
.response-time h4 {
  margin-top: 20px;
  color: var(--primary);
}

.form-faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.form-faq-section .container {
  display: flex;
  gap: 40px;
}

.form-container {
  flex: 1;
}

.faq-container {
  flex: 1;
}

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

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

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(78, 52, 46, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  font-size: 0.9rem;
}

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

.contact-faq {
  margin-top: 20px;
}

.workshop-tour {
  padding: 80px 0;
  background-color: var(--background);
}

.tour-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tour-video {
  flex: 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tour-video img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.tour-highlights {
  flex: 1;
}

.tour-highlights h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.tour-highlights ul {
  margin: 20px 0;
}

.tour-highlights li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.tour-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.contact-team {
  padding: 80px 0;
  background-color: var(--white);
}

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--secondary);
}

.team-member h3 {
  color: var(--primary);
}

.email-link {
  color: var(--primary);
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}

.contact-cta {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Legal Pages */
.legal-page {
  padding-top: 100px;
}

.legal-hero {
  padding: 100px 0;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
}

.legal-content {
  padding: 80px 0;
  background-color: var(--white);
}

.legal-content article {
  margin-bottom: 60px;
}

.legal-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--accent);
}

address {
  font-style: normal;
}

address p {
  margin-bottom: 5px;
}

/* Thank You Page */
.thank-you {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
}

.thank-you .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.thank-you-content {
  flex: 1;
}

.thank-you-content h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.thank-you-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.thank-you-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.next-steps {
  padding: 80px 0;
  background-color: var(--white);
}

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

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  min-width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 5px;
}

.step-content h3 {
  color: var(--primary);
}

.contact-followup {
  padding: 80px 0;
  background-color: var(--background);
  text-align: center;
}

.contact-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0;
}

.contact-number a {
  color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container,
  .about-company .container,
  .cta .container,
  .thank-you .container {
    flex-direction: column;
  }

  .hero-image,
  .about-image,
  .cta-image,
  .thank-you-image {
    order: -1;
    margin-bottom: 40px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-year {
    margin-bottom: 20px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 1;
  }

  .form-faq-section .container {
    flex-direction: column;
  }

  .tour-container {
    flex-direction: column;
  }
}
.max {
  max-width: 250px;
}
@media (max-width: 768px) {
  .materials-value .container {
    flex-direction: column;
  }
  .sale-card img {
    height: 430px;
  }
  .pricing-card img {
    height: 430px;
  }
  .ethical-section .container {
    flex-direction: column;
  }
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nav-list {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-list.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active .hamburger {
    background-color: transparent;
  }

  .nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .featured-grid,
  .pricing-cards,
  .sale-cards,
  .custom-grid,
  .payment-methods,
  .services-grid,
  .product-grid,
  .workshop-cards,
  .cards-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .value-comparison {
    flex-direction: column;
  }

  .stepcraft-value::after {
    top: auto;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .btn,
  .cta-buttons a,
  .thank-you-actions a {
    width: 100%;
  }

  .cta-buttons,
  .thank-you-actions {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
}

.img-logo {
  height: 45px;
  border-radius: 4px;
}

.cw {
  color: white !important;
}
