/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #3b2b2b;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Override container for service pages */
.service-page .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(90, 60, 46, 0.2);
  backdrop-filter: saturate(140%) blur(6px);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(90, 60, 46, 0.35);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 120px;
  height: auto;
}

.brand-name {
  color: #5a3c2e;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #4b2e23;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

nav a.active,
nav a:hover {
  background-color: #f1e9e4;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #4b2e23;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav { position: relative; }
  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #eadfd7;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    display: none;
    min-width: 200px;
  }
  .nav-links.open { display: flex; }
}

/* Fade-in Animation */
.fade-in {
  animation: fadeIn 1s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Sections */
section {
  margin: 50px 0;
}

h1, h2 {
  color: #5a3c2e;
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
}

h1 { font-family: 'Playfair Display', serif; }
h2 { font-family: 'Playfair Display', serif; font-weight: 600; }

p {
  font-size: 18px;
  color: #5c4a43;
  max-width: 900px;
}

/* About Section */
.about {
  background-color: #fff8f2;
  border-left: 5px solid #c8a15a;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: radial-gradient(circle, rgba(200,161,90,0.2) 0%, transparent 70%);
  position: absolute;
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  z-index: 0;
}

.about p {
  position: relative;
  z-index: 1;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.about-highlights .highlight {
  background: #ffffff;
  border: 1px solid #eadfd7;
  color: #4b2e23;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* About layout: photo beside text */
.about .about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
}

.about .profile-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 24px rgba(90,60,46,0.08);
}

@media (max-width: 900px) {
  .about .about-grid { grid-template-columns: 1fr; }
  .about .profile-photo { justify-self: center; margin-bottom: 8px; }
}

/* Offers - Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background-color: #ffffff;
  border: 1px solid #eadfd7;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #3b2b2b;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 6px rgba(90,60,46,0.05);
}

.card h3 {
  color: #5a3c2e;
  margin-bottom: 10px;
}

/* Service cards with image + hover */
.service-card { padding: 0; overflow: hidden; text-align: left; display: flex; flex-direction: column; height: 100%; }
.service-card img { width: 100%; height: 200px; object-fit: contain; display: block; transition: transform .5s ease; background: #f8f8f8; }
.service-card h3 { padding: 14px 16px 6px; }
.service-card p { padding: 0 16px 10px; }
.service-card .price { font-weight: 600; color: #4b2e23; }
.service-card .desc { color: #6a5851; font-size: 15px; flex-grow: 1; }
.service-card .btn { margin: 0 16px 16px; margin-top: auto; align-self: flex-start; }
.service-card:hover { box-shadow: 0 14px 30px rgba(90, 60, 46, 0.15); transform: translateY(-6px); }
.service-card:hover img { transform: scale(1.06); }
/* Hero */
.hero {
  background: radial-gradient(1200px 400px at 10% -10%, rgba(200,161,90,0.15), transparent),
              linear-gradient(180deg, #fff6ee 0%, #ffffff 100%);
  padding: 90px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr var(--video-column-width, 500px);
  gap: 40px;
  align-items: center;
  --video-column-width: 500px;
}

.hero-title { font-size: 52px; text-align: left; color: #4b2e23; }
.hero-subtitle { max-width: 700px; margin-top: 10px; color: #5c4a43; text-align: left; font-size: 22px; }
.hero-cta { margin-top: 20px; display: flex; gap: 12px; }
.hero-badges { margin-top: 18px; display: flex; gap: 16px; list-style: none; padding: 0; color: #5c4a43; }
.hero-badges li { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #eadfd7; padding: 8px 12px; border-radius: 999px; }

.hero-video {
  position: relative;
  --video-width: 100%;
  --video-height: 400px;
  --video-container-width: 100%;
  width: var(--video-container-width);
  min-width: 0;
}

.hero-video video {
  width: var(--video-width);
  height: var(--video-height);
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(90,60,46,0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video video:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(90,60,46,0.18);
}

/* Fullscreen video modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
}

.video-modal video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-video {
    order: -1;
    --video-height: 320px;
    --video-width: 100%;
    --video-max-width: 500px;
  }
  .hero-video video {
    height: var(--video-height);
    max-width: var(--video-max-width);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .hero-title { font-size: 34px; text-align: center; }
  .hero-subtitle { text-align: center; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-badges { flex-wrap: wrap; justify-content: center; }
  .hero-video {
    --video-height: 270px;
  }
  .hero-video video {
    height: var(--video-height);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn-sm { padding: 8px 12px; font-size: 14px; line-height: 1; display: inline-flex; align-items: center; }

.btn-primary { background: #5a3c2e; color: #ffffff; }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-secondary { background: transparent; color: #5a3c2e; border: 1px solid #5a3c2e; }
.btn-secondary:hover { background: #5a3c2e; color: #ffffff; }

.btn-outline { background: transparent; color: #5a3c2e; border: 1px solid #eadfd7; }
.btn-outline:hover { border-color: #5a3c2e; color: #ffffff; background: #5a3c2e; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(90, 60, 46, 0.15);
}

/* Footer */
footer {
  background-color: #faf7f4;
  border-top: 1px solid #eadfd7;
  text-align: center;
  padding: 30px 0;
  color: #5a3c2e;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #4b2e23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #5a3c2e;
}

.social-media a {
  color: #4b2e23;
  text-decoration: none;
  margin: 0 8px;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-media a:hover { color: #5a3c2e; transform: translateY(-2px); }

/* Contact Page */
.contact-section {
  margin: 50px 0;
  text-align: center;
}
.contact-section p { color: #6a5851; }
.contact-section .container,
.contact-section { max-width: 1100px; margin-left: auto; margin-right: auto; }

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Balance spacing above/below contact block */
.contact-section h2 { margin: 0 auto 14px; text-align: center; }
.contact-section > p { margin: 0 auto 18px; text-align: center; max-width: 760px; }

.contact-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow .3s ease;
  border: 1px solid #eadfd7;
  text-decoration: none;
  color: #5c4a43;
  cursor: pointer;
  width: 320px;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(90,60,46,0.12);
  border-color: #d7c8bf;
}

.contact-card i { font-size: 26px; color: #5a3c2e; }
.contact-card:link, .contact-card:visited { color: #5c4a43; text-decoration: none; }
.contact-card:hover { color: #5c4a43; text-decoration: none; }

.contact-card h3 { color: #5a3c2e; margin: 6px 0 2px; font-weight: 700; }

.contact-card p { color: #5c4a43; font-size: 16px; margin: 0; }

.contact-card > div { display: flex; flex-direction: column; align-items: center; }

.contact-card a { color: inherit; text-decoration: none; }

.contact-card a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form { margin-top: 34px; text-align: left; background: #ffffff; border: 1px solid #eadfd7; border-radius: 12px; padding: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-weight: 600; color: #4b2e23; }
.form-field input, .form-field textarea {
  background: #fff; border: 1px solid #eadfd7; border-radius: 8px; padding: 12px; color: #3b2b2b; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: #5a3c2e; box-shadow: 0 0 0 3px rgba(90,60,46,0.15); }
.form-status { margin-top: 10px; color: #5c4a43; }

/* Testimonials */
.testimonial p { font-style: italic; }
.testimonial .author { display: block; margin-top: 10px; color: #cfcfcf; }

/* Pricing */
.price-card .price { color: #ffffff; font-weight: 600; }
.center { text-align: center; margin-top: 20px; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #ffffff; border: 1px solid #eadfd7; border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: transparent; color: #4b2e23; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border: none; cursor: pointer; font-weight: 600; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 16px; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 14px; }

/* Service Pages */
.service-page {
  margin: 50px auto;
  max-width: 1000px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background: #fff8f2;
  border-radius: 16px;
  border-left: 5px solid #c8a15a;
  width: 100%;
}

.service-image {
  display: inline-block;
  position: relative;
}

.service-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 24px rgba(90,60,46,0.08);
  background: #f8f8f8;
  display: block;
}

.service-info h1 {
  color: #5a3c2e;
  font-size: 36px;
  margin-bottom: 16px;
  text-align: left;
}

.service-intro {
  font-size: 18px;
  color: #5c4a43;
  line-height: 1.6;
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.service-description h2 {
  color: #5a3c2e;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.service-description h3 {
  color: #4b2e23;
  font-size: 22px;
  margin: 24px 0 12px;
}

.service-description p {
  color: #5c4a43;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-description ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-description li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #5c4a43;
  font-size: 16px;
}

.service-description li i {
  color: #c8a15a;
  font-size: 14px;
}

.service-pricing h2 {
  color: #5a3c2e;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #eadfd7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90,60,46,0.1);
}

.pricing-card.featured {
  border-color: #c8a15a;
  background: #fff8f2;
}

.pricing-card .duration {
  font-size: 18px;
  font-weight: 600;
  color: #4b2e23;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #5a3c2e;
  margin-bottom: 8px;
}

.pricing-card .description {
  font-size: 14px;
  color: #6a5851;
  line-height: 1.4;
}

.pricing-card .badge {
  position: absolute;
  top: -8px;
  right: 16px;
  background: #c8a15a;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.service-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .service-header {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
  
  .service-image img {
    max-height: 300px;
    max-width: 100%;
  }
  
  .service-content {
    grid-template-columns: 1fr;
  }
  
  .service-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .service-header {
    padding: 15px;
    gap: 15px;
  }
  
  .service-image img {
    max-height: 250px;
    max-width: 100%;
  }
  
  .service-info h1 {
    font-size: 28px;
  }
  
  .service-intro {
    font-size: 16px;
  }
}
