* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #101010;
  background: url("../images/image3.png") center/cover no-repeat fixed;
  background-color: #F8F5EF;
  line-height: 1.7;
  min-height: 100vh;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 1em;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1em;
  }
}

header .container {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

header .header-wrapper {
  padding: 1.2em 2em 1.2em 0.5em;
}

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


.btn {
  display: inline-block;
  padding: 0.8em 2em;
  color: #F8F5EF;
  border: 2px solid #5A1A2D;
  background-color: #5A1A2D;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn {
  background-color: #5A1A2D;
  border-color: #5A1A2D;
  color: #F8F5EF;
}

.btn:hover {
  background-color: #5A1A2D;
  border-color: #5A1A2D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 26, 45, 0.3);
}

.btn.red {
  background-color: #5A1A2D;
  border: none;
}

.btn.red:hover {
  background-color: #4A1525;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 26, 45, 0.3);
  border-color: #4A1525;
}


/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(90, 26, 45, 0.95);
  backdrop-filter: blur(10px);
  color: #F8F5EF;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(90, 26, 45, 0.2);
  padding: 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 2em 1.2em 0.5em;
  gap: 2em;
}

/* ===== LOGO CONTAINER ===== */
.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0;
  padding-left: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}

.logo-text {
  color: #F8F5EF;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
  white-space: nowrap;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #F8F5EF;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HEADER RIGHT SECTION ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 2.5em;
  flex: 1;
  justify-content: flex-end;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav li {
  margin: 0;
}

nav a {
  color: rgba(248, 245, 239, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5em 0;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D2AA6D;
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #F8F5EF;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
  background: #D2AA6D;
}

nav a.active {
  color: #F8F5EF;
  font-weight: 600;
}


/* ===== HERO SECTION WITH BACKGROUND SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1.5s ease-in-out;
  z-index: 0;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 114, 128, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2em;
  color: white;
}

.hero-content h2 {
  color: #FFFFFF;
  font-size: 3em;
  margin-bottom: 1em;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero-content .btn {
  font-size: 1.1em;
  padding: 1em 2.5em;
}





.intro {
  text-align: center;
  padding: 5em 2em;
  background: #F8F5EF;
}

.intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  color: #101010;
  margin-bottom: 1em;
  font-weight: 600;
}

.intro p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 2em;
  color: #101010;
  line-height: 1.8;
  opacity: 0.85;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #F8F5EF;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.section-divider path {
  transition: d 0.3s ease;
}

@media (max-width: 768px) {
  .section-divider {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .section-divider {
    height: 50px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 2em 5em;
  background: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 1;
}

.decorative-bar {
  width: 50px;
  height: 3px;
  background: #D2AA6D;
  margin: 0 auto 2em;
  border-radius: 2px;
}

.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  color: #101010;
  margin-bottom: 3em;
  font-weight: 600;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
}

.testimonials-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 1em;
  box-sizing: border-box;
  width: 100%;
}

.testimonial-content {
  background: #FAF9F6;
  border: 1px solid #E8E0D5;
  border-top: 4px solid #D2AA6D;
  padding: 3em 2.5em;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (hover: hover) {
  .testimonial-content:hover {
    box-shadow: 0 8px 24px rgba(90, 26, 45, 0.12);
    transform: translateY(-4px);
  }

  .testimonial-nav:hover {
    background: #4A1525;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(90, 26, 45, 0.4);
  }

  .testimonials-dots .dot:hover {
    background: rgba(90, 26, 45, 0.3);
    transform: scale(1.2);
  }
}

.testimonial-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: #101010;
  margin-bottom: 1.5em;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-author {
  font-family: "Playfair Display", serif;
  font-size: 1.1em;
  color: #5A1A2D;
  font-weight: 600;
  margin: 0;
}

.testimonial-nav {
  background: #5A1A2D;
  color: #F8F5EF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(90, 26, 45, 0.3);
  line-height: 1;
  padding: 0;
}

.testimonial-nav:active {
  transform: scale(0.95);
  background: #4A1525;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.75em;
  margin-top: 2.5em;
}

.testimonials-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #5A1A2D;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials-dots .dot:active {
  background: rgba(90, 26, 45, 0.3);
  transform: scale(1.1);
}

.testimonials-dots .dot.active {
  background: #5A1A2D;
  border-color: #5A1A2D;
}

/* Language-specific testimonial display */
/* Default: Show English, hide Albanian */
.testimonial-card[data-lang="en"] {
  display: block;
}

.testimonial-card[data-lang="sq"] {
  display: none;
}

/* When Albanian is selected: Show Albanian, hide English */
body[data-lang="sq"] .testimonial-card[data-lang="sq"] {
  display: block;
}

body[data-lang="sq"] .testimonial-card[data-lang="en"] {
  display: none;
}


.page-header {
  min-height: 35vh;
  background: linear-gradient(rgba(248, 245, 239, 0.9), rgba(248, 245, 239, 0.85)),
              url("../images/hero2.jpg") center/cover no-repeat;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding: 8em 2em 4em;
}

.page-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8em;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 600;
}

.about-page {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5em;
  padding: 9.5em 2em 5em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  margin-bottom: 1.2em;
  color: #FFFFFF;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 1.5em;
  color: #FFFFFF;
  line-height: 1.8;
  font-size: 1.05em;
  opacity: 1;
}

.about-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2em;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}




.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5em;
  padding: 9.5em 2em 5em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.contact-info::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 2em;
  color: #FFFFFF;
  margin-bottom: 1.2em;
  font-weight: 600;
}

.contact-details p {
  font-size: 1.15em;
  margin-bottom: 1em;
  color: #FFFFFF;
  line-height: 1.8;
  opacity: 1;
}

.contact-details strong {
  color: rgba(77, 11, 29, 0.95);
  font-weight: 600;
}

.map-container {
  flex: 1;
  min-width: 300px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.services {
  padding: 9.5em 2em 5em;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.services::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.services h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.4em;
  margin-bottom: 1em;
  color: #FFFFFF;
  font-weight: 600;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 3em;
  color: #FFFFFF;
  font-size: 1.1em;
  line-height: 1.8;
  opacity: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8e0d5;
  border-top: 4px solid #D2AA6D;
  padding: 2.5em;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(90, 26, 45, 0.15);
  border-color: #5A1A2D;
  border-top-color: #D2AA6D;
}

.service-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4em;
  color: #5A1A2D;
  margin-bottom: 1em;
  font-weight: 600;
}

.service-card p {
  color: #101010;
  font-size: 1.05em;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0 0 1em 0;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.expertise-label {
  font-weight: 600;
  margin-top: 1.2em !important;
  margin-bottom: 0.8em !important;
  color: #5A1A2D !important;
  opacity: 1 !important;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
}

.expertise-list li {
  color: #101010;
  font-size: 1.05em;
  line-height: 1.8;
  opacity: 0.9;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}

.expertise-list li::before {
  content: '•';
  position: absolute;
  left: 0.3em;
  color: #5A1A2D;
  font-weight: 600;
  font-size: 0.9em;
}

@media (max-width: 900px) {
  .services {
    padding: 4em 1em;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
  }

  .about-page {
    flex-direction: column;
    text-align: center;
    padding: 8.5em 2em 4em;
    gap: 3em;
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
    padding: 8.5em 2em 4em;
    gap: 3em;
  }

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

  .page-header {
    padding: 7em 2em 3em;
    min-height: 30vh;
  }

  .page-header h2 {
    font-size: 2.2em;
  }
}



footer {
  background: #5A1A2D;
  color: #F8F5EF;
  padding: 4em 0 2em;
  text-align: center;
  margin-top: 3em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(210, 170, 109, 0.3);
  padding-bottom: 1.5em;
}

.footer-left h3 {
  color: #D2AA6D;
  margin-bottom: 0.5em;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.footer-left p,
.footer-right p {
  color: rgba(248, 245, 239, 0.8);
  font-size: 0.95em;
}

footer a {
  color: #F8F5EF;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #D2AA6D;
}

footer .copyright {
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.9em;
}


@media (max-width: 900px) {
  .about-page {
    flex-direction: column;
    text-align: center;
    padding: 8.5em 2em 4em;
    gap: 3em;
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
    padding: 8.5em 2em 4em;
    gap: 3em;
  }

  .services {
    padding: 8.5em 2em 4em;
  }

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

  .page-header {
    padding: 7em 2em 3em;
    min-height: 30vh;
  }

  .page-header h2 {
    font-size: 2.2em;
  }

  .hero-content h2 {
    font-size: 2.2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .intro {
    padding: 4em 2em;
  }

  .intro p {
    font-size: 1em;
  }

  .testimonials {
    padding: 60px 1.5em 4em;
  }

  .decorative-bar {
    width: 45px;
    height: 2.5px;
    margin-bottom: 1.5em;
  }

  .testimonials-title {
    font-size: 1.8em;
    margin-bottom: 2em;
  }

  .testimonials-slider-wrapper {
    gap: 0.5em;
    padding: 0;
  }

  .testimonial-card {
    padding: 0 0.5em;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
    font-size: 1.5em;
  }

  .testimonial-content {
    padding: 2.5em 2em;
  }

  .testimonial-text {
    font-size: 1.05em;
    line-height: 1.75;
  }

  .testimonial-author {
    font-size: 1.05em;
  }

  .testimonials-dots {
    gap: 0.65em;
    margin-top: 2.2em;
  }

  .testimonials-dots .dot {
    width: 11px;
    height: 11px;
  }

  .booking-section {
    padding: 4em 1.5em;
  }
}

/* Tablet-specific adjustments */
@media (max-width: 968px) and (min-width: 769px) {
  .testimonials {
    padding: 70px 2em 4.5em;
  }

  .testimonials-title {
    font-size: 2em;
  }

  .testimonial-content {
    padding: 2.8em 2.2em;
  }

  .testimonial-text {
    font-size: 1.1em;
  }
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.language-switcher select {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.6em 1.2em;
  font-size: 0.9em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  padding-right: 2.5em;
}

.language-switcher select:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.language-switcher select:focus {
  outline: none;
  border-color: #D2AA6D;
  background-color: rgba(255, 255, 255, 0.15);
}

.language-switcher select option {
  background: #101010;
  color: #F8F5EF;
}

/* ===== APPOINTMENT BOOKING FORM ===== */
.booking-section {
  padding: 5em 2em;
  margin-top: 0;
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3em;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  color: #101010;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: 600;
}

.booking-form p {
  text-align: center;
  color: #666;
  margin-bottom: 2em;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
  color: #101010;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5A1A2D;
  box-shadow: 0 0 0 3px rgba(90, 26, 45, 0.1);
}

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

.form-group input[type="date"],
.form-group input[type="time"] {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1em;
  background: #5A1A2D;
  color: #F8F5EF;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(90, 26, 45, 0.3);
}

.form-submit:hover {
  background: #4A1525;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(90, 26, 45, 0.4);
}

.form-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1em;
  border-radius: 6px;
  margin-bottom: 1em;
  text-align: center;
  display: none;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1em;
  border-radius: 6px;
  margin-bottom: 1em;
  text-align: center;
  display: none;
}

/* ===== GOOGLE FORM SECTION ===== */
.google-form-section {
  padding: 3em 2em 5em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.google-form-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.google-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 2em;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2em;
  align-items: start;
}

.google-form-wrapper iframe {
  width: 100%;
  min-height: 800px;
  height: 1321px;
  border: none;
  display: block;
  margin: 0 auto;
}

.form-success,
.form-error {
  display: none;
}

.form-success.visible,
.form-error.visible {
  display: block;
}

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

/* ===== ADMIN ===== */
.admin-section {
  padding: 9.5em 2em 5em;
  max-width: 1300px;
}

.admin-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 2em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.admin-panel-header h2 {
  font-family: "Playfair Display", serif;
  color: #5A1A2D;
  margin-bottom: 0.4em;
}

.admin-panel-header p {
  margin-bottom: 1.5em;
  color: #333;
}

.admin-card {
  margin-top: 2em;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.admin-card-head h3 {
  font-family: "Playfair Display", serif;
  color: #101010;
}

.admin-btn {
  width: auto;
  padding: 0.6em 1.2em;
  font-size: 0.95em;
}

.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  border: 1px solid #e8e0d5;
  padding: 0.75em;
  text-align: left;
  vertical-align: top;
  font-size: 0.92em;
}

.admin-table th {
  background: #f5f0ea;
  color: #5A1A2D;
}

.admin-status-select {
  padding: 0.45em;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
}

.admin-action-btn {
  border: none;
  border-radius: 6px;
  padding: 0.45em 0.75em;
  cursor: pointer;
  color: #fff;
  background: #5A1A2D;
}

.admin-delete-btn {
  background: #8e1f38;
}

@media (max-width: 900px) {
  .admin-section {
    padding: 8.5em 1.5em 4em;
  }

  .admin-panel {
    padding: 1.2em;
  }

  .admin-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .google-form-wrapper iframe {
    height: 1200px;
    min-height: 600px;
  }
}

@media (max-width: 480px) {
  .google-form-wrapper iframe {
    height: 1100px;
    min-height: 500px;
  }
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #5A1A2D;
  color: #F8F5EF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(90, 26, 45, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  background: #4A1525;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(90, 26, 45, 0.5);
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-width: calc(100vw - 60px);
  height: 600px;
  max-height: calc(100vh - 150px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateY(100px) scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.chatbot-container.chatbot-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: #5A1A2D;
  color: #F8F5EF;
  padding: 1em;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 1.2em;
  font-family: "Playfair Display", serif;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5em;
  background: #f8f9fb;
}

.chatbot-message {
  margin-bottom: 1em;
  padding: 0.8em 1em;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
  line-height: 1.5;
}

.chatbot-message-user {
  background: #5A1A2D;
  color: #F8F5EF;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chatbot-message-bot {
  background: white;
  color: #101010;
  border: 1px solid #e8e0d5;
  border-bottom-left-radius: 4px;
}

.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 1em;
}

.chatbot-typing span {
  width: 8px;
  height: 8px;
  background: #5A1A2D;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chatbot-input-container {
  display: flex;
  padding: 1em;
  background: white;
  border-top: 1px solid #e0e0e0;
  gap: 0.5em;
}

.chatbot-input {
  flex: 1;
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
}

.chatbot-input:focus {
  outline: none;
  border-color: #5A1A2D;
  box-shadow: 0 0 0 3px rgba(90, 26, 45, 0.1);
}

.chatbot-send {
  padding: 0.8em 1.5em;
  background: #5A1A2D;
  color: #F8F5EF;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.chatbot-send:hover {
  background: #4A1525;
  transform: translateY(-1px);
}

.chatbot-disclaimer {
  padding: 0.8em 1em;
  background: #fff3cd;
  color: #856404;
  font-size: 0.75em;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  line-height: 1.4;
}

/* ===== RESPONSIVE DESIGN ENHANCEMENTS ===== */
@media (max-width: 968px) {
  .header-wrapper {
    flex-wrap: wrap;
    gap: 1.5em;
  }

  .header-right {
    gap: 1.5em;
  }

  nav ul {
    gap: 1.5em;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-img {
    width:60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }

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

  .header-wrapper {
    flex-wrap: wrap;
    padding: 1em 1.5em;
    gap: 1em;
  }

  .logo-container {
    flex: 1;
    min-width: 0;
  }

  .header-right {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .header-right.menu-open {
    max-height: 500px;
    padding: 1.5em 0 0;
  }

  nav {
    width: 100%;
    order: 1;
    margin-bottom: 1em;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5em;
    align-items: stretch;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.8em 1em;
    font-size: 1em;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  nav a:hover,
  nav a.active {
    background: rgba(255, 255, 255, 0.1);
  }

  .language-switcher {
    order: 2;
    width: 100%;
  }

  .language-switcher select {
    width: 100%;
  }

  .logo-text {
    font-size: 1.1rem;
    white-space: normal;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 1.5em;
  }

  .hero-content h2 {
    font-size: 2em;
    margin-bottom: 1em;
  }

  .hero-content .btn {
    font-size: 1em;
    padding: 0.9em 2em;
  }

  .intro {
    padding: 3em 1.5em;
  }

  .intro h3 {
    font-size: 1.8em;
  }

  .intro p {
    font-size: 1em;
  }

  .section-divider {
    height: 60px;
  }

  .testimonials {
    padding: 60px 1.5em 4em;
  }

  .decorative-bar {
    width: 45px;
    height: 2.5px;
    margin-bottom: 1.5em;
  }

  .testimonials-title {
    font-size: 1.8em;
    margin-bottom: 2em;
  }

  .testimonials-slider-wrapper {
    gap: 0.5em;
    padding: 0;
  }

  .testimonial-card {
    padding: 0 0.5em;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
    font-size: 1.5em;
    flex-shrink: 0;
  }

  .testimonial-content {
    padding: 2em 1.5em;
    border-radius: 12px;
  }

  .testimonial-text {
    font-size: 1em;
    line-height: 1.7;
  }

  .testimonial-author {
    font-size: 1em;
  }

  .testimonials-dots {
    gap: 0.6em;
    margin-top: 2em;
    flex-wrap: wrap;
  }

  .testimonials-dots .dot {
    width: 11px;
    height: 11px;
  }

  .chatbot-container {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 80px;
    height: calc(100vh - 120px);
  }

  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .booking-form {
    padding: 1.5em;
  }

  .booking-form h3 {
    font-size: 1.5em;
  }

  .google-form-section {
    padding: 3em 1.5em 4em;
  }

  .google-form-wrapper {
    padding: 1.5em;
  }

  .about-page {
    flex-direction: column;
    padding: 8.5em 1.5em 4em;
    gap: 2em;
  }

  .about-text h3 {
    font-size: 1.8em;
  }

  .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    max-width: 100%;
    width: 100%;
    max-width: 350px;
  }

  .contact-info {
    flex-direction: column;
    padding: 8.5em 1.5em 4em;
    gap: 2em;
  }

  .contact-details h3 {
    font-size: 1.8em;
  }

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

  .services {
    padding: 8.5em 1.5em 4em;
  }

  .services h3 {
    font-size: 2em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .service-card {
    padding: 2em;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
    padding: 0.8em 1em;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 1em;
  }

  .hero-content h2 {
    font-size: 1.6em;
    margin-bottom: 0.8em;
  }

  .hero-content .btn {
    font-size: 0.9em;
    padding: 0.8em 1.8em;
  }

  .page-header {
    padding: 6em 1em 2em;
    min-height: 25vh;
  }

  .page-header h2 {
    font-size: 1.8em;
  }

  .intro {
    padding: 2.5em 1em;
  }

  .intro h3 {
    font-size: 1.6em;
    margin-bottom: 0.8em;
  }

  .intro p {
    font-size: 0.95em;
    margin-bottom: 1.5em;
  }

  .intro .btn {
    font-size: 0.9em;
    padding: 0.7em 1.8em;
  }

  .section-divider {
    height: 50px;
  }

  .testimonials {
    padding: 40px 1em 3em;
  }

  .decorative-bar {
    width: 40px;
    height: 2px;
    margin-bottom: 1.2em;
  }

  .testimonials-title {
    font-size: 1.6em;
    margin-bottom: 1.5em;
    line-height: 1.3;
  }

  .testimonials-slider-wrapper {
    gap: 0.3em;
    padding: 0;
    position: relative;
  }

  .testimonial-card {
    padding: 0 0.3em;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    flex-shrink: 0;
  }

  /* Hide navigation arrows on very small screens, rely on swipe and dots */
  @media (max-width: 360px) {
    .testimonial-nav {
      display: none;
    }

    .testimonials-slider-wrapper {
      gap: 0;
    }

    .testimonial-content {
      padding: 1.5em 1em;
    }

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

  .testimonial-content {
    padding: 1.8em 1.2em;
    border-radius: 10px;
    border-top-width: 3px;
  }

  .testimonial-text {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 1.2em;
  }

  .testimonial-author {
    font-size: 0.95em;
  }

  .testimonials-dots {
    gap: 0.5em;
    margin-top: 1.8em;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .booking-section {
    padding: 2em 1em;
  }

  .booking-form {
    padding: 1.5em 1em;
  }

  .booking-form h3 {
    font-size: 1.4em;
  }

  .google-form-section {
    padding: 2em 1em 3em;
  }

  .google-form-wrapper {
    padding: 1em;
    border-radius: 12px;
  }

  .about-page {
    padding: 7em 1em 3em;
  }

  .about-text h3 {
    font-size: 1.6em;
  }

  .about-text p {
    font-size: 0.95em;
  }

  .about-image img {
    max-width: 100%;
    max-width: 300px;
  }

  .contact-info {
    padding: 7em 1em 3em;
  }

  .contact-details h3 {
    font-size: 1.6em;
  }

  .contact-details p {
    font-size: 0.95em;
  }

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

  .services {
    padding: 7em 1em 3em;
  }

  .services h3 {
    font-size: 1.8em;
  }

  .services-intro {
    font-size: 0.95em;
  }

  .service-card {
    padding: 1.5em;
  }

  .service-card h4 {
    font-size: 1.2em;
  }

  .service-card p {
    font-size: 0.95em;
  }

  .expertise-list li {
    font-size: 0.95em;
    padding-left: 1.3em;
  }

  .expertise-list li::before {
    left: 0.2em;
    font-size: 0.85em;
  }

  .expertise-label {
    font-size: 1em;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5em;
  }

  .footer-left h3 {
    font-size: 1.2em;
  }
}
/* ===== Honeypot spam-trap field (invisible to real users) ===== */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ===== Admin login page ===== */
.admin-login-section {
  display: flex;
  justify-content: center;
  padding: 4em 1em;
  min-height: 60vh;
  align-items: center;
}

.admin-login-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5em;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.admin-login-card h2 {
  font-family: "Playfair Display", serif;
  color: #5A1A2D;
  margin-bottom: 0.3em;
}

.admin-login-card p {
  color: #555;
  margin-bottom: 1.5em;
  font-size: 0.95rem;
}

/* ===== Admin logout button ===== */
.admin-logout-btn {
  margin-top: 1em;
  background-color: transparent;
  color: #5A1A2D;
  border: 2px solid #5A1A2D;
}

.admin-logout-btn:hover {
  background-color: #5A1A2D;
  color: #F8F5EF;
}
