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

:root {
  --primary: #8b7355;
  --secondary: #d4c4b0;
  --accent: #a0826d;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1ec;
  --text-dark: #3e3530;
  --text-light: #6b5d52;
  --white: #ffffff;
  --border: #e8dfd6;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 196, 176, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 280px;
  height: 280px;
  background: url(../cloth_visuals/bg.png) center/cover no-repeat;
  border: 5px solid var(--primary);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.3);
  border-radius: 12px;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.cta-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary);
}

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

section {
  padding: 70px 0;
}

.services {
  background: var(--white);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-light);
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--bg-cream);
  transition: width 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  border-color: var(--primary);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.about {
  background: var(--bg-cream);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  word-break: break-all;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../cloth_visuals/bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.about-decoration {
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
}

.about-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.why-choose {
  background: var(--white);
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.why-choose h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.feature:hover {
  border-left-color: var(--primary);
  background: var(--bg-cream);
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

.process {
  background: var(--bg-cream);
  position: relative;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.process h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  background: transparent;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.step p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

.cta-section {
  background: var(--text-dark);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 0;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.cta-text {
  max-width: 600px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.cta-section p {
  margin-bottom: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  flex-shrink: 0;
}

.cta-section .cta-button:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.page-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.portfolio-gallery {
  background: var(--white);
}

.portfolio-gallery h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-gallery h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.gallery-item {
  background: var(--bg-light);
  padding: 35px 25px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-cream);
  transition: height 0.4s ease;
  z-index: 0;
}

.gallery-item:hover::after {
  height: 100%;
}

.gallery-item:hover {
  border-color: var(--primary);
}

.gallery-item > * {
  position: relative;
  z-index: 1;
}

.gallery-item h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.gallery-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.testimonials {
  background: var(--bg-cream);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-left: 4px solid var(--primary);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 4rem;
  color: var(--secondary);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 500;
  color: var(--primary);
  font-size: 13px;
}

.services-detailed {
  background: var(--white);
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services-detailed h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.service-list {
  display: grid;
  gap: 0;
}

.service-detail {
  background: var(--bg-light);
  padding: 30px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-detail:hover {
  background: var(--bg-cream);
  padding-left: 40px;
}

.service-info h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-info p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.pricing {
  background: var(--bg-cream);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.pricing h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}

.price-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--primary);
  transition: height 0.4s ease;
}

.price-card:hover::before {
  height: 5px;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: var(--primary);
  border-width: 3px;
}

.price-card.featured::before {
  height: 5px;
}

.price-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
  font-family: 'Cormorant Garamond', serif;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.price-card ul li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 25px;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.7;
}

.info-item {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: var(--bg-cream);
  padding-left: 25px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--bg-cream);
  padding: 40px;
}

.contact-form-wrapper h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

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

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-light);
}

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

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-group input[type='checkbox'] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-group span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

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

.map-section {
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.map-container {
  border: 5px solid var(--white);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.thankyou-section,
.error-section {
  background: var(--bg-light);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 650px;
  padding: 50px;
  background: var(--white);
  border: 3px solid var(--primary);
  position: relative;
}

.thankyou-content::before,
.error-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--border);
  z-index: -1;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
}

.error-content h2 {
  margin-bottom: 18px;
}

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  background: var(--white);
}

.policy-section h1 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2.5rem;
}

.policy-date {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 50px;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 50px;
  border-left: 4px solid var(--primary);
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  color: var(--primary);
}

.policy-content h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.policy-content h4 {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.policy-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 16px;
  margin-left: 30px;
}

.policy-content ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 10px;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 30px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-info p {
  font-size: 13px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--bg-light);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.9;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer-links a:hover::after {
  width: 100%;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a2420 100%);
  color: var(--white);
  padding: 25px;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  display: none;
  border-top: 3px solid var(--primary);
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.privacy-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--secondary);
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}

.privacy-buttons button {
  padding: 10px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.privacy-buttons button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 25px;
    transition: left 0.4s ease;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav a {
    font-size: 15px;
    width: 100%;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  header.scrolled {
    background: rgba(255, 255, 255, 0.98);
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 100%;
    gap: 40px;
  }

  .about-image {
    height: 300px;
  }

  .service-grid,
  .features-grid,
  .gallery-grid,
  .testimonial-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
  }

  .cta-section::before {
    width: 100%;
    height: 40%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-buttons {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 50px 0;
  }

  .thankyou-content,
  .error-content {
    padding: 35px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .thankyou-actions .cta-button,
  .error-actions .cta-button {
    width: 100%;
  }

  .policy-content {
    padding: 35px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero::before {
    width: 400px;
    height: 400px;
  }

  .hero::after {
    width: 160px;
    height: 160px;
    bottom: 25px;
    right: 25px;
    border-width: 4px;
    border-radius: 8px;
  }

  .service-card,
  .gallery-item,
  .price-card {
    padding: 25px 20px;
  }

  .step {
    padding: 25px 15px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    gap: 18px;
  }

  .policy-content {
    padding: 25px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 12px;
  }
}

@media (max-width: 374px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .header-container {
    padding: 0 12px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .hero::after {
    width: 110px;
    height: 110px;
    bottom: 15px;
    right: 15px;
    border-width: 3px;
    border-radius: 6px;
  }

  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.15rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 11px;
  }

  .service-card,
  .gallery-item,
  .price-card,
  .feature {
    padding: 20px 15px;
  }

  .step {
    padding: 20px 10px;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .about-image {
    height: 250px;
  }

  .contact-form-wrapper,
  .policy-content {
    padding: 20px;
  }

  .thankyou-content,
  .error-content {
    padding: 25px;
  }

  .main-nav {
    width: 240px;
    padding: 70px 20px 20px;
  }

  section {
    padding: 40px 0;
  }

  .privacy-popup {
    padding: 18px;
  }

  .privacy-content p {
    font-size: 13px;
  }

  .privacy-buttons {
    gap: 12px;
  }

  .privacy-buttons button {
    padding: 8px 20px;
    font-size: 12px;
  }
}
