/* ============================================================
   5 Star Event Management — style.css
   All styles for the website in one clean file
   ============================================================ */

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

:root {
  --primary: #993A87;
  --primary-dark: #7a2d6b;
}

html,
body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

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

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 48px;
  object-fit: contain;
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

header.scrolled .nav-link {
  color: #374151;
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
  color: var(--primary);
}

header.scrolled .nav-link.active::after {
  background: var(--primary);
}

/* ── DROPDOWN ── */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: #fdf7fc;
  color: var(--primary);
}

/* ── NESTED DROPDOWN ── */
.dropdown-submenu {
  position: relative;
}

.dropdown-menu-nested {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 101;
}

.dropdown-submenu:hover .dropdown-menu-nested {
  display: block;
}

.dropdown-menu-nested a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu-nested a:hover {
  background: #fdf7fc;
  color: var(--primary);
}

/* ── CTA BUTTON ── */
.btn-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(153, 58, 135, 0.4);
}

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

/* ── MOBILE HAMBURGER ── */
#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

header.scrolled #mobile-menu-btn {
  color: #374151;
}

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow-y: auto;
}

#mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
}

.mobile-link:first-child {
  color: var(--primary);
}

/* ── MOBILE DROPDOWN ── */
.mobile-dropdown {
  border-bottom: 1px solid #f3f4f6;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s;
}

.mobile-dropdown.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  background: #f9fafb;
  border-left: 3px solid var(--primary);
  margin-left: 24px;
}

.mobile-dropdown.open .mobile-submenu {
  display: block;
}

.mobile-sublink {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-sublink:last-child {
  border-bottom: none;
}

.mobile-sublink:hover {
  color: var(--primary);
  padding-left: 24px;
}

/* ── HERO ── */
#home {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  text-align: center;
}

.hero-label {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #93c5fd;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: #93c5fd;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(153, 58, 135, 0.45);
}

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

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 10px 18px;
}

.hero-rating .stars {
  color: #f59e0b;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.hero-rating span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── STATS ── */
#stats {
  position: relative;
  z-index: 10;
  margin: -56px auto 0;
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid #f3f4f6;
  padding: 36px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #f3f4f6;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.stat-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* ── VIDEO SECTION ── */
.video-section {
  padding: 64px 24px;
  background: #f9fafb;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.video-wrapper:hover img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.video-wrapper:hover .play-btn {
  background: rgba(0, 0, 0, 0.15);
}

.play-circle {
  width: 80px;
  height: 80px;
  background: rgba(153, 58, 135, 0.9);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 0 40px rgba(153, 58, 135, 0.6);
  transition: transform 0.3s;
}

.video-wrapper:hover .play-circle {
  transform: scale(1.1);
}

/* ── ABOUT ── */
.about-section {
  padding: 100px 24px;
  background: #fff;
}

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

.about-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.about-text {
  flex: 1;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.about-images img:nth-child(2),
.about-images img:nth-child(4) {
  margin-top: 24px;
}

.about-images img:hover {
  transform: scale(1.03);
}

/* ── DESTINATION / VENUES ── */
.destination-section {
  padding: 96px 24px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45));
}

.destination-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.destination-content p.label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.destination-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.destination-content p.desc {
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  background: #22c55e;
  color: #fff;
  padding: 13px 30px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* ── SERVICES ── */
.services-section {
  padding: 100px 24px;
  background: #f9fafb;
}

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

.section-intro {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 260px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.service-icon {
  color: #e879f9;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.service-caption h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0;
}

.service-caption p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px 24px;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stars-row {
  display: inline-flex;
  gap: 2px;
  background: #fefce8;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.stars-row i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.testimonial-card p {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 2px solid rgba(153, 58, 135, 0.2);
}

.reviewer-info p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: #9ca3af;
}

.google-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
}

/* ── AWARDS ── */
.awards-section {
  padding: 80px 24px;
  background: #fff;
}

.awards-box {
  background: #f9fafb;
  border-radius: 20px;
  padding: 48px;
}

.awards-box p {
  color: #6b7280;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.awards-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.awards-grid img:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 24px;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  border: none;
  text-align: left;
  gap: 12px;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 14px 20px;
}

.faq-item.open .faq-question {
  background: var(--primary);
  color: #fff;
}

.faq-item.open .faq-icon {
  color: #fff;
  transform: rotate(45deg);
}

/* ── MAP ── */
.map-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.map-box {
  width: 100%;
  max-width: 1100px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── CONTACT ── */
.contact-section {
  padding: 80px 24px;
  background: var(--primary);
}

.contact-grid {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-text {
  flex: 1;
  color: #fff;
}

.contact-text .label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: #fff;
}

.icon-circle {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.contact-form-box {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}

.form-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
  background: #fff;
}

.form-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(153, 58, 135, 0.12);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* footer */
footer {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  background-color: #0d1b2a;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('YOUR_BACKGROUND_IMAGE_URL_HERE');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.25);
  z-index: 0;
}

footer>* {
  position: relative;
  z-index: 1;
}

/* ── Main 3-column grid ── */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 48px;
  gap: 40px;
}

/* ── Left: Brand ── */
.footer-brand {
  flex: 0 0 320px;
  max-width: 320px;
}

.footer-brand img {
  display: block;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0 0 24px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: background .2s, color .2s, border-color .2s;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.40);
}

/* ── Middle: Quick Links ── */
.footer-col {
  flex: 1;
}

.footer-col h6 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* ── Right: Contact Info ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.60);
  font-size: 13.5px;
  line-height: 1.55;
}

.footer-contact-row i {
  color: #a78bfa;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-row a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-row a:hover {
  color: #fff;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin: 0 60px;
  position: relative;
  z-index: 1;
}

/* ── Copyright bar ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 18px 60px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.40);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    padding: 40px 24px 32px;
  }

  .footer-brand {
    flex: none;
    max-width: 100%;
  }

  .footer-divider {
    margin: 0 24px;
  }

  .footer-bottom {
    padding: 18px 24px;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  nav.desktop-nav,
  .btn-cta {
    display: none;
  }

  #mobile-menu-btn {
    display: block;
  }

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

  .stat-item::before {
    display: none;
  }

  #stats {
    margin: -20px 16px 0;
  }

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

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 30px;
    margin: 0 -24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 24px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    display: grid;
  }

  .awards-grid img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

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

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

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
    max-width: 400px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-contact-row {
    justify-content: flex-start;
  }

  .footer-bar-contact {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-brand-center img {
    height: 48px;
  }

  /* Hero banner fix for all pages */
  .hero-content {
    padding: 0 20px;
    top: 55% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }

  .hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  /* Testimonial Mobile Fix */
  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    width: 100%;
  }

  .reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .reviewer-info {
    flex: 1;
    min-width: 0;
  }

  .reviewer-info p {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reviewer-info span {
    font-size: 0.75rem;
    color: #9ca3af;
  }

  .google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 8px;
  }
}

/* ── LIGHTBOX MODAL ── */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
  animation: fadeIn 0.4s ease-out;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10002;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background 0.2s;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── MASONRY GALLERY ── */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
  width: 100%;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  background: #f1f1f1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item {
  animation: fadeIn 0.5s ease-out backwards;
}

.gallery-item:nth-child(2n) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(3n) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(4n) {
  animation-delay: 0.3s;
}

/* contact page */
/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 2.2rem;
  color: #065f46;
  margin-bottom: 15px;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.info-item i {
  background: #10b981;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
}

/* FORM */
.contact-form-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeUp 1s ease;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #10b981, #059669);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px 24px;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stars-row {
  display: inline-flex;
  gap: 2px;
  background: #fefce8;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.stars-row i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.testimonial-card p {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

.reviewer img {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 2px solid rgba(153, 58, 135, 0.2);
}

.reviewer-info p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: #9ca3af;
}

.google-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

