/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #5d4037;
  --secondary-color: #8d6e63;
  --accent-color: #a1887f;
  --warm-brown: #6d4c41;
  --light-brown: #bcaaa4;
  --cream: #efebe9;
  --text-dark: #3e2723;
  --text-light: #795548;
  --bg-light: #faf8f6;
  --bg-white: #fff9f5;
  --border-color: #d7ccc8;
  --shadow-sm: 0 2px 4px rgba(93, 64, 55, 0.08);
  --shadow-md: 0 4px 12px rgba(93, 64, 55, 0.15);
  --shadow-lg: 0 8px 24px rgba(93, 64, 55, 0.2);
  --transition-speed: 0.3s;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  position: relative;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 249, 245, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-brown);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover {
  color: var(--warm-brown);
}

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

.nav-link-contact {
  padding: 0.5rem 1.25rem;
  background: var(--light-brown);
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
}

.nav-link-contact::after {
  display: none;
}

.nav-link-contact:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

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

.nav-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%);
  background-image: url("https://images.unsplash.com/photo-1592517662775-967dfc326893?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=870");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: white;
  overflow: hidden;
  padding: var(--spacing-md) 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: var(--spacing-xl) var(--spacing-sm);
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: "Momo Signature", cursive;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.hero-benefits {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  margin: 0;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all var(--transition-speed) ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.2rem;
  color: var(--light-brown);
  font-weight: bold;
}

.benefit-text {
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: inline-block;
  margin-top: 0;
  padding: 0.85rem 2.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-speed) ease;
}

.hero-cta:hover {
  background: var(--warm-brown);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.4);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  background: var(--bg-white);
}

.about-content {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.about-text {
  padding-right: var(--spacing-md);
}

.about-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.expand-features-btn,
.expand-highlights-btn {
  display: none;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
  grid-column: 1 / -1;
}

.expand-features-btn:hover,
.expand-highlights-btn:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.expand-features-btn .collapse-text,
.expand-highlights-btn .collapse-text {
  display: none;
}

.about-features.expanded .expand-features-btn .expand-text,
.services-highlights.expanded .expand-highlights-btn .expand-text {
  display: none;
}

.about-features.expanded .expand-features-btn .collapse-text,
.services-highlights.expanded .expand-highlights-btn .collapse-text {
  display: inline;
}

.feature-box {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  padding: var(--spacing-md);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  overflow: hidden;
  min-height: 180px;
  cursor: pointer;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: 0;
}

.feature-box:nth-child(1) {
  grid-column: 1 / -1;
  background-image: url("https://images.unsplash.com/photo-1642424206838-237a461d3ee2?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=387");
}

.feature-box:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1565269424908-3e4c73e5abdb?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=870");
}

.feature-box:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1463748465553-80db1e6ff830?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=580");
}

.feature-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 35, 0.65);
  z-index: 1;
  transition: all var(--transition-speed) ease;
}

.feature-box:hover .feature-box-overlay {
  background: rgba(62, 39, 35, 0.75);
}

.feature-box-content {
  position: relative;
  z-index: 2;
}

.feature-box:hover {
  border-color: var(--light-brown);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-box h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-box p {
  color: white;
  font-size: 0.95rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  background: var(--bg-light);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.services-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-brown);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.services-text {
  max-width: 100%;
}

.services-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.services-text p:last-child {
  margin-bottom: 0;
}

.services-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section {
  background: var(--bg-white);
}

.pricing-intro {
  max-width: 800px;
  margin: 0 0 var(--spacing-lg);
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-light);
}

.pricing-table-wrapper {
  max-width: 100%;
  margin: 0 0 var(--spacing-md);
  overflow-x: auto;
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

.pricing-table thead {
  background: var(--primary-color);
  color: white;
}

.pricing-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-speed) ease;
}

.pricing-table tbody tr:hover {
  background: var(--bg-light);
}

.pricing-table td {
  padding: 1.25rem;
  color: var(--text-dark);
}

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--warm-brown);
  font-size: 1.1rem;
}

.pricing-note {
  max-width: 100%;
  margin: var(--spacing-md) 0 0;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 4px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.pricing-note p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--text-dark);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
  background: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  overflow: visible;
  border-radius: 4px;
  background: var(--bg-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
  border: 8px solid var(--bg-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(93, 64, 55, 0.1);
  margin-bottom: 80px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(93, 64, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: sepia(5%) contrast(95%);
  border: 1px solid rgba(93, 64, 55, 0.15);
}

.gallery-caption {
  text-align: center;
  background: transparent;
  padding: 1rem 0.5rem 0;
  margin-top: auto;
}

.gallery-caption h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-detail-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 2px 4px rgba(93, 64, 55, 0.3);
  font-family: inherit;
}

.gallery-detail-btn:hover {
  background: var(--warm-brown);
  box-shadow: 0 4px 8px rgba(93, 64, 55, 0.4);
  transform: translateY(-2px);
}

.gallery-detail-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(93, 64, 55, 0.3);
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  border: 12px solid white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10000;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--light-brown);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: rgba(93, 64, 55, 0.9);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-item a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.contact-map {
  background: var(--cream);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  overflow: hidden;
}

.contact-map iframe {
  border-radius: 12px;
  display: block;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--primary-color);
  color: white;
  padding: var(--spacing-md) 0;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-speed) ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-box:nth-child(1) {
    grid-column: 1;
  }

  .expand-features-btn {
    display: block;
  }

  .feature-box-hidden {
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .about-features.expanded .feature-box-hidden {
    display: block;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .services-text {
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
  }

  .services-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .expand-highlights-btn {
    display: block;
  }

  .highlight-card-hidden {
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .services-highlights.expanded .highlight-card-hidden {
    display: block;
  }

  .pricing-table th {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .pricing-table td {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .pricing-table td:last-child {
    font-size: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .contact-info {
    text-align: center;
  }

  .contact-map iframe {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    gap: 0;
  }

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

  .nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    text-align: left;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
  }

  .nav-link:hover {
    color: var(--warm-brown);
    padding-left: 0.5rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link-contact {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-brown);
    color: var(--text-dark);
    border-radius: 8px;
  }

  .nav-link-contact:hover {
    padding-left: 1.5rem;
    background: var(--secondary-color);
    color: white;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

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

  .hero-benefits {
    flex-direction: column;
    gap: 1rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about-text {
    padding-right: 0;
  }

  .expand-features-btn {
    display: block;
  }

  .feature-box-hidden {
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .about-features.expanded .feature-box-hidden {
    display: block;
  }

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

  .services-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .services-highlights {
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-md);
  }

  .expand-highlights-btn {
    display: block;
  }

  .highlight-card-hidden {
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .services-highlights.expanded .highlight-card-hidden {
    display: block;
  }

  .services-text p {
    font-size: 1rem;
    text-align: left;
  }

  .pricing-table-wrapper {
    border-radius: 8px;
  }

  .pricing-table th {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .pricing-table td {
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .pricing-table td:last-child {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .pricing-note {
    padding: 1rem;
  }

  .pricing-note p {
    font-size: 0.85rem;
  }

  .gallery-item {
    margin-bottom: 90px;
    padding: 12px;
  }

  .gallery-caption {
    padding: 0.75rem 0.25rem 0;
  }

  .gallery-caption h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .gallery-detail-btn {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 80vh;
    border: 8px solid white;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 40px;
  }

  .lightbox-caption {
    bottom: 15px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .contact-info {
    text-align: center;
    gap: var(--spacing-sm);
  }

  .contact-item {
    padding: 1rem 0;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.95rem;
  }

  .contact-map {
    padding: 1rem;
  }

  .contact-map iframe {
    height: 300px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .benefit-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

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

  .feature-box:nth-child(1) {
    grid-column: 1;
  }

  .pricing-table th {
    padding: 0.6rem 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
  }

  .pricing-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .pricing-table td:last-child {
    font-size: 0.9rem;
  }

  .pricing-note {
    padding: 0.85rem;
  }

  .pricing-note p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .contact-item h3 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-map {
    padding: 0.75rem;
  }

  .contact-map iframe {
    height: 250px;
  }
}
