/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a30;
  --cream: #fdf6ec;
  --white: #ffffff;
  --dark: #1a1a1a;
  --dark-soft: #2c2c2c;
  --burgundy: #6b1f2a;
  --text-muted: #888888;
  --section-bg: #fafafa;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", "Segoe UI", sans-serif;
  --transition: all 0.35s ease;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(107, 31, 42, 0.5) 50%,
      rgba(26, 26, 26, 0.8) 100%
    ),
    url("images/hero-bg.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.5);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s 0.15s ease both;
}

.hero-title .gold {
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.25s ease both;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  animation: fadeInUp 0.9s 0.35s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.45s ease both;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-item {
  flex: 1;
  max-width: 200px;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

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

.section-center .section-subtitle {
  margin: 0 auto;
}

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

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px 60px 4px 60px;
  box-shadow: var(--shadow);
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-image-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-image-badge .badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-image-badge .badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content .section-subtitle {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--dark);
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-quote {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 2rem;
  position: relative;
}

.about-quote::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
  opacity: 0.25;
  line-height: 1;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.13),
    var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Image wrapper */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(201, 168, 76, 0.18) 100%
  );
  transition: var(--transition);
}

.service-card:hover .service-img-overlay {
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(26, 26, 26, 0.35) 100%
  );
}

/* Gold top bar on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  z-index: 2;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Card text body */
.service-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.55rem;
  transition: color 0.25s;
}

.service-card:hover .service-card-body h3 {
  color: var(--gold-dark);
}

.service-card-body p {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Service card action buttons */
.service-card-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.svc-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.svc-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.3);
}

.svc-btn-call:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

.svc-btn-enquire {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.svc-btn-enquire:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

/* ===== VISION MISSION ===== */
.vision-mission {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(107, 31, 42, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.vm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: var(--transition);
}

.vm-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
}

.vm-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vm-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.85;
}

.vm-tagline {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.vm-tagline p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  padding: 2rem 3rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.05);
  display: inline-block;
  max-width: 720px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--section-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.18),
    var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: var(--white);
  font-size: 2.2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item--video {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c1a0e 60%, #1a1a1a 100%);
}

.gallery-video-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gold-light);
}

.gallery-video-thumb i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.gallery-video-thumb span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gallery-item--video:hover .gallery-video-thumb i {
  transform: scale(1.15);
}

.gallery-item--video .gallery-overlay {
  font-size: 2.5rem;
  background: rgba(26, 26, 26, 0.65);
}

.gallery-item.hidden {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  outline: none;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--dark-soft);
  margin: 0;
  transition: color 0.2s;
}

.contact-detail-text a:hover {
  color: var(--gold-dark);
}

/* Contact action buttons */
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: #25d366;
  color: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* Map embed */
.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-open-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.map-open-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-brand .brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a i {
  font-size: 0.8rem;
  color: var(--gold);
  width: 14px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #1aaf55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: var(--transition);
  text-decoration: none;
}

.float-call::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: call-ripple 2s ease-out infinite;
}

.float-call::after {
  content: "Call Now";
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

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

.float-call:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes call-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ===== FLOATING ENQUIRE BUTTON ===== */
.float-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.65rem;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(135deg, #c9a84c, #c9a84c);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(139, 55, 119, 0.35);
  transform: translateY(-50%);
  transition: var(--transition);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.float-enquire:hover {
  background: linear-gradient(135deg, #a84891, #8b3777);
  transform: translateY(-50%) translateX(-4px);
}

.float-enquire i {
  font-size: 1rem;
  writing-mode: horizontal-tb;
}

/* ===== ENQUIRY POPUP ===== */
.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(26, 26, 26, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.enquiry-popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.enquiry-popup-card {
  position: relative;
  width: min(100%, 430px);
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.3s ease;
}

.enquiry-popup.open .enquiry-popup-card {
  transform: translateY(0) scale(1);
}

.enquiry-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f4edf2;
  color: #8b3777;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.enquiry-popup-close:hover {
  background: #8b3777;
  color: var(--white);
}

.enquiry-popup-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b3777;
}

.enquiry-popup h3 {
  margin-bottom: 0.45rem;
  padding-right: 2rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--dark);
}

.enquiry-popup p {
  margin-bottom: 1.25rem;
  color: #666;
  font-size: 0.94rem;
  line-height: 1.6;
}

.enquiry-popup .form-control {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(139, 55, 119, 0.24);
  border-radius: 6px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.enquiry-popup .form-control:focus {
  border-color: #8b3777;
  box-shadow: 0 0 0 3px rgba(139, 55, 119, 0.12);
}

.enquiry-popup .btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 990;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
  }
  .about-image-badge {
    left: 0.75rem;
    top: 1rem;
  }
  .about-image-accent {
    right: 0;
    bottom: -1rem;
    width: 160px;
    height: 160px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-wrap {
    height: 340px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.15rem;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hero-stats {
    display: none;
  }
  .hero {
    min-height: 100svh;
    min-height: 100vh;
  }
  .hero-content {
    width: 100%;
    padding: 1.5rem 1.25rem;
  }
  .hero-title {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }
  .hero-badge {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    white-space: normal;
  }
  .hero-desc {
    margin-bottom: 2rem;
  }
  .scroll-indicator {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .service-card {
    border-radius: 14px;
  }
  .service-card-body {
    padding: 1.25rem;
  }
  .service-card-actions,
  .contact-actions {
    flex-direction: column;
  }
  .svc-btn,
  .contact-actions .btn,
  .contact-actions .btn-whatsapp {
    width: 100%;
    max-width: none;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-card {
    padding: 1.5rem;
  }
  .vm-tagline p {
    padding: 1.25rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-image-main {
    height: 360px;
    border-radius: 4px 36px 4px 36px;
  }
  .about-image-badge {
    left: 0.5rem;
    top: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .about-image-accent {
    right: 0;
    bottom: -1rem;
    width: 150px;
    height: 150px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 2rem;
    margin-top: 2rem;
  }
  .contact-detail-text {
    min-width: 0;
  }
  .contact-detail-text a,
  .contact-detail-text p,
  .footer-col a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .contact-map-wrap {
    height: 280px;
    border-radius: 14px;
  }
  .map-open-btn {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 4rem 1.25rem;
  }
  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-prev {
    left: 0.75rem;
  }
  .lightbox-next {
    right: 0.75rem;
  }
  .lightbox-close {
    top: 0.85rem;
    right: 0.85rem;
  }
  .float-call {
    right: 1.25rem;
  }
  .float-enquire {
    top: 50%;
    right: 0;
    bottom: auto;
    border-radius: 8px 0 0 8px;
    padding: 0.85rem 0.55rem;
    transform: translateY(-50%);
  }
  .enquiry-popup-card {
    max-height: 90dvh;
    max-height: 90vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.85rem 1rem;
  }
  .nav-logo-main {
    font-size: 1.05rem;
  }
  .nav-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }
  .section {
    padding: 3.5rem 1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-content {
    padding-inline: 1rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.8rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  .service-img-wrap {
    height: 185px;
  }
  .about-image-main {
    height: 280px;
  }
  .about-image-accent {
    width: 110px;
    height: 110px;
    border-width: 4px;
    bottom: -0.75rem;
  }
  .about-image-badge {
    left: 0.5rem;
    top: 0.5rem;
    padding: 0.65rem 0.85rem;
  }
  .about-image-badge .badge-number {
    font-size: 1.5rem;
  }
  .about-image-wrap {
    padding-bottom: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .gallery-filters {
    gap: 0.5rem;
  }
  .gallery-filter {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
  }
  .contact-detail {
    gap: 0.75rem;
  }
  .contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .contact-map-wrap {
    height: 250px;
  }
  .float-call {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 5.25rem;
  }
  .float-enquire {
    padding: 0.75rem 0.48rem;
    font-size: 0.68rem;
  }
  .enquiry-popup-card {
    padding: 1.25rem;
    max-height: 85dvh;
    max-height: 85vh;
    overflow-y: auto;
  }
  .enquiry-popup h3 {
    font-size: 1.45rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
  .vm-tagline p {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 360px) {
  .nav-logo-main {
    font-size: 0.95rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .hero-badge {
    font-size: 0.62rem;
    padding: 0.4rem 0.65rem;
  }
  .service-img-wrap {
    height: 160px;
  }
  .about-image-main {
    height: 240px;
  }
  .about-image-accent {
    width: 90px;
    height: 90px;
  }
  .enquiry-popup-card {
    padding: 1rem;
  }
  .enquiry-popup h3 {
    font-size: 1.3rem;
  }
}
