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

:root {
  --purple: #6f207d;
  --purple-light: #904f9b;
  --purple-bg: #f0ecf1;
  --green: #5a7a3a;
  --green-hover: #4a6630;
  --white: #ffffff;
  --dark: #111111;
  --gray: #666666;
  --gray-light: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--purple-light);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--white);
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid #eee;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-contact a {
  color: var(--gray);
  text-decoration: none;
}

.top-bar-contact a:hover {
  color: var(--dark);
}

.top-bar-social {
  display: flex;
  gap: 8px;
}

.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ddd;
  color: var(--white);
  font-size: 13px;
  transition: background 0.3s;
  text-decoration: none;
}

.top-bar-social a:hover {
  background: var(--purple);
  color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
  position: relative;
  background: var(--white);
  z-index: 1000;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: var(--purple);
  text-decoration: none;
}

.logo:hover {
  color: var(--purple);
}

.logo img {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: 0.3s;
}

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

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

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center left;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  text-align: center;
}

.hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 48px;
  font-weight: 400;
  color: var(--dark);
}

.btn {
  display: inline-block;
  padding: 16px 50px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--green-hover);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-slide {
    position: relative;
    height: 50vh;
    opacity: 0;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-overlay {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.bg-light {
  background: var(--purple-bg);
}

/* ===== TESTIMONIALS ===== */
.testimonials-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.testimonial {
  display: none;
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial.active {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial blockquote {
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  padding: 0;
}

.carousel-arrow:hover {
  background: var(--purple-light);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-controls {
  display: none;
}

.carousel-dot {
  display: none;
}

/* ===== SPECIALTIES ===== */
.specialty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

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

.specialty-row.reverse .specialty-image {
  order: 2;
}

.specialty-row.reverse .specialty-text {
  order: 1;
}

.specialty-image img {
  width: 100%;
  height: auto;
  display: block;
}

.specialty-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.specialty-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .specialty-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specialty-row.reverse .specialty-image {
    order: 0;
  }

  .specialty-row.reverse .specialty-text {
    order: 0;
  }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-bio {
  margin-top: 20px;
}

.about-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}

.about-why h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-why h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 24px;
}

.about-why p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  z-index: 10;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--white);
  font-size: 14px;
  z-index: 10;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 48px;
  cursor: pointer;
  padding: 20px;
  z-index: 10;
  transition: color 0.3s;
}

.lightbox-arrow:hover {
  color: var(--white);
}

.lightbox-arrow.prev {
  left: 10px;
}

.lightbox-arrow.next {
  right: 10px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox img {
    max-width: 95vw;
  }
}

/* ===== PRICES ===== */
.prices-intro {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid #ddd;
}

.price-card {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid #ddd;
}

.price-card:last-child {
  border-right: none;
}

.price-card h3 {
  font-size: 24px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--purple);
  margin: 16px auto 0;
}

.price-card ul {
  list-style: none;
  text-align: center;
  margin: 24px 0;
}

.price-card ul li {
  padding: 12px 10px;
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
  color: var(--gray);
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0;
}

.price-card .price span {
  font-size: 16px;
  font-weight: 400;
}

.btn-black {
  background: var(--dark);
  padding: 12px 28px;
  font-size: 14px;
}

.btn-black:hover {
  background: #333;
}

.prices-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--gray);
  margin-top: 24px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .prices-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .price-card:last-child {
    border-bottom: none;
  }
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.faq-list {
  min-width: 0;
}

.faq-ask h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-ask > p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
}

.faq-ask .form-group {
  margin-bottom: 16px;
}

.faq-ask label {
  display: block;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 6px;
}

.faq-ask input,
.faq-ask textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.faq-ask input:focus,
.faq-ask textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.faq-ask textarea {
  height: 160px;
  resize: vertical;
}

.btn-dark {
  background: var(--dark);
}

.btn-dark:hover {
  background: #333;
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--dark);
  position: relative;
  font-family: inherit;
}

.faq-question::after {
  content: "\276F";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 16px;
  color: var(--gray);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(-90deg);
}

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--purple);
  color: var(--white);
}

#contact .section-title {
  color: var(--white);
}

.contact-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
}

.contact-heading span {
  font-size: 36px;
  display: block;
}

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

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form .btn {
  background: var(--dark);
  margin-top: 8px;
}

.contact-form .btn:hover {
  background: #333;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 24px;
}

.contact-info-list li {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
}

.contact-info-list li::before {
  position: absolute;
  left: 0;
  font-style: normal;
}

.contact-info-list li:nth-child(1)::before { content: "\263A"; }
.contact-info-list li:nth-child(2)::before { content: "\1F4F1"; }
.contact-info-list li:nth-child(3)::before { content: "\2709"; }
.contact-info-list li:nth-child(4)::before { content: "\1F4CD"; }

.contact-info a {
  color: var(--white);
}

.contact-map {
  margin-top: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FOOTER ===== */

/* ===== FOOTER ===== */
.site-footer {
  background: #e8e8e8;
  color: var(--gray);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.footer-links a {
  color: var(--gray);
  margin: 0 8px;
}

.footer-links a:hover {
  color: var(--dark);
}
