/* ===== CSS Variables ===== */
:root {
  --color-primary: #F4C6D7;
  --color-secondary: #FFF9F4;
  --color-sky: #CFE8F3;
  --color-lavender: #D9C9F2;
  --color-peach: #F6C28B;
  --color-text: #333333;
  --color-white: #ffffff;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

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

/* ===== Header & Navigation ===== */
.header {
  background-color: var(--color-white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-peach);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.mobile-close span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 10px;
  transition: var(--transition);
  position: absolute;
  display: block;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

/* ===== Hero Sections ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-sky) 50%, var(--color-lavender) 100%);
}

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

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero-text h1 span {
  color: var(--color-peach);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--color-text);
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(244, 198, 215, 0.4);
}

/* Decorative Elements */
.confetti {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  animation: float 6s ease-in-out infinite;
}

.confetti-1 { background: var(--color-primary); top: 10%; left: 5%; animation-delay: 0s; }
.confetti-2 { background: var(--color-peach); top: 20%; right: 10%; animation-delay: 1s; }
.confetti-3 { background: var(--color-lavender); bottom: 30%; left: 15%; animation-delay: 2s; }
.confetti-4 { background: var(--color-sky); bottom: 20%; right: 5%; animation-delay: 0.5s; }
.confetti-5 { background: var(--color-primary); top: 40%; left: 3%; animation-delay: 1.5s; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text);
}

.btn-primary:hover {
  background: var(--color-peach);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(246, 194, 139, 0.4);
}

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

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

/* ===== Sections ===== */
section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(244, 198, 215, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.service-icon.pink { background: var(--color-primary); }
.service-icon.blue { background: var(--color-sky); }
.service-icon.lavender { background: var(--color-lavender); }
.service-icon.peach { background: var(--color-peach); }

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

.service-card p {
  color: var(--color-text);
  opacity: 0.8;
}

/* ===== Featured Themes ===== */
.themes-section {
  background: var(--color-white);
}

.theme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.theme-row:nth-child(even) {
  direction: rtl;
}

.theme-row:nth-child(even) > * {
  direction: ltr;
}

.theme-row:last-child {
  margin-bottom: 0;
}

.theme-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.theme-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.theme-content p {
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ===== Process Section ===== */
.process-section {
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-sky) 100%);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

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

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-peach);
}

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

.process-step p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== Gallery Section ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244, 198, 215, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-text);
  font-weight: 600;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: var(--color-lavender);
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 4rem;
  color: var(--color-primary);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  padding-top: 30px;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-text);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-peach) 100%);
  text-align: center;
  padding: 80px 0;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.cta-section .btn {
  background: var(--color-white);
  color: var(--color-text);
}

.cta-section .btn:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-peach);
}

.footer-links a {
  display: block;
  padding: 8px 0;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-primary);
  padding-left: 10px;
}

.footer-contact p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* ===== Page Heroes ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  text-align: center;
  position: relative;
}

.page-hero.services-hero {
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-lavender) 100%);
}

.page-hero.gallery-hero {
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-primary) 100%);
}

.page-hero.about-hero {
  background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-primary) 100%);
}

.page-hero.contact-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-sky) 100%);
}

.page-hero.themes-hero {
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-peach) 100%);
}

.page-hero.packages-hero {
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-primary) 100%);
}

.page-hero.process-hero {
  background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-lavender) 100%);
}

.page-hero.testimonials-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-lavender) 100%);
}

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

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About Page ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(244, 198, 215, 0.3);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  opacity: 0.9;
}

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

.value-card {
  text-align: center;
  padding: 30px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 198, 215, 0.3);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ===== Contact Page ===== */
.contact-section {
  background: var(--color-white);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-peach);
  box-shadow: 0 0 0 4px rgba(246, 194, 139, 0.2);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--color-secondary);
  border-radius: var(--border-radius);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
  opacity: 0.8;
}

.contact-details a:hover {
  color: var(--color-peach);
}

/* ===== Packages Page ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(244, 198, 215, 0.4);
}

.package-card.featured {
  border: 3px solid var(--color-peach);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-peach);
  color: var(--color-text);
  padding: 8px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.package-header {
  padding: 40px 30px;
  text-align: center;
  background: var(--color-secondary);
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-peach);
  font-family: var(--font-heading);
}

.package-price span {
  font-size: 1rem;
  opacity: 0.7;
}

.package-body {
  padding: 30px;
}

.package-features {
  margin-bottom: 30px;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: '✓';
  color: var(--color-peach);
  font-weight: 700;
}

.package-body .btn {
  width: 100%;
  text-align: center;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--color-text);
}

.legal-content p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li {
  list-style: disc;
  padding: 5px 0;
  opacity: 0.9;
}

/* ===== Thank You Page ===== */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-lavender) 100%);
}

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

.thankyou-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.thankyou-icon {
  font-size: 5rem;
  margin-bottom: 30px;
}

/* ===== Gallery Full Page ===== */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-full .gallery-item {
  aspect-ratio: 1;
}

.gallery-full .gallery-item:nth-child(3n+1) {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-full .gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .services-grid,
  .testimonials-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }

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

  .process-step {
    flex: 0 0 45%;
  }

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

  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

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

  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 30px;
    padding-top: 60px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-close {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-secondary);
  }

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

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

  .services-grid,
  .testimonials-grid,
  .packages-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .theme-row,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .theme-row:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .process-step {
    flex: 0 0 100%;
  }

  .gallery-grid,
  .gallery-full {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(4),
  .gallery-full .gallery-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

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

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

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

  .hero {
    padding-top: 100px;
  }

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

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  section {
    padding: 60px 0;
  }

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

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

  .header {
    padding: 10px 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  section {
    padding: 40px 0;
  }

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

  .section-header p {
    font-size: 0.95rem;
  }

  .page-hero {
    min-height: 40vh;
    padding-top: 80px;
    padding-bottom: 30px;
  }

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

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

  .services-grid,
  .testimonials-grid,
  .packages-grid,
  .values-grid,
  .gallery-grid,
  .gallery-full {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-row,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .theme-content h3 {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .legal-content {
    padding: 40px 15px;
  }

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

  .legal-content h2 {
    font-size: 1.2rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

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

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

  .package-header {
    padding: 30px 20px;
  }

  .package-header h3 {
    font-size: 1.2rem;
  }

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

  .package-body {
    padding: 20px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info span {
    font-size: 0.8rem;
  }
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== Curved Dividers ===== */
.curve-divider {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.curve-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.curve-divider.top {
  margin-top: -1px;
}

.curve-divider.bottom {
  margin-bottom: -1px;
}
