@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #8b7355;
  --primary-dark: #6b5344;
  --secondary: #d4c4b0;
  --accent: #c9a66b;
  --text: #3d3d3d;
  --text-light: #666;
  --bg: #fdfbf7;
  --bg-alt: #f5f0e8;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}
p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: "Nunito", sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #b8954f;
  color: var(--white);
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0.8rem auto 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  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-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  padding: 70px 25px 25px;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--bg-alt);
}
.nav-mobile a:hover {
  color: var(--primary);
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 450px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge i {
  color: var(--accent);
  font-size: 1.3rem;
}
.hero-badge span {
  font-weight: 600;
  font-size: 0.85rem;
}
.services {
  padding: 60px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service-card {
  background: var(--bg);
  padding: 25px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
  font-size: 1.3rem;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.about-section {
  padding: 60px 0;
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content h2 {
  margin-bottom: 15px;
}
.about-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-feature i {
  color: var(--accent);
  font-size: 1.1rem;
}
.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}
.products {
  padding: 60px 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 180px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.product-image i {
  opacity: 0.4;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.product-price small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}
.why-us {
  padding: 60px 0;
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow);
}
.why-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.why-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.why-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonials {
  padding: 60px 0;
  background: var(--white);
}
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 15px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.testimonial-name {
  text-align: left;
}
.testimonial-name strong {
  display: block;
  font-size: 0.9rem;
}
.testimonial-name span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.cta-section {
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-section p {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.cta-section .btn {
  background: var(--white);
  color: var(--primary);
}
.cta-section .btn:hover {
  background: var(--accent);
  color: var(--white);
}
.contact-section {
  padding: 60px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 35px;
  border-radius: var(--radius);
  color: var(--white);
}
.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-item i {
  font-size: 1.1rem;
  margin-top: 2px;
  opacity: 0.9;
}
.contact-item p {
  font-size: 0.9rem;
  opacity: 0.95;
}
.contact-item a {
  color: var(--white);
  opacity: 0.95;
}
.contact-item a:hover {
  opacity: 1;
}
.contact-form-wrap {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-checkbox input {
  width: auto;
  margin-top: 3px;
}
.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}
.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}
.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.page-header {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.page-header h1 {
  margin-bottom: 10px;
}
.page-header p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: var(--text-light);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb span {
  color: var(--text-light);
}
.content-section {
  padding: 50px 0;
}
.content-section h2 {
  margin-bottom: 15px;
}
.content-section h3 {
  margin: 25px 0 12px;
}
.content-section p {
  color: var(--text-light);
}
.content-section ul {
  margin: 15px 0 15px 20px;
}
.content-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.content-section ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.about-team {
  padding: 60px 0;
  background: var(--white);
}
.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.value-card {
  background: var(--bg);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
}
.value-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.value-card h4 {
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.service-detail {
  padding: 50px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.service-main h2 {
  margin-bottom: 15px;
}
.service-main p {
  color: var(--text-light);
}
.service-features {
  margin: 25px 0;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.service-feature i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.service-feature div h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.service-feature div p {
  font-size: 0.85rem;
  margin: 0;
}
.service-sidebar {
  background: var(--bg);
  padding: 25px;
  border-radius: var(--radius);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.service-sidebar h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.service-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary);
  font-size: 0.9rem;
}
.service-sidebar ul li:last-child {
  border: none;
}
.service-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-sidebar ul li i {
  color: var(--accent);
}
.pricing-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.pricing-card h4 {
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.pricing-card .price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.error-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.error-content h1 {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.error-content h2 {
  margin-bottom: 15px;
}
.error-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}
.thankyou-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-alt);
}
.thankyou-content {
  max-width: 500px;
}
.thankyou-content i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.thankyou-content h1 {
  margin-bottom: 15px;
}
.thankyou-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1rem;
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.policy-content h2 {
  margin: 30px 0 15px;
  font-size: 1.4rem;
}
.policy-content h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
}
.policy-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.policy-content ul {
  margin: 15px 0 15px 20px;
}
.policy-content ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.footer {
  background: var(--text);
  color: var(--white);
  padding: 30px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}
.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 10px;
}
.footer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-contact p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 6px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom-links a:hover {
  color: var(--white);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}
.cookie-popup.active {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.cookie-inner p {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
}
.cookie-inner a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.gallery-section {
  padding: 50px 0;
  background: var(--bg-alt);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.process-section {
  padding: 60px 0;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  z-index: 0;
}
.process-step:last-child::after {
  display: none;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-light);
}
.faq-section {
  padding: 60px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-question i {
  transition: var(--transition);
  color: var(--accent);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 20px 15px;
  max-height: 500px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.stats-section {
  padding: 50px 0;
  background: var(--primary);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.stat-item {
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .process-steps,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-image {
    order: -1;
  }
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .process-step::after {
    display: none;
  }
  .team-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .hero {
    padding: 90px 0 40px;
    min-height: auto;
  }
  .services-grid,
  .products-grid,
  .team-values {
    grid-template-columns: 1fr;
  }
  .why-grid,
  .process-steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    position: static;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .header {
    padding: 10px 0;
  }
  .logo-text {
    font-size: 1rem;
  }
  .service-card,
  .product-info,
  .contact-form-wrap,
  .contact-info {
    padding: 18px;
  }
}
