/* ===========================
   PRESTIQUE CLEANING – STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:   #0d2137;
  --teal:   #1a6b7c;
  --gold:   #c9a84c;
  --gold-light: #e8c96a;
  --white:  #ffffff;
  --off-white: #f7f9fb;
  --light-grey: #eef1f5;
  --text:   #1e2d3d;
  --muted:  #6b7f94;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { font-size: 1rem; color: var(--muted); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--grey { background: var(--off-white); }
.tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.section-title { margin-bottom: 12px; color: var(--navy); }
.section-subtitle { color: var(--muted); max-width: 560px; margin-bottom: 50px; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--teal); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 8px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(13,33,55,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 6px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }

.navbar__logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 700; letter-spacing: 0.5px; }
.navbar__logo span { color: var(--gold); }
.navbar__logo img { height: 110px; width: auto; }
.navbar__links { display: flex; align-items: center; gap: 36px; }
.navbar__links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px; transition: var(--transition); position: relative; }
.navbar__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.navbar__links a:hover, .navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__cta { background: var(--gold); color: var(--navy); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.navbar__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.navbar__cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #0d2137 0%, #1a3a52 50%, #0f4a5c 100%); }
.hero__bg { position: absolute; inset: 0; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.18; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,107,124,0.4) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 720px; margin-top: 80px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 28px; }
.hero__title { color: var(--white); margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; }
.hero__title span { color: var(--gold); }
.hero__subtitle { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 40px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__areas { position: relative; z-index: 1; margin-top: 60px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__areas span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero__area-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 0.8rem; padding: 4px 14px; border-radius: 50px; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; animation: bounce 2s infinite; }
.hero__scroll-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); border: 1px solid var(--light-grey); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 22px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 0.88rem; margin-top: 18px; transition: var(--transition); }
.service-card .learn-more:hover { gap: 10px; color: var(--gold); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; border-radius: 20px; overflow: hidden; }
.why-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; }
.why-image__badge { position: absolute; bottom: 28px; left: 28px; background: var(--white); border-radius: 14px; padding: 18px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.why-image__badge strong { display: block; font-size: 2rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.why-image__badge span { font-size: 0.82rem; color: var(--muted); }
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point { display: flex; gap: 18px; }
.why-point__icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, rgba(26,107,124,0.12), rgba(201,168,76,0.12)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.why-point h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-point p { font-size: 0.9rem; }

/* ── AREAS ── */
.areas-section { background: var(--navy); padding: 80px 0; text-align: center; }
.areas-section .section-title { color: var(--white); }
.areas-section .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 48px; }
.areas-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.area-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); padding: 12px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.area-pill:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--light-grey); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--teal), var(--navy)); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: #070f1a; color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand .navbar__logo { font-size: 1.4rem; margin-bottom: 14px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer__col h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer__col ul li a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-bottom: 12px; }
.footer__contact-item span:first-child { color: var(--gold); margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #0d2137, #1a3a52); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: 460px; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.stat-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-card strong { display: block; font-size: 2rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.stat-card span { font-size: 0.82rem; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--gold); }
.value-card .icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }

/* ── SERVICES PAGE ── */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--light-grey); }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__image { order: -1; }
.service-detail__image img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }
.service-detail h2 { color: var(--navy); margin-bottom: 16px; font-size: 2rem; }
.service-detail__list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 30px; }
.service-detail__list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); }
.service-detail__list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── GALLERY PAGE ── */

/* Gallery Stats Bar */
.gallery-stats {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  padding: 0 0 24px; margin-bottom: 12px;
}
.gallery-stat { text-align: center; }
.gallery-stat__number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy);
  line-height: 1; margin-bottom: 4px;
}
.gallery-stat__label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }

/* Filter Tabs */
.gallery-tabs {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}
.gallery-tab {
  background: var(--off-white); color: var(--navy);
  border: 1.5px solid var(--light-grey);
  padding: 11px 26px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,0.08); }
.gallery-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-tab__count {
  background: rgba(0,0,0,0.08); font-size: 0.72rem;
  padding: 2px 8px; border-radius: 50px; font-weight: 700;
  min-width: 22px; text-align: center;
}
.gallery-tab.active .gallery-tab__count { background: rgba(255,255,255,0.18); }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

/* Gallery Card */
.gallery-card {
  border-radius: 16px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--light-grey);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  cursor: pointer; position: relative;
  opacity: 0; transform: translateY(24px);
  animation: galleryFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,33,55,0.12);
}
.gallery-card.hidden { display: none; }

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

/* Premium Image Wrappers & Crop (Cover instead of Contain) */
.gallery-card__image {
  position: relative; width: 100%;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--navy);
}
.gallery-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-card:hover .gallery-card__image img {
  transform: scale(1.06);
}

/* Card Badge (Gold B&A Indicator) */
.gallery-card__badge {
  position: absolute; top: 16px; left: 16px; z-index: 10;
  background: var(--gold); color: var(--navy);
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card Caption styling */
.gallery-card__caption {
  padding: 20px 24px; display: flex;
  align-items: center; justify-content: space-between;
  background: var(--white);
  border-top: 1px solid var(--off-white);
}
.gallery-card__caption-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 3px;
}
.gallery-card__caption-text span {
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600;
}
.gallery-card__expand {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: var(--transition);
  flex-shrink: 0;
}
.gallery-card:hover .gallery-card__expand {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: rotate(90deg);
}

/* Video Card Grid Styling */
.gallery-card__video-wrap {
  position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--navy);
}
.gallery-card__video-wrap img,
.gallery-card__video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-card__play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,33,55,0.3);
  transition: background 0.3s ease;
}
.gallery-card--video:hover .gallery-card__play {
  background: rgba(13,33,55,0.45);
}
.gallery-card__play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.gallery-card--video:hover .gallery-card__play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.gallery-card__play-btn svg { width: 22px; height: 22px; fill: var(--navy); margin-left: 2px; }
.gallery-card__duration {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(7,15,26,0.8); color: var(--white);
  padding: 3px 8px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ── Lightbox V3 (Glassmorphism & Slide transitions) ── */
.lightbox-v2 {
  display: none; position: fixed; inset: 0;
  background: rgba(7, 15, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 40px 20px 20px; flex-direction: column;
}
.lightbox-v2.open { display: flex; }
.lightbox-v2__close {
  position: absolute; top: 20px; right: 28px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; z-index: 2010; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-v2__close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.05); }
.lightbox-v2__counter {
  position: absolute; top: 28px; left: 28px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px; z-index: 2010;
}
.lightbox-v2__body {
  width: 100%; max-width: 900px;
  aspect-ratio: 4/3;
  max-height: 75vh;
  border-radius: 20px; overflow: hidden;
  background: #03080e;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1.5px solid rgba(201,168,76,0.25);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}
.lightbox-v2__caption {
  color: var(--white); text-align: center;
  margin-top: 20px; font-size: 1rem; font-weight: 500;
  letter-spacing: 0.5px; opacity: 0.9;
}
.lightbox-v2__nav {
  position: absolute; top: 50%; z-index: 2010;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); width: 50px; height: 50px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.6rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-v2__nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.lightbox-v2__nav--prev { left: 28px; }
.lightbox-v2__nav--next { right: 28px; }

/* ── Lightbox Slider (touch optimized) ── */
.ba-slider {
  position: relative; width: 100%; height: 100%;
  overflow: hidden; user-select: none; -webkit-user-select: none;
}
.ba-slider img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: contain;
  pointer-events: none; background: #03080e;
}
.ba-slider__after { z-index: 1; }
.ba-slider__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-slider__line {
  position: absolute; top: 0; bottom: 0;
  left: 50%; z-index: 3;
  width: 3px; background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider__handle {
  position: absolute; top: 50%; left: 50%;
  z-index: 4; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  border: 3.5px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ba-slider__handle:hover,
.ba-slider__handle:active {
  box-shadow: 0 4px 24px rgba(201,168,76,0.6);
  transform: translate(-50%, -50%) scale(1.08);
}
.ba-slider__handle svg {
  width: 20px; height: 20px; fill: var(--navy);
}
.ba-slider__label {
  position: absolute; bottom: 16px; z-index: 5;
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.ba-slider__label--before {
  left: 16px; background: rgba(7,15,26,0.8); color: var(--white);
}
.ba-slider__label--after {
  right: 16px; background: rgba(201,168,76,0.9); color: var(--navy);
}

/* Gallery Empty State */
.gallery-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.gallery-empty .icon { font-size: 3.5rem; margin-bottom: 18px; }
.gallery-empty h3 { color: var(--navy); margin-bottom: 10px; }
.gallery-empty p { max-width: 420px; margin: 0 auto; font-size: 0.92rem; }

@media (max-width: 900px) {
  .lightbox-v2 { padding: 60px 10px 10px; }
  .lightbox-v2__body { max-height: 60vh; border-radius: 12px; }
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); }
.contact-info-card h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.contact-info-card a, .contact-info-card p { color: var(--muted); font-size: 0.9rem; }
.contact-info-card a:hover { color: var(--teal); }
.contact-form-wrapper { background: var(--white); border-radius: 20px; padding: 44px; box-shadow: var(--shadow); }
.contact-form-wrapper h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
input, select, textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-grey); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text); background: var(--off-white); transition: var(--transition); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(26,107,124,0.08); }
textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #e6f7f0; border: 1px solid #34c78a; color: #1a6b4a; padding: 16px 20px; border-radius: 10px; font-size: 0.9rem; margin-top: 16px; text-align: center; }

/* ── 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: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .navbar { background: rgba(13,33,55,0.97); backdrop-filter: blur(10px); }
  .navbar__logo img { height: 55px; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-detail, .service-detail:nth-child(even) .service-detail__image { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__image { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
  .gallery-tabs { gap: 8px; }
  .gallery-tab { padding: 8px 18px; font-size: 0.82rem; }
  .lightbox-v2__nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-v2__nav--prev { left: 10px; }
  .lightbox-v2__nav--next { right: 10px; }
  .gallery-stats { gap: 28px; }
  .gallery-stat__number { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { min-height: 100svh; }
  .hero__actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .gallery-tab { white-space: nowrap; flex-shrink: 0; }
  .ba-slider__handle { width: 40px; height: 40px; }
  .gallery-stats { gap: 20px; }
  .gallery-stat__number { font-size: 1.4rem; }
}

/* ── FLOATING CONTACT WIDGET ── */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.floating-contact.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
  cursor: pointer;
  border: none;
  outline: none;
}
.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.floating-btn--whatsapp {
  background: #25D366;
}
.floating-btn--whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.floating-btn--call {
  background: var(--gold);
  color: var(--navy);
}
.floating-btn--call:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

@media (max-width: 600px) {
  .floating-contact {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ── ARTICLES & BLOG STYLES ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.article-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.article-card__category {
  background: rgba(26,107,124,0.1);
  color: var(--teal);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: var(--transition);
}

.article-card:hover h3 {
  color: var(--teal);
}

.article-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.article-card:hover .read-more {
  color: var(--gold);
  gap: 10px;
}

/* ── SINGLE ARTICLE LAYOUT ── */
.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-header-section {
  text-align: center;
  padding: 140px 0 50px;
  background: linear-gradient(135deg, var(--navy), #1a3a52);
  color: var(--white);
  position: relative;
}

.article-header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.article-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.article-header-meta .date {
  color: rgba(255,255,255,0.7);
}

.article-header-meta .category {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.article-header-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.25;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

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

.article-breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.article-breadcrumbs a {
  color: var(--gold);
  transition: var(--transition);
}

.article-breadcrumbs a:hover {
  color: var(--gold-light);
}

.article-cover-wrapper {
  margin-top: -40px;
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
  border: 1px solid var(--light-grey);
  position: relative;
  z-index: 10;
  aspect-ratio: 16/9;
}

.article-cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 60px;
}

.article-body p {
  color: var(--text);
  margin-bottom: 28px;
}

.article-body p strong {
  color: var(--navy);
}

.article-body h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-top: 50px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.article-body ul {
  margin-bottom: 28px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 12px;
  position: relative;
  list-style: disc;
  color: var(--text);
}

/* Checklist Styling */
.article-checklist {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.article-checklist h3 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  color: var(--navy);
  font-size: 1.4rem;
}

.article-checklist ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.article-checklist li {
  list-style: none !important;
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.article-checklist li:last-child {
  margin-bottom: 0;
}

.article-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.article-checklist li ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px !important;
}

.article-checklist li ul li {
  list-style: none !important;
  padding-left: 24px;
  margin-bottom: 8px;
}

.article-checklist li ul li::before {
  content: '•';
  color: var(--gold);
  font-size: 1.4rem;
  top: -2px;
}

.article-body blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--teal);
  line-height: 1.6;
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 24px;
  margin: 40px 0;
  font-style: italic;
}

.article-cta-box {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 20px;
  padding: 44px;
  color: var(--white);
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 15px 36px rgba(13,33,55,0.18);
}

.article-cta-box h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.article-cta-box p {
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 28px;
}

.article-cta-box .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.article-body hr {
  border: 0;
  height: 1px;
  background: var(--light-grey);
  margin: 48px 0;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-cover-wrapper {
    margin-top: -20px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .article-body h2 {
    font-size: 1.5rem;
    margin-top: 36px;
  }
  .article-checklist {
    padding: 24px;
  }
  .article-cta-box {
    padding: 32px 20px;
  }
}


