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

:root {
  --primary: #2c3e50;
  --secondary: #c9a961;
  --accent: #8b7355;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --text: #333;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

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

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

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

.privacy-content a {
  color: var(--secondary);
  text-decoration: underline;
}

#acceptPrivacy {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#acceptPrivacy:hover {
  background: #d4b56f;
}

.header {
  background: linear-gradient(to right, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

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

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--secondary);
  border-radius: 2px;
}

.logo:hover {
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 5px 12px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(201, 169, 97, 0.08);
}

.nav-link.active {
  color: #fff;
  background: var(--secondary);
}

.nav-link.active:hover {
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(201, 169, 97, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 115, 85, 0.1) 0%,
      transparent 50%
    );
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../visual_gallery/hero-bg.png') center/cover;
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #fff;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.3s backwards;
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 45px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
  background: #d4b56f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

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

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

.services-intro {
  padding: 100px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 1px;
}

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

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

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

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 400;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.showcase {
  padding: 90px 0;
}

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

.showcase-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.showcase-text p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.showcase-text .btn-secondary {
  margin-top: 15px;
}

.showcase-image {
  position: relative;
}

.showcase-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  z-index: -1;
  border-radius: 8px;
}

.showcase-image img {
  border-radius: 8px;
  width: 100%;
}

.process {
  padding: 90px 0;
  background: var(--primary);
  color: #fff;
}

.process .section-header h2 {
  color: #fff;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0.8;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
}

.cta-content .btn-primary {
  background: #fff;
  color: var(--primary);
}

.cta-content .btn-primary:hover {
  background: var(--light);
}

.testimonials {
  padding: 90px 0;
  background: var(--light);
}

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

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: #888;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), #3d5a73);
  color: #fff;
  padding: 190px 0 80px;
  text-align: center;
}

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

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

.luxury-intro,
.classic-intro {
  padding: 90px 0;
}

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

.content-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.content-text p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.content-image {
  position: relative;
}

.content-image img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.products-section {
  padding: 90px 0;
  background: var(--light);
}

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

.product-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.product-card.featured {
  border-color: var(--secondary);
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.product-features {
  text-align: left;
  margin-bottom: 25px;
}

.product-features p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}

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

.features-section {
  padding: 90px 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.occasions-section {
  padding: 90px 0;
  background: var(--light);
}

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

.occasion-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.occasion-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.occasion-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.benefits-section {
  padding: 90px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

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

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.contact-section {
  padding: 90px 0;
}

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

.contact-intro {
  margin-bottom: 40px;
}

.contact-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 8px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.checkbox-group {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
}

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

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 0;
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  padding: 60px 20px;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  color: #fff;
  font-size: 50px;
}

.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.thankyou-message {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.thankyou-submessage {
  font-size: 1rem;
  margin-bottom: 35px;
  color: #777;
}

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

.error-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.error-message {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #666;
  line-height: 1.7;
}

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

.policy-page {
  padding: 90px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.policy-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

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

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text);
}

.policy-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #555;
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 30px 0;
}

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

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

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

.footer-links a {
  font-size: 13px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .showcase-content,
  .content-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-image::before {
    display: none;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }

  .product-card.featured {
    transform: scale(1);
  }

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

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .nav-link.active {
    background: var(--secondary);
    color: #fff;
  }

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

  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-grid,
  .products-grid,
  .testimonials-grid,
  .occasions-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }

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

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

  .error-number {
    font-size: 5rem;
  }
}

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

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 13px;
  }

  .service-card,
  .product-card {
    padding: 30px 20px;
  }

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

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

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

  .services-intro,
  .showcase,
  .process,
  .testimonials,
  .luxury-intro,
  .classic-intro,
  .products-section,
  .features-section,
  .occasions-section,
  .benefits-section,
  .contact-section,
  .map-section,
  .policy-page {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .product-price {
    font-size: 2rem;
  }
}

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

  .logo {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-grid,
  .products-grid,
  .testimonials-grid,
  .occasions-grid,
  .benefits-grid,
  .features-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .testimonial-card,
  .occasion-card {
    padding: 25px 15px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .product-price {
    font-size: 1.8rem;
  }

  .error-number {
    font-size: 4rem;
  }

  .thankyou-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .policy-content h1 {
    font-size: 1.8rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
  }

  .footer-info p {
    font-size: 11px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links a {
    font-size: 11px;
  }
}
