* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Yeseva One", serif;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.header {
  background-color: #1e1a1a;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}
.logo span {
  color: #d4a72c;
}
.nav-list {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #d4a72c;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d4a72c;
}
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease-in-out;
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
}
.btn-primary {
  background-color: #d4a72c;
  color: #fff;
}
.btn-primary:hover {
  background-color: #c7652e;
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: rgba(0, 0, 0, 0);
  color: #d4a72c;
  border: 2px solid #d4a72c;
}
.btn-secondary:hover {
  background-color: #d4a72c;
  color: #fff;
}
.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1a1a 0%, #4e8277 100%);
  color: #fff;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #d4a72c;
}
.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.page-header {
  background-color: #1e1a1a;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-title {
  font-size: 2.5rem;
  color: #d4a72c;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e1a1a;
}
section {
  padding: 80px 0;
}
.gallery {
  background-color: #f8f9fa;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr;
}
.before,
.after {
  position: relative;
}
.before img,
.after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
}
.label-after {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
}
.gallery-item h3 {
  padding: 1rem;
  text-align: center;
  color: #1e1a1a;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  margin-bottom: 0.5rem;
  color: #1e1a1a;
}
.product-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d4a72c;
  margin-bottom: 1rem;
}
.price-info {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b8e23;
  margin-top: 1rem;
}
.text-center {
  text-align: center;
  margin-top: 3rem;
}
.reviews {
  background-color: #f8f9fa;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.stars {
  color: #d4a72c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.review-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.reviewer strong {
  color: #1e1a1a;
}
.reviewer span {
  margin-left: 8px;
  color: #666;
  font-size: 0.9rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: #1e1a1a;
  margin-bottom: 1rem;
}
.service-card p {
  color: #666;
  line-height: 1.8;
}
.services-detailed {
  padding: 60px 0;
}
.service-detail {
  margin-bottom: 4rem;
}
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-detail.reverse .service-content {
  direction: rtl;
}
.service-detail.reverse .service-text {
  direction: ltr;
}
.service-text h2 {
  color: #1e1a1a;
  margin-bottom: 1rem;
}
.service-text ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.service-text li {
  margin-bottom: 0.5rem;
  color: #666;
}
.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.shop-filters {
  background-color: #f8f9fa;
  padding: 2rem 0;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.filter-btn:hover,
.filter-btn.active {
  background-color: #d4a72c;
  color: #fff;
  border-color: #d4a72c;
}
.shop-info {
  background-color: #f8f9fa;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.info-card h3 {
  color: #1e1a1a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.cta {
  background: linear-gradient(135deg, #4e8277 0%, #6b8e23 100%);
  color: #fff;
}
.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-text h2 {
  color: #d4a72c;
  margin-bottom: 1rem;
}
.cta-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.cta-form,
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cta-form input,
.cta-form textarea,
.cta-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #d4a72c;
}
.cta-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contacts-info {
  padding: 60px 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.contact-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-card h3 {
  color: #1e1a1a;
  margin-bottom: 1rem;
}
.contact-card a {
  color: #d4a72c;
  font-weight: 600;
}
.contact-card small {
  color: #666;
  font-size: 0.9rem;
}
.contact-form-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-text h2 {
  color: #1e1a1a;
  margin-bottom: 1rem;
}
.faq {
  background-color: #f8f9fa;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: #fff;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: #f8f9fa;
}
.faq-question h3 {
  margin: 0;
  color: #1e1a1a;
  font-size: 1.1rem;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #d4a72c;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}
.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.delivery-info {
  padding: 60px 0;
}
.info-section h3 {
  color: #1e1a1a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.info-section ul {
  list-style: disc;
  margin-left: 1.5rem;
}
.info-section li {
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.6;
}
.info-section strong {
  color: #1e1a1a;
}
.legal-content {
  padding: 60px 0;
}
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.legal-text h2 {
  color: #1e1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.legal-text h3 {
  color: #4e8277;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.legal-text ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-text li {
  margin-bottom: 0.5rem;
  color: #666;
}
.legal-text strong {
  color: #1e1a1a;
}
.legal-text a {
  color: #d4a72c;
  text-decoration: underline;
}
.footer {
  background-color: #1e1a1a;
  color: #fff;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #d4a72c;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #ccc;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #d4a72c;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}
.close:hover {
  color: #d4a72c;
}
.modal-content h3 {
  color: #1e1a1a;
  margin-bottom: 1rem;
}
.modal-content p {
  color: #666;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1e1a1a;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail.reverse .service-content {
    direction: ltr;
  }
  .cta-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid,
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .before img,
  .after img {
    height: 150px;
  }
  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-title {
    font-size: 2rem;
  }
  section {
    padding: 40px 0;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
  .footer-content {
    justify-items: center;
  }
  .footer-section h4,
  .footer-section p,
  .footer-section li {
    text-align: center;
  }
}
.hidden {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 2px solid #d4a72c;
  outline-offset: 2px;
}
@media print {
  .header,
  .footer,
  .btn,
  .modal {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  .container {
    max-width: none;
    padding: 0;
  }
}
