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

:root {
  --primary-color: #e8a5a5;
  --primary-dark: #d88b8b;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #f9f7f5;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

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

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(232, 165, 165, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

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

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

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

.main-nav a:hover {
  color: var(--primary-color);
}

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

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

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(232, 165, 165, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 165, 165, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-vertical {
  position: relative;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(232, 165, 165, 0.1) 0%,
    rgba(232, 165, 165, 0.05) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  background-image: url(../photo_archive/hero.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-vertical::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

.vertical-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(232, 165, 165, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 165, 165, 0.4);
  background: var(--primary-dark);
}

.secondary-btn {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.3s;
}

.secondary-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 165, 165, 0.2);
}

section {
  padding: 50px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  margin-top: 20px;
  font-size: 1.1rem;
}

.services {
  background: var(--bg-white);
  padding: 100px 0;
}

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

.service-card {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 50px 35px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(232, 165, 165, 0.15);
}

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

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.4s;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

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

.about {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 50%, #f9f7f5 100%);
  padding: 100px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 165, 165, 0.06) 0%,
    transparent 70%
  );
  transform: translateY(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.features-list i {
  color: var(--primary-color);
  margin-right: 10px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat-item {
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-white);
  border-radius: 15px;
  border: 2px solid rgba(232, 165, 165, 0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(232, 165, 165, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.packages {
  background: var(--bg-white);
  padding: 100px 0;
  position: relative;
}

.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

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

.package-card {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 45px 35px;
  border-radius: 20px;
  border: 2px solid rgba(232, 165, 165, 0.1);
  transition: all 0.4s;
  position: relative;
}

.package-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(232, 165, 165, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.package-card:hover::after {
  opacity: 1;
}

.package-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(232, 165, 165, 0.3);
}

.package-card.featured * {
  color: var(--bg-white) !important;
}

.package-card.featured .price {
  color: var(--bg-white) !important;
}

.package-card.featured .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured .package-features i {
  color: var(--bg-white) !important;
}

.package-card.featured .package-btn {
  background: var(--bg-white);
  color: var(--primary-color) !important;
}

.package-card.featured .package-btn:hover {
  background: var(--bg-light);
}

.package-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
  margin-bottom: 10px;
}

.price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.package-features {
  list-style: none;
  margin-bottom: 25px;
}

.package-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.package-features i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.85rem;
}

.package-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 165, 165, 0.2);
}

.package-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 165, 165, 0.3);
}

.process {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-dark),
    var(--primary-color)
  );
  opacity: 0.2;
  z-index: 0;
}

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

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(232, 165, 165, 0.1);
  border-radius: 50%;
  z-index: -1;
}

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

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--bg-white);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.cta-section .cta-btn {
  background: var(--bg-white);
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .cta-btn:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.page-hero {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 165, 165, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.page-hero h1 {
  margin-bottom: 15px;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.faq-category h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.faq-item {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(232, 165, 165, 0.1);
}

.faq-question {
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s;
  font-size: 1.1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding: 0 25px 22px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.locations-intro {
  background: var(--bg-white);
  padding: 60px 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  margin-bottom: 25px;
  font-size: 2.2rem;
}

.intro-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-types {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 80px 0;
}

.location-types h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.2rem;
}

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

.location-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  transition: all 0.4s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 165, 165, 0.15);
}

.location-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.3s;
}

.location-card:hover i {
  transform: scale(1.1);
}

.location-card h3 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.location-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.location-features {
  list-style: none;
}

.location-features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.location-features li:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 15px;
}

.location-tips {
  background: var(--bg-white);
  padding: 80px 0;
}

.location-tips h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.2rem;
}

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

.tip-card {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  border-radius: 15px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  transition: all 0.3s;
}

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

.tip-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.3s;
}

.tip-card:hover i {
  transform: rotate(5deg) scale(1.1);
}

.tip-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-section {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  padding: 80px 0;
}

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

.contact-info h2 {
  margin-bottom: 25px;
  font-size: 2.2rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.contact-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 15px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  transition: all 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(232, 165, 165, 0.1);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid rgba(232, 165, 165, 0.1);
  box-shadow: 0 10px 40px rgba(232, 165, 165, 0.08);
}

.contact-form h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group label span {
  margin-left: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-light);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(232, 165, 165, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

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

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

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 165, 165, 0.3);
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 165, 165, 0.4);
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(232, 165, 165, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.thankyou-section,
.error-section {
  background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thankyou-section::before,
.error-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 165, 165, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.thankyou-content i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  display: inline-block;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

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

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

.error-number {
  font-family: 'Syne', sans-serif;
  font-size: 10rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 30px;
  opacity: 0.5;
}

.policy-section {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.policy-content h1 {
  margin-bottom: 15px;
  font-size: 3rem;
}

.update-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(232, 165, 165, 0.1);
}

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

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

.policy-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.policy-content ul {
  margin: 20px 0 20px 30px;
}

.policy-content li {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
}

footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--bg-light);
  padding: 60px 0 25px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-col i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: #999;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

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

.privacy-content p {
  font-size: 0.9rem;
  margin: 0;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
}

.privacy-buttons button {
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.privacy-buttons button:hover {
  background: var(--primary-dark);
}

.privacy-buttons a {
  padding: 10px 25px;
  background: transparent;
  color: var(--bg-white);
  text-decoration: none;
  border: 1px solid var(--bg-white);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.privacy-buttons a:hover {
  background: var(--bg-white);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .header-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.05rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .main-nav.active {
    display: flex;
  }
  .main-nav a::after {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .hero-text p {
    margin-bottom: 28px;
  }
  .hero-vertical {
    height: 250px;
  }
  .services,
  .about,
  .packages,
  .process,
  .cta-section {
    padding: 45px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 28px 22px;
  }
  .about::before {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-item {
    padding: 22px 18px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .package-card {
    padding: 28px 22px;
  }
  .package-card.featured {
    transform: scale(1);
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-grid::before {
    display: none;
  }
  .process-step {
    padding: 22px 18px;
  }
  .cta-section::before,
  .cta-section::after {
    display: none;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .location-card {
    padding: 28px 22px;
  }
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tip-card {
    padding: 22px 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form-wrapper {
    padding: 28px 22px;
  }
  .contact-details {
    gap: 18px;
  }
  .contact-item {
    padding: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    gap: 12px;
  }
  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 1rem;
  }
  .logo {
    font-size: 0.92rem;
  }
  .hero {
    padding: 32px 0;
  }
  .hero-text h1 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  .hero-text p {
    font-size: 0.87rem;
    margin-bottom: 24px;
  }
  .hero-vertical {
    height: 170px;
  }
  .cta-btn,
  .secondary-btn {
    padding: 11px 24px;
    font-size: 0.84rem;
  }
  section {
    padding: 32px 0;
  }
  .services,
  .about,
  .packages,
  .process,
  .cta-section {
    padding: 32px 0;
  }
  .service-card,
  .package-card,
  .location-card {
    padding: 22px 18px;
  }
  .stat-item,
  .process-step,
  .tip-card {
    padding: 18px 14px;
  }
  .contact-form-wrapper {
    padding: 22px 18px;
  }
  .contact-item {
    padding: 14px;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-header h2 {
    font-size: 1.3rem;
  }
  .error-number {
    font-size: 4.5rem;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .service-card,
  .package-card,
  .location-card,
  .contact-form-wrapper {
    padding: 20px;
  }
  .stat-item,
  .process-step,
  .tip-card {
    padding: 15px;
  }
}
