/* ===========================
   ROOT & RESET
=========================== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7a2e;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #3a3a3a;
  --green: #2d5a27;
  --green-light: #4a8f41;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text: #444444;
  --text-light: #777777;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

/* ===========================
   SECTION COMMONS
=========================== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 18px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light .section-tag {
  color: var(--gold-light);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px;
}

.divider span {
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--gold);
}

.divider i {
  color: var(--gold);
  font-size: 1rem;
}

.divider.light span {
  background: var(--gold-light);
}
.divider.light i {
  color: var(--gold-light);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===========================
   POPUP FORM
=========================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-overlay.show .popup-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.popup-card {
  width: min(460px, 96vw);
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  position: relative;
  border-top: 5px solid #8b3777;
  transform: scale(0.88) translateY(30px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.popup-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: #8b3777;
  color: #fff;
}

.popup-tag {
  color: #8b3777;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.popup-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #222;
}

.popup-form .form-control {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: "Lato", sans-serif;
  outline: none;
}

.popup-form .form-control:focus {
  border-color: #8b3777;
  box-shadow: 0 0 0 3px rgba(139, 55, 119, 0.15);
}

.popup-submit {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 2px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.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);
}

/* ===========================
   BANNER SLIDER
=========================== */
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #1a1a1a;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background: #1a1a1a;
}

/* --- individual slide --- */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* gradient fallbacks if online images fail to load */
.slide:nth-child(1) {
  background-color: #1a2e1a;
  background-image:
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1920&q=80"),
    linear-gradient(135deg, #1a2e1a 0%, #2d5a27 50%, #1a1a1a 100%);
}
.slide:nth-child(2) {
  background-color: #1a1a2e;
  background-image:
    url("https://images.unsplash.com/photo-1583939003579-730e3918a45a?auto=format&fit=crop&w=1920&q=80"),
    linear-gradient(135deg, #1a1a2e 0%, #2a3a6e 50%, #1a1a1a 100%);
}
.slide:nth-child(3) {
  background-color: #2e1a1a;
  background-image:
    url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=1920&q=80"),
    linear-gradient(135deg, #2e1a1a 0%, #7a2a2a 50%, #1a1a1a 100%);
}
.slide:nth-child(4) {
  background-color: #1a2a2e;
  background-image:
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80"),
    linear-gradient(135deg, #1a2a2e 0%, #2a6a7a 50%, #1a1a1a 100%);
}
.slide:nth-child(5) {
  background-color: #2e2a1a;
  background-image:
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1920&q=80"),
    linear-gradient(135deg, #2e2a1a 0%, #7a6a1a 50%, #1a1a1a 100%);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  transform: scale(0.96);
  z-index: 1;
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- overlay --- */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* --- slide content --- */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: var(--white);
}

.slide-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.3s,
    transform 0.6s ease 0.3s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--white);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease 0.45s,
    transform 0.65s ease 0.45s;
}

.slide.active .slide-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 560px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease 0.6s,
    transform 0.65s ease 0.6s;
}

.slide.active .slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.slide-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease 0.75s,
    transform 0.65s ease 0.75s;
}

.slide.active .slide-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* --- prev / next buttons --- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}

/* --- dots --- */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.6);
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

/* --- progress bar --- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width linear;
}

/* --- scroll hint --- */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* responsive */
@media (max-width: 600px) {
  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .slider-prev {
    left: 12px;
  }
  .slider-next {
    right: 12px;
  }
  .slider-dots {
    bottom: 72px;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===========================
   ABOUT
=========================== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--gold);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.image-placeholder i {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
}

.image-placeholder p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  border: 3px solid var(--white);
}

.about-badge i {
  font-size: 1.5rem;
}
.about-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}

.about-intro {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 16px;
  font-style: italic;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.feature-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===========================
   SERVICES
=========================== */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  position: relative;
  border: 1px solid #ece8df;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

/* image container */
.service-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* gold bar revealed on hover */
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(158, 122, 46, 0.55) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-img::after {
  opacity: 1;
}

/* text area */
.service-body {
  padding: 24px 26px 28px;
  position: relative;
}

.service-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover .service-body::before {
  transform: scaleX(1);
}

.service-body h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.svc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.svc-call {
  background: linear-gradient(135deg, #25d366, #128c50);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}

.svc-call:hover {
  background: linear-gradient(135deg, #2edb6e, #1aaa5e);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.svc-enquire {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.svc-enquire:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-us {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(201, 168, 76, 0.07) 1px,
    transparent 0
  );
  background-size: 36px 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.why-card > i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-item {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.05) 70%
  );
  opacity: 0;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 30px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.contact-detail a,
.contact-detail p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--gold-dark);
}

/* FORM */
.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group label {
  display: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select option {
  color: var(--dark);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(74, 143, 65, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(74, 143, 65, 0.3);
}

.form-success.show {
  display: flex;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-services ul li {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.7);
}

/* ===========================
   FLOATING CONTACT ICONS
=========================== */
.floating-actions {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
  transition: var(--transition);
}

.float-action-call {
  background: linear-gradient(135deg, #1f9d58, #157347);
}

.float-action-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c50);
}

.float-action:hover {
  transform: translateY(-4px) scale(1.06);
}

.float-action-call:hover {
  box-shadow: 0 12px 30px rgba(21, 115, 71, 0.45);
}

.float-action-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.48);
}

@media (max-width: 480px) {
  .floating-actions {
    right: 20px;
    bottom: 88px;
    gap: 10px;
  }

  .float-action {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-badge {
    right: 0;
    bottom: -10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .popup-card {
    padding: 22px 16px;
  }

  .popup-card h3 {
    font-size: 1.35rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
