/* ============================================
   Moments To Cherish By Touch Of Class
   Premium Venue Website Stylesheet
   ============================================ */

/* === CSS Variables / Color System === */
:root {
  /* Primary - Deep Gold/Champagne */
  --primary-50: #fbf7f0;
  --primary-100: #f5e9d4;
  --primary-200: #e8d0a8;
  --primary-300: #d4b478;
  --primary-400: #c69d52;
  --primary-500: #b8863c;
  --primary-600: #a3732f;
  --primary-700: #855c27;
  --primary-800: #6b4a23;
  --primary-900: #593d20;

  /* Secondary - Deep Navy */
  --secondary-50: #f0f3f8;
  --secondary-100: #d9e0ed;
  --secondary-200: #b3c2dc;
  --secondary-300: #8499c5;
  --secondary-400: #5770a8;
  --secondary-500: #3a5188;
  --secondary-600: #2c3e6e;
  --secondary-700: #232f57;
  --secondary-800: #1a2342;
  --secondary-900: #121a33;

  /* Accent - Rose */
  --accent-50: #fdf2f4;
  --accent-100: #fce6ea;
  --accent-200: #f9ccd5;
  --accent-300: #f3a5b5;
  --accent-400: #e97088;
  --accent-500: #db4d6a;
  --accent-600: #c53653;
  --accent-700: #a32844;

  /* Success */
  --success-50: #f0fdf4;
  --success-100: #dcfce7;
  --success-500: #22c55e;
  --success-600: #16a34a;

  /* Warning */
  --warning-50: #fffbeb;
  --warning-100: #fef3c7;
  --warning-500: #f59e0b;

  /* Error */
  --error-50: #fef2f2;
  --error-100: #fee2e2;
  --error-500: #ef4444;

  /* Neutrals */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Fonts */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 120px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(184, 134, 60, 0.25);
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--neutral-700);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--neutral-50);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* === Section Common === */
/*section {
  padding: var(--space-8) 0;
}*/

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary-500);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary-800);
  margin-bottom: var(--space-2);
}

.section-desc {
  font-size: 17px;
  color: var(--neutral-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-500);
  margin: var(--space-2) auto 0;
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 134, 60, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* === Top Bar === */
.top-bar {
  background: var(--secondary-900);
  color: var(--neutral-300);
  font-size: 13px;
  padding: 10px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.top-bar a {
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--primary-300);
}

.top-bar i {
  color: var(--primary-400);
  margin-right: 6px;
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, var(--primary-400), var(--primary-600));*/
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-line1 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-800);
}

.logo-line2 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-500);
}

.nav-list {
  display: flex;
  gap: var(--space-3);
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--neutral-700);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-600);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--secondary-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--neutral-700);
}

/* === Hero Slider === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 26, 51, 0.7), rgba(18, 26, 51, 0.4));
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 var(--space-3);
}

.slide-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-300);
  margin-bottom: var(--space-2);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-2);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-desc {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: var(--space-4);
  opacity: 0.95;
}

.slide-btns {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* Slide animation */
.slide.active [data-anim="fade-up"] {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}

.slide.active [data-anim="fade-up"][data-delay="200"] { animation-delay: 0.2s; }
.slide.active [data-anim="fade-up"][data-delay="400"] { animation-delay: 0.4s; }
.slide.active [data-anim="fade-up"][data-delay="600"] { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 18px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-arrow:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: translateY(-50%) scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--primary-400);
  border-color: var(--primary-300);
  width: 32px;
  border-radius: 6px;
}

/* === Quick Info Bar === */
.quick-info {
  background: var(--secondary-800);
  padding: var(--space-4) 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--neutral-200);
}

.quick-info-item i {
  font-size: 32px;
  color: var(--primary-400);
  flex-shrink: 0;
}

.quick-info-item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.quick-info-item p {
  font-size: 13px;
  color: var(--neutral-400);
}

/* === About === */
.about {
  background: var(--neutral-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: var(--space-5);
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.3;
}

.about-content .section-label {
  padding-left: 40px;
}

.about-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
  font-style: italic;
}

.about-content p {
  margin-bottom: var(--space-2);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin: var(--space-3) 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--neutral-700);
}

.about-feature i {
  color: var(--success-500);
  font-size: 18px;
  flex-shrink: 0;
}

/* === Services === */
.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  background: var(--neutral-50);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 134, 60, 0.85), rgba(165, 86, 42, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition);
  transform: scale(0.8);
}

.service-card:hover .service-btn {
  transform: scale(1);
}

.service-btn:hover {
  background: var(--secondary-800);
  color: #fff;
}

.service-body {
  padding: var(--space-3);
  text-align: center;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: -52px auto var(--space-2);
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: var(--space-1);
}

.service-body p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* === Gallery === */
.gallery {
  background: var(--neutral-50);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  border: 5px solid var(--neutral-300);
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  transition: all var(--transition);
}

.gallery-filter:hover, .gallery-filter.active {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 26, 51, 0.8), rgba(184, 134, 60, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover-inner {
  text-align: center;
  color: #fff;
  transform: scale(0.8);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-hover-inner {
  transform: scale(1);
}

.gallery-hover-inner i {
  font-size: 32px;
  margin-bottom: var(--space-1);
  display: block;
}

.gallery-hover-inner span {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: 80%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close, .lightbox-arrow {
  position: absolute;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-arrow:hover {
  background: var(--primary-500);
}

/* === Why Us === */
.why-us {
  background: var(--secondary-900);
  color: var(--neutral-200);
  position: relative;
}

.why-us .section-title {
  color: #fff;
}

.why-us .section-header .section-label {
  color: var(--primary-400);
}

.why-us .section-header .section-label::after {
  background: var(--primary-400);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.why-card {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(184, 134, 60, 0.1);
  border-color: rgba(184, 134, 60, 0.3);
  transform: translateY(-6px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-2);
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(360deg);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-1);
}

.why-card p {
  font-size: 14px;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* === FAQ === */
.faq {
  background: var(--neutral-50);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-6);
  align-items: start;
}

.faq-left p {
  margin: var(--space-2) 0 var(--space-3);
  color: var(--neutral-500);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-800);
  text-align: left;
  transition: color var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary-600);
}

.faq-icon {
  font-size: 16px;
  color: var(--primary-500);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-2);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-3);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-3) var(--space-3);
}

.faq-answer p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* === Clients === */
.clients {
  background: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.client-card {
  padding: var(--space-4);
  background: var(--neutral-50);
  border-radius: 4px;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
}

.client-card:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.client-stars {
  color: var(--primary-400);
  font-size: 16px;
  margin-bottom: var(--space-2);
  display: flex;
  gap: 4px;
}

.client-text {
  font-size: 15px;
  color: var(--neutral-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.client-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.client-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-800);
}

.client-info span {
  font-size: 13px;
  color: var(--neutral-500);
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--neutral-200);
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-400);
  transition: color var(--transition);
}

.client-logo:hover {
  color: var(--primary-500);
}

.client-logo i {
  font-size: 24px;
}

/* === Contact === */
.contact {
  background: var(--neutral-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
}

.contact-info p {
  margin: var(--space-2) 0 var(--space-3);
  color: var(--neutral-500);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.contact-detail {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--neutral-500);
  margin: 0;
  line-height: 1.6;
}

.contact-detail a {
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--primary-600);
}

.contact-socials {
  display: flex;
  gap: var(--space-1);
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}

.contact-socials a:hover {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  transform: translateY(-4px);
}

/* === Contact Form === */
.contact-form-wrap {
  background: #fff;
  border-radius: 4px;
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: var(--space-3);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-group {
  margin-bottom: var(--space-2);
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-800);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--neutral-400);
  font-size: 15px;
  pointer-events: none;
  transition: color var(--transition);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 2px solid var(--neutral-200);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--neutral-700);
  background: var(--neutral-50);
  transition: all var(--transition);
}

.input-wrap select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23737373' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--primary-400);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 134, 60, 0.1);
}

.input-wrap input:focus + i,
.input-wrap:focus-within > i {
  color: var(--primary-500);
}

.input-wrap-textarea {
  align-items: flex-start;
}

.input-wrap-textarea > i {
  top: 14px;
}

.input-wrap textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--error-500);
  margin-top: 4px;
  min-height: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

.form-submit.loading .form-submit-text {
  opacity: 0.5;
}

.form-submit i {
  transition: transform var(--transition);
}

.form-submit:hover i {
  transform: translateX(4px);
}

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  margin-top: var(--space-2);
  background: var(--success-50);
  border: 1px solid var(--success-100);
  border-radius: 4px;
  color: var(--success-600);
}

.form-success.active {
  display: flex;
  animation: fadeUp 0.5s ease;
}

.form-success i {
  font-size: 28px;
}

.form-success p {
  font-size: 14px;
  margin: 0;
}

.input-wrap.invalid input,
.input-wrap.invalid select,
.input-wrap.invalid textarea {
  border-color: var(--error-500);
}

/* === Map === */
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.1);
}

/* === Footer === */
.footer {
  background: var(--secondary-900);
  color: var(--neutral-400);
  padding-top: var(--space-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
}

.footer-logo .logo-line1 {
  color: #fff;
}

.footer-col > p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-2);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-400);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--neutral-400);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--primary-400);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-400);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: var(--space-2);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-3) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--neutral-500);
}

/* === Floating Action Buttons === */
.fab-btn {
  position: fixed;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  animation: fabPulse 2s ease infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.fab-call {
  bottom: 100px;
  right: 24px;
  background: linear-gradient(135deg, var(--secondary-500), var(--secondary-700));
}

.fab-call:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  bottom: 30px;
  right: 24px;
  background: #25d366;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  background: #1da851;
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-500);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-600);
  transform: translateY(-4px);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slide-title {
    font-size: 56px;
  }
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    z-index: 1100;
    padding: 60px var(--space-3) var(--space-3);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--neutral-200);
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-close {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-book {
    display: none;
  }

  .hero {
    height: 90vh;
    min-height: 500px;
  }

  .slide-title {
    font-size: 40px;
  }

  .slide-desc {
    font-size: 16px;
  }

  .slide-btns {
    flex-direction: column;
    align-items: center;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }

  .quick-info-item i {
    font-size: 24px;
  }

  .about-grid,
  .faq-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-img-sub {
    width: 140px;
    height: 140px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid,
  .clients-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .section-title {
    font-size: 30px;
  }

  .contact-form-wrap {
    padding: var(--space-3);
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-img {
    max-width: 92%;
  }
}

@media (max-width: 480px) {
  .quick-info-grid,
  .services-grid,
  .why-grid,
  .clients-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-badge {
    width: 80px;
    height: 80px;
  }

  .about-badge-num {
    font-size: 22px;
  }

  .contact-form-wrap {
    padding: var(--space-2);
  }

  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
  }
}
