/* ===========================
   HARMONY SPACES BY G — CSS
   =========================== */

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

:root {
  /* Logo-matched palette — warm champagne gold on near-black */
  --gold:    #c8a96b;   /* champagne gold matching the logo lettering */
  --gold-lt: #dfc27a;   /* lighter highlight */
  --gold-dk: #a8883a;   /* deeper accent for shadows */
  --dark:    #090909;   /* logo background black */
  --dark-2:  #0f0f0f;
  --dark-3:  #191919;
  --mid:     #272727;
  --light:   #f6f4f1;
  --white:   #ffffff;
  --text:    #2e2e2e;
  --muted:   #6e6e6e;
  --radius:  12px;
  --shadow:  0 20px 60px rgba(0,0,0,0.14);
  --trans:   all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  min-height: 48vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; padding-bottom: 4rem;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem; max-width: 1280px; margin: 0 auto; width: 100%;
}
.page-hero-content .breadcrumb {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem; letter-spacing: 0.06em;
}
.page-hero-content .breadcrumb a { color: var(--gold); }
.page-hero-content h1 { font-size: clamp(2.5rem,5vw,4rem); color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 0.75rem; max-width: 560px; line-height: 1.7; }

/* active nav link for inner pages */
.nav-active-page {
  color: var(--gold) !important;
}
.nav-active-page::after { transform: scaleX(1) !important; background: var(--gold) !important; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; transition: var(--trans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.45);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--gold-lt); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.section-dark  { background: var(--dark); }
.section-light { background: var(--light); }

/* ═══════════════════════
   NAVIGATION
═══════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0.5rem 2rem;
  min-height: 84px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.logo-sub   { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; }
.nav-links  { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em; transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: var(--dark) !important; padding: 0.55rem 1.4rem;
  border-radius: 50px; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 6px 20px rgba(201,168,76,0.4); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(16px);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu a {
  display: block; padding: 0.9rem 0;
  font-size: 1rem; color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════
   HERO / CAROUSEL
═══════════════════════ */
#hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }

.carousel, .carousel-track { width: 100%; height: 100%; }
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1); }

.slide {
  min-width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active img { transform: scale(1); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.2) 100%);
}

.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8% 0 8%;
  max-width: 700px;
  transform: translateY(30px); opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }

.slide-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--dark); padding: 0.35rem 1rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.25rem; width: fit-content;
}
.slide-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.slide-content h1 em { color: var(--gold-lt); font-style: italic; }
.slide-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 2.25rem; max-width: 480px;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Carousel controls */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); z-index: 20;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.prev { left: 2rem; }
.next { right: 2rem; }

/* Dots */
.carousel-dots {
  position: absolute; bottom: 9rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 20;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--trans); cursor: pointer;
}
.carousel-dot.active { width: 28px; border-radius: 4px; background: var(--gold); }

/* Progress */
.carousel-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 20;
}
.progress-fill {
  height: 100%; background: var(--gold);
  width: 0%; transition: width 0.1s linear;
}

/* Hero Stats */
.hero-stats {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 1px; z-index: 20;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; overflow: hidden;
  width: min(90%, 760px);
}
.stat-card {
  flex: 1; padding: 1.1rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-right: none; }
.stat-num  { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.stat-plus { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; letter-spacing: 0.04em; }

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-images { position: relative; padding-bottom: 4rem; }
.about-img-main {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; max-width: 420px;
  box-shadow: var(--shadow);
}
.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 55%; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; top: 2.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 16px; padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: 0 10px 30px rgba(201,168,76,0.4);
  z-index: 10;
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--dark); line-height: 1; }
.badge-text { font-size: 0.75rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-top: 0.25rem; display: block; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; line-height: 1.7; }
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.pillar p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ═══════════════════════
   SERVICES
═══════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--dark-3);
  transition: var(--trans);
  animation-delay: var(--delay, 0s);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.service-img { aspect-ratio: 16/9; overflow: hidden; }
.service-img img { transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 1.75rem; }
.service-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.service-body h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.75rem; }
.service-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; transition: gap 0.2s; }
.service-link:hover { color: var(--gold-lt); }

/* ═══════════════════════
   PROJECTS MASONRY
═══════════════════════ */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.project-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  animation-delay: var(--delay, 0s);
}
.project-item img { transition: transform 0.6s ease; }
.project-item:hover img { transform: scale(1.06); }
.project-item.large { grid-column: span 2; aspect-ratio: 16/10; }
.project-item.tall  { grid-row: span 2; aspect-ratio: 9/16; }
.project-item:not(.large):not(.tall) { aspect-ratio: 4/3; }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0; transition: opacity 0.4s;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.project-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.35rem; }
.project-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ═══════════════════════
   GALLERY
═══════════════════════ */
.gallery-filters {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid #ddd; color: var(--muted);
  transition: var(--trans); background: transparent;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span { color: var(--white); font-size: 0.82rem; font-weight: 500; }
.gallery-item.hidden { display: none; }

/* ═══════════════════════
   LIGHTBOX
═══════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  position: relative;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
  width: auto; height: auto;
}
.lightbox-caption {
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.85rem; margin-top: 1rem;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.7); font-size: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); z-index: 10;
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); font-size: 1.5rem;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); z-index: 10;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }

/* ═══════════════════════
   PROCESS
═══════════════════════ */
.process-steps {
  display: flex; gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2.2rem; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.step { flex: 1; padding: 0 1.5rem; text-align: center; position: relative; }
.step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  position: relative; z-index: 1;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.step-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.step-line { display: none; }

/* ═══════════════════════
   TESTIMONIALS
═══════════════════════ */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%; padding: 0 4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--white); line-height: 1.65;
  font-style: italic; max-width: 700px; margin-bottom: 2rem;
}
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); flex-shrink: 0; }
.reviewer img { width: 52px; height: 52px; object-fit: cover; }
.reviewer div { text-align: left; }
.reviewer strong { display: block; color: var(--white); font-size: 0.95rem; }
.reviewer span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  font-size: 1.1rem; transition: var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.t-btn:hover { background: var(--gold); color: var(--dark); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: var(--trans);
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════
   LOCATIONS
═══════════════════════ */
.locations-grid {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.location-card {
  background: var(--white); border: 1.5px solid #eee;
  border-radius: var(--radius); padding: 2rem 2.5rem;
  text-align: center; min-width: 160px;
  transition: var(--trans);
  animation-delay: var(--delay, 0s);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.location-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,168,76,0.15); }
.loc-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.location-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.location-card p { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 0.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 0.25rem; font-weight: 600; }
.contact-item a, .contact-item span {
  display: block; font-size: 0.9rem;
  color: rgba(255,255,255,0.6); transition: color 0.25s;
}
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white); border-radius: 20px;
  padding: 2.75rem; box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid #e0dbd5; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: var(--light); transition: border-color 0.25s, box-shadow 0.25s;
  outline: 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 textarea { resize: vertical; }
.form-success {
  display: none; text-align: center;
  color: #2e7d32; background: #e8f5e9;
  border-radius: 10px; padding: 1rem;
  margin-top: 1rem; font-size: 0.9rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
#footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin: 1.25rem 0 1.5rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.social-links a:hover { background: var(--gold); color: var(--dark); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1.25rem; letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.25s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--dark); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none;
  transition: var(--trans);
  font-weight: 700;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(201,168,76,0.5); }

/* ── 3D TILT CARDS ── */
.tilt-card { transform-style: preserve-3d; }
.tilt-card:hover { transform: perspective(800px) rotateX(var(--rx,0)) rotateY(var(--ry,0)) scale(1.02); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-masonry { grid-template-columns: repeat(2, 1fr); }
  .project-item.large { grid-column: span 2; }
  .project-item.tall  { grid-row: auto; aspect-ratio: 4/3; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .process-steps::before { display: none; }
  .step { display: flex; align-items: flex-start; text-align: left; gap: 1.25rem; }
  .step-num { flex-shrink: 0; margin: 0; }
  /* CEO / MD grid inside about page */
  .ceo-grid { grid-template-columns: 1fr !important; direction: ltr !important; }
  .ceo-img-wrap { max-width: 380px; margin: 0 auto; direction: ltr !important; }
  .ceo-badge { right: auto !important; left: 50% !important; transform: translateX(-50%) !important; bottom: -1.8rem !important; }
  .ceo-content { margin-top: 2.5rem; }
  .ceo-social { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Logo smaller on mobile */
  .logo-img { height: 64px; max-width: 200px; }
  .footer-logo-img { height: 100px; max-width: 260px; }
  .nav-inner { min-height: 68px; }
  /* Stats bar */
  .hero-stats { flex-wrap: wrap; width: 92%; gap: 0; bottom: 1.5rem; }
  .stat-card { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(even) { border-right: none; }
  /* Testimonial */
  .testimonial-card { padding: 0 1rem; }
  blockquote { font-size: 1rem; }
  /* Services / Projects */
  .services-grid { grid-template-columns: 1fr; }
  .projects-masonry { grid-template-columns: 1fr; }
  .project-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  /* About images badge */
  .about-badge { right: 0; top: auto; bottom: 0.5rem; }
  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr !important; gap: 3rem !important; }
  /* Slide content */
  .slide-content { padding: 0 1.5rem; max-width: 100%; }
  .slide-actions { flex-direction: column; align-items: flex-start; }
  /* Page hero */
  .page-hero { padding-bottom: 2.5rem; min-height: 40vh; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  /* Logo */
  .logo-img { height: 54px; max-width: 170px; }
  .nav-inner { min-height: 60px; padding: 0.5rem 1.25rem; }
  /* Hero */
  .gallery-grid { grid-template-columns: 1fr; }
  .locations-grid { flex-direction: column; align-items: center; }
  .location-card { width: 100%; max-width: 300px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .prev { left: 0.5rem; }
  .next { right: 0.5rem; }
  .slide-content { padding: 0 1.25rem; }
  .hero-stats { bottom: 1rem; }
  .stat-card { min-width: 50%; padding: 0.85rem 0.5rem; }
  .stat-num { font-size: 1.5rem; }
  /* CEO stats */
  .ceo-stats { flex-wrap: wrap; gap: 1.5rem !important; }
  .ceo-stat-num { font-size: 1.8rem !important; }
  /* Timeline */
  .timeline-list { padding-left: 1.75rem; }
  .timeline-item { padding: 0 0 2rem 1.75rem; }
  /* Values */
  .values-grid { grid-template-columns: 1fr !important; }
  /* Page hero */
  .page-hero-content h1 { font-size: 2rem; }
  .page-hero-content p { font-size: 0.92rem; }
  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  /* Footer logo */
  .footer-logo-img { height: 80px; }
  /* Contact form */
  .contact-form-wrap { padding: 1.75rem 1.25rem !important; }
  /* Back to top + WhatsApp */
  .back-top { bottom: 1.25rem; right: 1.25rem; }
  .wa-float  { bottom: 4.5rem; right: 1.25rem; }
}

/* ═══════════════════════
   LOGO IMAGE
═══════════════════════ */
.logo-img {
  height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.logo-img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}
.footer-logo-img {
  height: 140px;
  max-width: 360px;
  margin-bottom: 0.75rem;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ═══════════════════════
   WHATSAPP FLOAT
═══════════════════════ */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  border: 1px solid rgba(255,255,255,0.08);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Adjust btn positions so wa + back-top don't overlap */
.back-top { bottom: 2rem; right: 2rem; }
.wa-float  { bottom: 5.5rem; right: 2rem; }

/* Gold gradient update for new shade */
.btn-primary,
.logo-mark,
.about-badge,
.step-num,
.back-top {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
}
.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(200,169,107,0.45);
}
.logo-mark {
  box-shadow: 0 4px 15px rgba(200,169,107,0.4);
}
.about-badge {
  box-shadow: 0 10px 30px rgba(200,169,107,0.4);
}
.step-num {
  box-shadow: 0 8px 24px rgba(200,169,107,0.3);
}
.back-top {
  box-shadow: 0 6px 20px rgba(200,169,107,0.4);
}
