/* Base Styles */
:root {
  --primary-color: #d4af37; /* Gold */
  --secondary-color: #8b4513; /* SaddleBrown */
  --accent-color: #e67e22; /* CarrotOrange */
  --dark-color: #2c3e50; /* MidnightBlue */
  --light-color: #f9f7f0;
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --black: #000;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}
.cta {
  padding: 40px 0 40px;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}
.c {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

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

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

.main-nav a {
  font-weight: 500;
  position: relative;
}

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

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

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Content */
main {
  padding-top: 80px;
}

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

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

.footer-col h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

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

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

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

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

/* Hero Sections */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

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

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* About Page Specific */
.about-hero {
  padding: 120px 0 80px;

  color: var(--white);
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.7);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

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

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-year {
  position: absolute;
  left: -70px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
}

.timeline-content {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--light-color);
}

.timeline-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.timeline-content img {
  margin-top: 15px;
  border-radius: 4px;
}

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

.pricing-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

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

.tab-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.tab-btn:hover:not(.active) {
  background-color: rgba(212, 175, 55, 0.1);
}

.collection-content {
  display: none;
}

.collection-content.active {
  display: block;
}

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

.pricing-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.popular-tag,
.new-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.popular-tag {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.new-tag {
  background-color: var(--accent-color);
  color: var(--white);
}

.pricing-details {
  padding: 20px;
}

.pricing-details h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.pricing-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.price .original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 10px;
}

.features {
  margin-bottom: 20px;
}

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

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

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

.sale-header {
  text-align: center;
  margin-bottom: 40px;
}

.sale-header p {
  color: var(--accent-color);
  font-weight: 500;
}

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

.sale-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.sale-card:hover {
  transform: translateY(-5px);
}

.sale-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.img-logo {
  height: 45px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.sale-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.sale-card h3 {
  margin-bottom: 10px;
}

.sale-description {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 14px;
}

.sale-price {
  margin-bottom: 15px;
}

.sale-price .current {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.sale-price .original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 10px;
}

/* Services Page Specific */
.services-hero {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/ser-1.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

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

.service-tab-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.service-tab-btn:hover:not(.active) {
  background-color: rgba(212, 175, 55, 0.1);
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.service-details {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-info p {
  margin-bottom: 20px;
}

.service-info ul {
  margin-bottom: 30px;
}

.service-info ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-info ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--primary-color);
  font-size: 20px;
}

.service-example {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.service-example img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.service-image {
  flex: 1;
}

.service-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.step {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: step-counter;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.step h3 {
  margin-bottom: 15px;
  padding-top: 15px;
}

.step img {
  margin-top: 20px;
  border-radius: 4px;
}

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

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

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

.testimonial-card:hover {
  transform: translateY(-5px);
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  margin-bottom: 15px;
}

.testimonial-result {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
}

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

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

.faq-item {
  background-color: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.service-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 8px;
  font-family: inherit;
  transition: var(--transition);
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

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

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

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

.contact-info {
  margin-bottom: 50px;
}

.info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-form-section {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form-section h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  transition: var(--transition);
}

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

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

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-group input {
  margin-right: 10px;
  width: 30px;
}

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

.map-container {
  height: 500px;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

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

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

.team-member {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

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

.team-member h3 {
  margin-bottom: 5px;
}

.role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 20px;
}

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

/* Policy Pages */
.policy-hero,
.terms-hero,
.thanks-hero {
  padding: 120px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url('../images/in-3.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.policy-hero h1,
.terms-hero h1,
.thanks-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.policy-content,
.terms-content,
.thanks-content {
  padding: 80px 0;
}

.policy-section,
.terms-section {
  margin-bottom: 50px;
}

.policy-section h2,
.terms-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.policy-section h3,
.terms-section h3 {
  margin: 25px 0 15px;
  color: var(--secondary-color);
}

.policy-section ul,
.terms-section ul {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-section ul li,
.terms-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.policy-section ul li::before,
.terms-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Thank You Page */
.thanks-message {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

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

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

.resource-card:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.resource-card h3 {
  margin-bottom: 10px;
}

.thanks-contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.thanks-social {
  padding: 60px 0;
  background-color: var(--light-color);
  text-align: center;
}

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

.social-link {
  padding: 12px 25px;
  border-radius: 4px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--dark-color);
  color: var(--primary-color);
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--light-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

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

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

.testimonial {
  text-align: center;
  padding: 40px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
}

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

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

.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-color);
}

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

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.prev-testimonial,
.next-testimonial {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 5px 15px;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .bulk-benefits li {
    text-align: left;
  }
  .hero .container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    flex: none;
    width: 100%;
  }

  .hero-content {
    order: 2;
    text-align: center;
  }

  .hero-image {
    margin-bottom: 30px;
    box-shadow: none;
    border-radius: 0;
  }

  .service-details {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* .mobile-menu.active {
    display: flex;
  }
  .main-nav {
    display: none;
  }

  .burger-btn {
    display: block;
  } */
  .main-nav ul {
    gap: 10px;
  }
  .header.scrolled .burger-btn span {
    background-color: var(--dark-color);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slider {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .map-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* Burger Menu Animation */
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Featured Products Section --- */

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

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

.featured-products h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

/* --- Products Grid --- */

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

/* --- Product Card --- */

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
  flex-grow: 1;
}

.price {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* --- Button Styles --- */

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

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

/* --- Mobile styles for small screens (up to 360px) --- */

@media screen and (max-width: 360px) {
  .featured-products h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .products-grid {
    gap: 20px;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 0.9rem;
  }

  .btn-secondary {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* --- About Company Section --- */

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

.about-company .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .about-company .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

/* --- About Content --- */

.about-content h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* --- Stats Block --- */

.stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 30%;
  text-align: center;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stat-item .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
}

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

/* --- About Image --- */

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

@media screen and (max-width: 360px) {
  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .stat-item .number {
    font-size: 1.25rem;
  }

  .stat-item .label {
    font-size: 0.85rem;
  }

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

  .stat-item {
    flex: 1 1 100%;
  }
}

/* --- Artisan Spotlight Section --- */

.artisan-spotlight {
  padding: 80px 0;
  background-color: var(--light-color);
}

.artisan-spotlight h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.artisan-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.artisan-card:hover {
  transform: translateY(-5px);
}

.artisan-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.artisan-info {
  padding: 20px;
}

.artisan-info h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.artisan-info .craft {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.artisan-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.artisan-location {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}
@media screen and (max-width: 360px) {
  .artisan-spotlight h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .artisan-info h3 {
    font-size: 1.1rem;
  }

  .artisan-info .craft,
  .artisan-info p,
  .artisan-location {
    font-size: 0.85rem;
  }
}
/* --- Craft Process Section --- */

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

.craft-process h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
  background-color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.step-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 10px;
}
@media screen and (max-width: 360px) {
  .craft-process h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }
}
/* --- Values Section --- */

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

.values h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.value-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}
@media screen and (max-width: 360px) {
  .values h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .value-card h3 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }
}
/* --- Visit Us Section --- */

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

.visit-us .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.visit-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.visit-us p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--white);
}

.visit-details .btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
  transition: background-color var(--transition);
}

.visit-details .btn-secondary:hover {
  background-color: var(--accent-color);
}
/* --- Materials Section --- */

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

.materials h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.material-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  text-align: center;
}

.material-card:hover {
  transform: translateY(-5px);
}

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

.material-card h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin: 15px 0 10px;
}

.material-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0 15px 20px;
}

@media screen and (max-width: 360px) {
  .materials h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .material-card img {
    height: 160px;
  }

  .material-card h3 {
    font-size: 1rem;
  }

  .material-card p {
    font-size: 0.85rem;
  }
}

/* --- Bulk Discounts Section --- */

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

.bulk-discounts .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .bulk-discounts .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.bulk-content h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.bulk-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.bulk-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.bulk-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.bulk-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.bulk-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
}

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

/* --- Price Comparison Section --- */

.price-comparison {
  padding: 80px 0;
  background-color: var(--light-color);
}

.price-comparison h2 {
  font-size: 2rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.comparison-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.price-range {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.comparison-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-color);
  text-align: left;
}

.comparison-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.best-choice {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.85rem;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-card.ours {
  border: 2px solid var(--primary-color);
  background-color: #fffdf0;
}

@media screen and (max-width: 360px) {
  .price-comparison h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .comparison-card h3 {
    font-size: 1.1rem;
  }

  .price-range {
    font-size: 1rem;
  }

  .best-choice {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

/* --- Pricing CTA Section --- */

.pricing-cta {
  padding: 60px 0;
  background-color: var(--dark-color);
  color: var(--white);
  text-align: center;
}

.pricing-cta .container {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-cta p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--white);
}

.pricing-cta .btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
  transition: background-color var(--transition);
}

.pricing-cta .btn-secondary:hover {
  background-color: var(--accent-color);
}
