/* ===== MISS BABIDI - Global Styles ===== */

/* Design Tokens from Pencil */
:root {
  --accent-gold: #C9A86C;
  --accent-gold-light: #E8DCC8;
  --accent-pink: #D4618C;
  --accent-pink-dark: #B8456F;
  --accent-pink-light: #F5D0DC;
  --bg-blush: #FFF0F3;
  --bg-cream: #FAF5F0;
  --bg-primary: #FDF8F5;
  --bg-surface: #FFFFFF;
  --border-pink: #F5D0DC;
  --border-subtle: #EDE8E3;
  --shadow-color: rgba(212, 97, 140, 0.06);
  --text-primary: #2D2A26;
  --text-secondary: #6B6560;
  --text-tertiary: #9C9590;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Outfit', sans-serif;
}

/* ===== Utility ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ===== Tag/Badge ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.tag--pink {
  background: var(--accent-pink-light);
  color: var(--accent-pink-dark);
}

.tag--white {
  background: var(--bg-surface);
  color: var(--accent-pink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--accent-pink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 97, 140, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent-pink);
  border: 2px solid var(--accent-pink);
}

.btn--outline:hover {
  background: var(--accent-pink);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--accent-pink);
}

.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--accent-pink);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 14px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface);
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.header__logo {
  width: 140px;
  height: 50px;
  object-fit: contain;
}

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

.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--accent-pink);
}

.header__cta {
  padding: 12px 28px;
  font-size: 14px;
}

/* Mobile hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-surface);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-pink);
}

/* ===== HERO (Home) ===== */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 700px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 600px;
}

.hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero__image {
  width: 560px;
  height: 540px;
  border-radius: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO (Subpages) ===== */
.hero-sub {
  background: var(--bg-cream);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  min-height: 400px;
}

.hero-sub__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-sub__desc {
  font-size: 20px;
  color: var(--text-secondary);
}

/* ===== SECTION Headers ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.section-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--text-primary);
}

.section-header__desc {
  font-size: 18px;
  color: var(--text-secondary);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.service-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-pink);
  transition: color 0.3s;
}

.service-card__link:hover {
  color: var(--accent-pink-dark);
}

/* ===== ABOUT SECTION (Home) ===== */
.about {
  background: var(--bg-cream);
  padding: 100px 80px;
}

.about__inner {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about__img {
  width: 520px;
  height: 480px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
}

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 500px;
}

.about__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 500px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}

.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-pink);
}

.stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===== GALLERY SECTION (Home) ===== */
.gallery {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery__img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery__img:hover {
  transform: scale(1.02);
}

.gallery__img--tall {
  height: 320px;
}

.gallery__img--short {
  height: 240px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-blush);
  padding: 100px 80px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow-color);
}

.testimonial-card__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__date {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent-pink);
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.cta-section__desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.cta-section__btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  padding: 60px 80px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer__social-icon:hover {
  background: var(--accent-pink);
}

.footer__social-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer__col-links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== STORY (Uber uns page) ===== */
.story {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.story__inner {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.story__img {
  width: 520px;
  height: 600px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
}

.story__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story__title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--text-primary);
}

.story__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== VALUES ===== */
.values {
  background: var(--bg-primary);
  padding: 100px 80px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.value-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 100px;
  background: var(--accent-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-pink);
}

.value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.value-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== TEAM ===== */
.team {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.team-member__img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
}

.team-member__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.team-member__role {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-pink);
}

.team-member__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 260px;
}

/* ===== SERVICES DETAIL (Leistungen page) ===== */
.services-detail {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.services-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-detail {
  display: flex;
  gap: 80px;
  align-items: center;
}

.service-detail--reverse {
  flex-direction: row-reverse;
}

.service-detail__img {
  width: 560px;
  height: 420px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-detail__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-pink-light);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-pink);
  width: fit-content;
}

.service-detail__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
}

.service-detail__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-pink);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== PACKAGES ===== */
.packages {
  background: var(--bg-primary);
  padding: 100px 80px;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-surface);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.package-card--featured {
  background: var(--accent-pink);
  border-color: transparent;
}

.package-card__badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.19);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.package-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
}

.package-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-pink);
}

.package-card--featured .package-card__name,
.package-card--featured .package-card__price {
  color: #fff;
}

.package-card__desc {
  font-size: 15px;
  line-height: 1.6;
}

.package-card--featured .package-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.package-feature span {
  font-size: 14px;
}

.package-card--featured .package-feature svg {
  color: #fff;
}

.package-card--featured .package-feature span {
  color: rgba(255, 255, 255, 0.8);
}

.package-card__btn {
  margin-top: auto;
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  background: var(--bg-surface);
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-pink);
  color: #fff;
  border-color: var(--accent-pink);
}

.gallery-page {
  background: var(--bg-primary);
  padding: 60px 80px;
}

.gallery-page__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-page__row {
  display: grid;
  gap: 24px;
}

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

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

.gallery-page__img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-page__img:hover {
  transform: scale(1.02);
}

.gallery-page__img--h400 { height: 400px; }
.gallery-page__img--h350 { height: 350px; }
.gallery-page__img--h300 { height: 300px; }

/* ===== CONTACT PAGE ===== */
.contact {
  background: var(--bg-surface);
  padding: 100px 80px;
}

.contact__inner {
  display: flex;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact__info {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__info-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact__info-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: var(--accent-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-pink);
}

.contact-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.contact-item__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__social-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact__social-icons {
  display: flex;
  gap: 12px;
}

.contact__social-btn {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.contact__social-btn:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-2px);
}

.contact__social-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* Contact Form */
.contact__form {
  flex: 1;
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact__form-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  height: 52px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent-pink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-tertiary);
}

.form-field textarea {
  height: 200px;
  padding: 20px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  height: 56px;
}

/* Map placeholder */
.map-section {
  width: 100%;
  height: 400px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-section iframe {
  
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Tablet landscape */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .header__inner { padding: 0 40px; }

  .hero { padding: 60px 40px; gap: 40px; }
  .hero__title { font-size: 44px; max-width: 480px; }
  .hero__desc { font-size: 16px; max-width: 440px; }
  .hero__image { width: 440px; height: 420px; }

  .services { padding: 80px 40px; }
  .about { padding: 80px 40px; }
  .about__inner { gap: 40px; }
  .about__img { width: 400px; height: 380px; }

  .gallery { padding: 80px 40px; }
  .testimonials { padding: 80px 40px; }
  .cta-section { padding: 80px 40px; }
  .cta-section__title { font-size: 40px; }
  .footer { padding: 60px 40px; }

  .hero-sub { padding: 80px 40px; }
  .hero-sub__title { font-size: 44px; }

  .story { padding: 80px 40px; }
  .story__inner { gap: 40px; }
  .story__img { width: 400px; height: 480px; }

  .values { padding: 80px 40px; }
  .team { padding: 80px 40px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .services-detail { padding: 80px 40px; }
  .service-detail { gap: 40px; }
  .service-detail__img { width: 440px; height: 340px; }

  .packages { padding: 80px 40px; }

  .gallery-filters { padding: 30px 40px; }
  .gallery-page { padding: 40px 40px; }

  .contact { padding: 80px 40px; }
  .contact__inner { gap: 40px; }
  .contact__info { width: 380px; }

  .footer__links { gap: 40px; }
}

/* Tablet portrait */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .hero { flex-direction: column; text-align: center; min-height: auto; }
  .hero__content { align-items: center; }
  .hero__title { max-width: 100%; }
  .hero__desc { max-width: 100%; }
  .hero__image { width: 100%; max-width: 500px; height: 400px; border-radius: 200px; }
  .hero__btns { justify-content: center; }

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

  .about__inner { flex-direction: column; }
  .about__img { width: 100%; height: 400px; }
  .about__title { max-width: 100%; }
  .about__desc { max-width: 100%; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__col:nth-child(3) { display: none; }

  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial-card:nth-child(3) { display: none; }

  .section-header__title { font-size: 36px; }

  .story__inner { flex-direction: column; }
  .story__img { width: 100%; height: 400px; }

  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid .value-card:nth-child(3) { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }

  .service-detail { flex-direction: column !important; }
  .service-detail__img { width: 100%; height: 340px; }

  .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid .package-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-page__row--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-page__row--3 > *:nth-child(3) { display: none; }

  .contact__inner { flex-direction: column; }
  .contact__info { width: 100%; }

  .footer__main { flex-direction: column; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Mobile large */
@media (max-width: 768px) {
  .hero { padding: 40px 24px; }
  .hero__title { font-size: 36px; }
  .hero__desc { font-size: 16px; }
  .hero__image { height: 320px; border-radius: 160px; }
  .hero__btns { flex-direction: column; width: 100%; }
  .hero__btns .btn { width: 100%; }

  .services { padding: 60px 24px; }
  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .about { padding: 60px 24px; }
  .about__img { height: 300px; }
  .about__stats { gap: 24px; }

  .gallery { padding: 60px 24px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__col:nth-child(3) { display: flex; }
  .gallery__img--tall, .gallery__img--short { height: 240px; }

  .testimonials { padding: 60px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial-card:nth-child(3) { display: flex; }

  .cta-section { padding: 60px 24px; }
  .cta-section__title { font-size: 32px; }
  .cta-section__btns { flex-direction: column; width: 100%; }
  .cta-section__btns .btn { width: 100%; max-width: 300px; }

  .footer { padding: 40px 24px; }
  .footer__links { flex-direction: column; gap: 32px; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .section-header__title { font-size: 30px; }
  .section-header { margin-bottom: 40px; }

  .hero-sub { padding: 60px 24px; min-height: 300px; }
  .hero-sub__title { font-size: 32px; }
  .hero-sub__desc { font-size: 16px; }

  .story { padding: 60px 24px; }
  .story__img { height: 300px; }
  .story__title { font-size: 32px; }

  .values { padding: 60px 24px; }
  .values__grid { grid-template-columns: 1fr; }
  .values__grid .value-card:nth-child(3) { grid-column: auto; max-width: 100%; }

  .team { padding: 60px 24px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .team-member__img { width: 150px; height: 150px; }

  .services-detail { padding: 60px 24px; }
  .service-detail__img { height: 260px; }
  .service-detail__title { font-size: 28px; }

  .packages { padding: 60px 24px; }
  .packages__grid { grid-template-columns: 1fr; }
  .packages__grid .package-card:nth-child(3) { grid-column: auto; max-width: 100%; }

  .gallery-filters { padding: 24px 24px; gap: 10px; }
  .gallery-page { padding: 24px 24px; }
  .gallery-page__row--3 { grid-template-columns: 1fr; }
  .gallery-page__row--3 > *:nth-child(3) { display: block; }
  .gallery-page__row--2 { grid-template-columns: 1fr; }
  .gallery-page__img--h400 { height: 260px; }
  .gallery-page__img--h350 { height: 240px; }
  .gallery-page__img--h300 { height: 220px; }

  .contact { padding: 60px 24px; }
  .contact__form { padding: 32px 24px; }
  .form-row { flex-direction: column; }
  .contact__info-title { font-size: 28px; }

  .map-section { height: 280px; }

  .header__inner { padding: 0 24px; }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero__title { font-size: 30px; }
  .hero__image { height: 260px; border-radius: 130px; }

  .about__stats { flex-wrap: wrap; gap: 20px; }
  .stat__num { font-size: 28px; }

  .team__grid { grid-template-columns: 1fr; }
  .team-member__img { width: 180px; height: 180px; }

  .filter-btn { padding: 10px 18px; font-size: 13px; }

  .cta-section__title { font-size: 28px; }
}

/* ===== CONTACT FORM 7 OVERRIDES ===== */
.contact__form .wpcf7 {
  width: 100%;
}

.contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form .form-row {
  display: flex;
  gap: 20px;
}

.contact__form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__form .form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  height: 52px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--accent-pink);
}

.contact__form .wpcf7-form-control::placeholder {
  color: var(--text-tertiary);
}

.contact__form textarea.wpcf7-form-control {
  min-height: 200px;
  height: 200px;
  padding: 16px 20px;
  resize: vertical;
}

.contact__form .wpcf7-submit {
  width: 100%;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--accent-pink);
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.contact__form .wpcf7-submit:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-2px);
}

.contact__form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}

.contact__form .wpcf7-response-output {
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  margin: 16px 0 0 0;
}

.contact__form .wpcf7 .wpcf7-spinner {
  display: none;
}

@media (max-width: 768px) {
  .contact__form .form-row {
    flex-direction: column;
  }
}
