/* =========================================================
   SECTION 1 — BASE RESET & VARIABLES
   SAFE FOUNDATION (DO NOT MODIFY)
========================================================= */

/* ---- CSS RESET (ONLY ONCE) ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- ROOT VARIABLES ---- */
:root {
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --black: #000;
  --white: #fff;
  --gray-100: #f6f6f6;
  --gray-300: #cfcfcf;
  --gray-600: #666;
  --gray-900: #111;
}

/* =====================
   THEME VARIABLES (SINGLE SOURCE)
===================== */

:root {
  --bg: #ffffff;
  --text: #111111;
  --card-bg: #ffffff;
  --muted: #555555;
  --border: #e5e5e5;

  --gold: #d4af37;
  --gold-dark: #b8962e;
}

body[data-theme="dark"] {
  --bg: #0b0b0b;
  --text: #f2f2f2;
  --card-bg: #141414;
  --muted: #b5b5b5;
  --border: #222222;
}

/* ---- BODY ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
}

/* ---- GLOBAL LINK RESET ---- */
a {
  text-decoration: none;
  color: inherit;
}

/* ---- IMAGE SAFETY (CRITICAL) ---- */
/* Prevent SVG / logo / icon explosion */
img,
svg {
  max-width: none;
  width: auto;
  height: auto;
  display: block;
}

/* Explicit safe sizing for common image types */
header img,
.nav img,
.navbar img {
  max-height: 42px;
  width: auto;
}

.footer img {
  max-height: 60px;
  width: auto;
}

.footer-logo img {
  max-height: 70px;
}

.social-icons img,
.socials img {
  width: 22px;
  height: 22px;
}

/* ---- BUTTON RESET ---- */
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===============================
   GLOBAL SECTION BACKGROUNDS
================================ */

.section-light {
  background: var(--section-bg);
}

.section-dark {
  background: var(--card-bg);
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 6%;
}

/* =========================================================
   SECTION 2 — HEADER / NAV / DROPDOWN / TOGGLE
   SAFE REFACTOR (HTML-AGNOSTIC)
========================================================= */
/* =========================================================
   FINAL HEADER / NAV — SINGLE SOURCE (HTML SAFE)
========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 42px;
  width: auto;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Nav links */
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: var(--bg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
}

/* Instagram icon */
.nav-instagram img {
  width: 24px;
  height: 24px;
}

/* Theme toggle */
.theme-toggle {
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
}

/* Contact button */
.contact-btn {
  background: var(--gold);
  color: #000;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.contact-btn:hover {
  background: var(--gold-dark);
}

/* Offset page content below fixed header */
body {
  padding-top: 80px;
}

/* =========================================================
   SECTION 3 — HERO (HOME / SERVICES / CONTACT)
   SINGLE SOURCE OF TRUTH
========================================================= */

/* ---- BASE HERO (ALL PAGES) ---- */
.hero,
.page-hero,
.services-hero,
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ---- HERO BACKGROUND IMAGE ---- */
/* Supports both background-image via CSS or inline style */
.hero,
.page-hero,
.services-hero,
.contact-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ---- SINGLE OVERLAY (NO STACKING) ---- */
.hero::before,
.page-hero::before,
.services-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* ---- HERO CONTENT LAYER ---- */
.hero-content,
.page-hero-content,
.services-hero-content,
.contact-hero-content,
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 40px;
  color: var(--white);
}

/* ---- HOME HERO TYPOGRAPHY ---- */
.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 480px;
}

/* ---- SERVICES / CONTACT HERO BOX ---- */
.page-hero-content,
.services-hero-content,
.contact-hero-content {
  background: rgba(246, 239, 223, 0.94);
  padding: 64px 60px;
  color: var(--gray-900);
  text-align: center;
}

/* Remove overlay darkness behind light boxes */
.page-hero::before,
.services-hero::before,
.contact-hero::before {
  background: rgba(0,0,0,0.6);
}

/* ---- LIGHT BOX TEXT ---- */
.page-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.page-hero-content p,
.services-hero-content p,
.contact-hero-content p {
  font-size: 15px;
  color: var(--gray-600);
}

/* ---- CTA BUTTON IN HERO ---- */
.hero .btn,
.page-hero-content .btn,
.services-hero-content .btn,
.contact-hero-content .btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero .btn:hover,
.page-hero-content .btn:hover,
.services-hero-content .btn:hover,
.contact-hero-content .btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---- MOBILE HERO ---- */
@media (max-width: 768px) {
  .hero,
  .page-hero,
  .services-hero,
  .contact-hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero-content,
  .services-hero-content,
  .contact-hero-content {
    padding: 40px 28px;
  }
}

/* =========================================================
   SECTION 4 — HOME SERVICES + WHY CHOOSE US
   FOTOZONE STYLE (SAFE, NO HTML CHANGES)
========================================================= */

/* -------------------------
   SERVICES SECTION (HOME)
-------------------------- */
.services,
.home-services,
.our-services {
  background: var(--gray-100);
  padding: 90px 6%;
}

/* Section heading */
.services h2,
.home-services h2,
.our-services h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

/* Services grid (3 columns) */
.services-grid,
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Service card */
.service-card,
.service-box {
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-6px);
}

/* Title */
.service-card h3,
.service-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

/* 8-image grid (4x2) */
.service-images,
.image-grid,
.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

/* Image safety */
.service-images img,
.image-grid img,
.service-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Description text */
.service-card p,
.service-box p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* View Portfolio button */
.service-card a,
.service-box a {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card a:hover,
.service-box a:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* -------------------------
   WHY CHOOSE US
-------------------------- */
.why-choose-us,
.why {
  padding: 90px 6%;
  background: var(--white);
}

/* Heading */
.why-choose-us h2,
.why h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

/* Grid (4 columns) */
.why-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.why-card,
.why-box {
  background: var(--white);
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.why-card:hover,
.why-box:hover {
  transform: translateY(-6px);
}

/* Icon */
.why-card i,
.why-box i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Title */
.why-card h4,
.why-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Text */
.why-card p,
.why-box p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 992px) {
  .services-grid,
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid,
  .home-services-grid,
  .why-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECTION 5 — TESTIMONIALS + CTA
   (SAFE, FEATURE-PRESERVING)
========================================================= */

/* -------------------------
   TESTIMONIALS SECTION
-------------------------- */
.testimonials,
.client-testimonials {
  background: var(--gray-100);
  padding: 90px 6%;
  text-align: center;
}

/* Heading */
.testimonials h2,
.client-testimonials h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

/* Testimonial wrapper */
.testimonial-wrapper,
.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* Individual testimonial */
.testimonial,
.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial.active,
.testimonial-item.active {
  display: block;
  opacity: 1;
}

/* Client image */
.testimonial img,
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

/* Quote */
.testimonial p,
.testimonial-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}

/* Client label */
.testimonial span,
.testimonial-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* -------------------------
   CTA SECTION (YOUR AGREED DESIGN)
-------------------------- */
.fz-cta {
  background: #f3efe5;
  padding: 90px 6%;
  text-align: center;
}

.fz-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Icon */
.fz-cta-icon {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Heading */
.fz-cta h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

/* Text */
.fz-cta p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

/* CTA button */
.fz-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.fz-cta-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Bottom contact strip */
.fz-cta-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-600);
}

.fz-cta-contact div,
.fz-cta-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 768px) {
  .fz-cta h2 {
    font-size: 28px;
  }

  .fz-cta-contact {
    gap: 18px;
  }
}

/* =========================================================
   SECTION 6 — FOOTER
   STRUCTURE + SVG ICONS (NO FONT AWESOME)
========================================================= */

footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 6% 50px;
}

/* Footer grid */
.footer-container,
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* ---- FOOTER LOGO + TAGLINE ---- */
.footer-logo img {
  max-height: 70px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 300px;
}

/* ---- SOCIAL ICONS (SVG IMAGES) ---- */
.footer-socials,
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a,
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-socials img,
.social-icons img {
  width: 22px;
  height: 22px;
}

/* ---- FOOTER HEADINGS ---- */
.footer h4,
.footer-container h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ---- FOOTER LINKS (VERTICAL) ---- */
.footer-links,
.footer-services,
.footer-quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-services a,
.footer-quick-links a {
  font-size: 14px;
  color: #cfcfcf;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-quick-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ---- FOOTER CONTACT ---- */
.footer-contact p {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ---- FOOTER BOTTOM ---- */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #9f9f9f;
}

/* ---- RESPONSIVE FOOTER ---- */
@media (max-width: 992px) {
  .footer-container,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials,
  .social-icons {
    justify-content: center;
  }
}

/* =========================================================
   SECTION 7 — WHATSAPP FLOAT + FINAL SAFETY POLISH
   FINAL SECTION
========================================================= */

/* -------------------------
   WHATSAPP FLOATING BUTTON
-------------------------- */
.whatsapp-float,
.whatsapp-button,
.whatsapp-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.whatsapp-float a,
.whatsapp-button a,
.whatsapp-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* SVG icon inside */
.whatsapp-float img,
.whatsapp-button img,
.whatsapp-chat img {
  width: 28px;
  height: 28px;
}

/* Hover animation */
.whatsapp-float a:hover,
.whatsapp-button a:hover,
.whatsapp-chat a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* Pulse animation */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float a {
  animation: whatsappPulse 2.5s infinite;
}

/* -------------------------
   FINAL SAFETY POLISH
-------------------------- */

/* Prevent random oversized sections */
section {
  max-width: 100%;
}

/* Prevent accidental image stretching */
img {
  object-fit: contain;
}

/* Ensure grids never overflow */
.services-grid,
.home-services-grid,
.why-grid,
.why-choose-grid,
.footer-grid {
  overflow: hidden;
}

/* Fix accidental z-index conflicts */
header,
.dropdown-menu,
.whatsapp-float {
  isolation: isolate;
}

/* Smooth hover transitions site-wide */
a,
button {
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

/* Disable animations for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===============================
   HEADER ALIGNMENT FIX
   =============================== */

header,
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo spacing correction */
.header-left img,
.site-logo {
  margin-left: 0;
  max-width: 140px;
}

/* Nav links alignment */
nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hover animation only (NO default underline) */
.nav-links a:hover,
.nav-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===============================
   NAV DROPDOWN FIX
   =============================== */

nav li {
  position: relative;
}

nav li ul {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background: #111;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav li ul li a {
  display: block;
  padding: 10px 18px;
  color: #fff;
  white-space: nowrap;
}

nav li ul li a:hover {
  background: #d4af37;
  color: #000;
}

/* ===============================
   THEME TOGGLE PERFORMANCE FIX
   =============================== */

.theme-toggle {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.theme-toggle:active {
  transform: scale(0.92);
}

body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===============================
   HERO IMAGE RESTORE
   =============================== */

.hero,
.home-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("images/hero.jpg"); /* CONFIRM NAME */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before,
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* ===============================
   PRIMARY CTA BUTTON
   =============================== */

.btn-primary,
.get-in-touch {
  display: inline-block;
  padding: 14px 32px;
  background: #f4f3ef;
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary:hover,
.get-in-touch:hover {
  background: #b8962e;
  transform: translateY(-2px);
}

/* ===============================
   SERVICES CARD HOVER
   =============================== */

.service-card {
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ===============================
   SECTION HEADING ALIGNMENT
   =============================== */

.section-title,
.why-choose-us h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* ===============================
   FOOTER STRUCTURE FIX
   =============================== */

footer {
  background: #000;
  color: #fff;
  padding: 70px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-services ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.footer-social img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.7;
}

/* ===============================
   HEADER FINAL ALIGNMENT OVERRIDE
   =============================== */

header,
.site-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 60px !important;
}

.header-left,
.site-header .logo-wrap {
  display: flex !important;
  align-items: center !important;
}

.header-right,
.site-header nav {
  display: flex !important;
  align-items: center !important;
  margin-left: auto !important;
  gap: 28px !important;
}

.site-header img,
.site-logo {
  max-width: 130px !important;
  height: auto !important;
}

/* ===============================
   DROPDOWN VISIBILITY FORCE FIX
   =============================== */

nav ul li {
  position: relative !important;
}

nav ul li ul {
  position: absolute !important;
  top: 120% !important;
  left: 0 !important;
  background: #111 !important;
  min-width: 220px !important;
  padding: 12px 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(12px) !important;
  transition: all 0.25s ease !important;
  z-index: 9999 !important;
}

nav ul li:hover > ul,
nav ul li:focus-within > ul {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

nav ul li ul li a {
  padding: 10px 20px !important;
  display: block !important;
  color: #fff !important;
}

nav ul li ul li a:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* ===============================
   THEME TOGGLE INSTANT RESPONSE
   =============================== */

.theme-toggle,
.theme-icon {
  cursor: pointer !important;
  transition: transform 0.1s ease !important;
}

.theme-toggle:active {
  transform: scale(0.9) !important;
}

body,
html {
  transition: background-color 0.2s linear, color 0.2s linear !important;
}

/* ===============================
   CTA BUTTON FORCE GOLD
   =============================== */

.hero a,
.hero .btn,
.get-in-touch {
  background: #e6e4de !important;
  color: #000 !important;
  padding: 14px 32px !important;
  display: inline-block !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.hero a:hover,
.get-in-touch:hover {
  background: #b8962e !important;
  transform: translateY(-2px) !important;
}

/* ===============================
   SERVICES CARD HOVER RESTORE
   =============================== */

.service-card,
.services-box {
  transition: all 0.35s ease !important;
}

.service-card:hover,
.services-box:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25) !important;
}

/* ===============================
   FOOTER GRID OVERRIDE
   =============================== */

footer .footer-container,
footer .footer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 50px !important;
  align-items: start !important;
}

/* ===============================
   FOOTER LINKS & ICON SIZING
   =============================== */

.footer-services ul,
.footer-links ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
}

.footer-social img {
  width: 26px !important;
  height: 26px !important;
}

/* ===============================
   FOOTER COPYRIGHT RESTORE
   =============================== */

.footer-bottom {
  text-align: center !important;
  margin-top: 40px !important;
  font-size: 14px !important;
  opacity: 0.7 !important;
}

/* ===============================
   HEADER ALIGNMENT FIX
================================ 
.site-header,
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right,
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.header-left img,
.logo img {
  max-height: 48px;
} */

/* ===============================
   NAV DROPDOWN FIX
================================ */
.nav-item {
  position: relative;
}

.nav-item .dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 8px;
  z-index: 999;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 18px;
  color: #222;
  text-decoration: none;
}

.dropdown a:hover {
  background: #f5f5f5;
}

/* ===============================
   THEME TOGGLE STABILITY
================================ */
.theme-toggle {
  cursor: pointer;
  transition: none !important;
}

body {
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* ===============================
   SERVICES CARD HOVER
================================ */
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card img {
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   FOOTER STRUCTURE FIX
================================ */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 64px 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

/* ===============================
   SOCIAL ICONS FIX
================================ */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

/* ===============================
   FOOTER COPYRIGHT
================================ */
.footer-bottom {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: #aaa;
}

/* ================================
   PHASE 1 — HEADER / NAV (HTML MATCHED)
   ================================ */

/* Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
}

/* Logo */
.logo {
  height: 42px;
  display: block;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Links */
.nav-link {
  position: relative;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width .25s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #111;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(212,175,55,.12);
  color: #d4af37;
}

/* Instagram */
.nav-instagram img {
  width: 22px;
  transition: transform .25s ease;
}

.nav-instagram:hover img {
  transform: translateY(-2px) scale(1.05);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Contact Button */
.contact-btn {
  background: #d4af37;
  color: #000;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.contact-btn:hover {
  background: #c39b2e;
  transform: translateY(-2px);
}

body.dark-mode .dropdown-menu {
  background: #111;
}

body.dark-mode .dropdown-menu a {
  color: #f2f2f2;
}

/* =========================
   PHASE 1 — HEADER FIX
   ========================= */

/* RESET HEADER CONTAINER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 60px;
  background: #ffffff;
  z-index: 1000;

  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* REMOVE ANY MAX-WIDTH CONSTRAINTS */
.navbar,
.nav-left,
.nav-right {
  max-width: none !important;
}

/* LOGO */
.nav-left .logo {
  height: 42px;
  width: auto;
  display: block;
}

/* RIGHT NAV */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* NAV LINKS */
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* HOVER UNDERLINE */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;

  background: #ffffff;
  min-width: 220px;
  padding: 10px 0;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
}

/* INSTAGRAM ICON */
.nav-instagram img {
  width: 26px;
  height: 26px;
}

/* THEME TOGGLE */
.theme-toggle {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.theme-toggle:hover {
  transform: rotate(15deg);
}

/* CONTACT BUTTON */
.contact-btn {
  padding: 10px 22px;
  background: #d4af37;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.contact-btn:hover {
  background: #c39c2f;
}

body {
  padding-top: 80px;
}

/* =========================
   PHASE 2 — HERO FIX (MATCHES CURRENT HTML)
   ========================= */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 0 60px;

  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* CONTROLLED DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.18) 70%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #ffffff;

  /* IMPORTANT: remove any inherited box styles */
  background: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* TITLE — FIXED SIZE */
.hero-content h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

/* DESCRIPTION */
.hero-content p {
  font-size: 12px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* CTA BUTTON */
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Dropdown base */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  right: 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 999;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #111;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #c9a33a;
}

/* Theme toggle button */
.theme-toggle {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.service-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-card:hover .btn-gold {
  background: #b8962e;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

/* =====================================================
   PHASE 2 — HOME SERVICES (HTML MATCHED)
   ===================================================== */

.home-services {
  background: #f5f5f5;
  padding: 90px 6%;
}

.home-services .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
   color: var(--text);
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* Card */
.service-card {
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gold accent bar */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #d4af37;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

/* Hover */
.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.15);
}

.service-card:hover::before {
  transform: scaleY(1);
}

/* Title */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Images */
.service-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.service-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Image zoom */
.service-card:hover .service-images img {
  transform: scale(1.08);
}

/* Button */
.service-card .service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card .service-btn:hover {
  background: #b9982e;
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   SERVICES — STABILITY FIX
================================ */

/* Card container */
.service-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

/* Hover = lift only (NO layout shift) */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Images wrapper — FIX HEIGHT */
.service-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 180px;              /* 🔒 LOCK HEIGHT */
  overflow: hidden;
}

/* Images inside card */
.service-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Subtle zoom on hover (NO movement) */
.service-card:hover .service-images img {
  transform: scale(1.05);
}

/* Title spacing consistency */
.service-card h3 {
  margin: 16px 0 10px;
}

/* Button (if present) */
.service-card a,
.service-card .btn {
  display: inline-block;
  margin-top: 12px;
}

/* ===============================
   SERVICES — PERFORMANCE BOOST
================================ */

/* Render only first 4 images visually */
.service-images img:nth-child(n+5) {
  display: none;
}

/* Show all images only on hover */
.service-card:hover .service-images img {
  display: block;
}

.service-card,
.service-images img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-images {
  contain: layout paint;
}

.service-card,
.service-images img {
  will-change: transform, opacity;
  transform: translateZ(0);
}

.service-images img {
  content-visibility: auto;
  contain-intrinsic-size: 150px 200px;
}

.service-card:hover {
  transform: translateY(-6px);
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
  }
}

.footer {
  background: #000;
  color: #fff;
  padding: 80px 60px 30px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo img {
  max-width: 140px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-links,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #d4af37;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.footer-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: translateY(-3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-contact span {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* WHY CHOOSE US */
.why-choose {
  background: #fafafa;
  padding: 90px 5%;
  text-align: center;
}

.why-choose .section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.why-card {
  padding: 45px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.why-card img,
.why-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 5%;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.testimonial-card {
  max-width: 700px;
  margin: auto;
  padding: 50px 45px;
  background: #fafafa;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.testimonial-card span {
  font-weight: 600;
  color: #d4af37;
}

/* =====================
   THEME VARIABLES
===================== */

:root {
  --bg: #ffffff;
  --text: #111111;
  --card-bg: #ffffff;
  --muted: #555;
  --gold: #d4af37;
}

body[data-theme="dark"] {
  --bg: #0b0b0b;
  --text: #f2f2f2;
  --card-bg: #141414;
  --muted: #b5b5b5;
}

/* =====================================================
   GLOBAL DARK MODE (DATA-THEME BASED)
   ===================================================== */

[data-theme="dark"] {
  background-color: #0e0e0e;
  color: #f5f5f5;
}

/* Header */
[data-theme="dark"] .navbar {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

[data-theme="dark"] .nav-link {
  color: #ddd;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #d4af37;
}

/* Hero */
[data-theme="dark"] .hero {
  background-blend-mode: multiply;
}

[data-theme="dark"] .hero-overlay {
  background: rgba(0,0,0,0.65);
}

/* Cards (Services + Why Choose Us) */
[data-theme="dark"] .service-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .testimonial {
  background: #161616;
  color: #eee;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

[data-theme="dark"] .service-card p,
[data-theme="dark"] .why-card p {
  color: #bbb;
}

/* Buttons */
[data-theme="dark"] .hero-btn,
[data-theme="dark"] .view-btn,
[data-theme="dark"] .contact-btn {
  background: #d4af37;
  color: #000;
}

/* Footer */
[data-theme="dark"] .footer {
  background: #0a0a0a;
  color: #ccc;
}

[data-theme="dark"] .footer a {
  color: #ccc;
}

[data-theme="dark"] .footer a:hover {
  color: #d4af37;
}

/* =====================
   GLOBAL THEME BINDING
===================== */

body {
  background: var(--bg);
  color: var(--text);
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* =====================
   CARD NORMALIZATION
===================== */

.service-card,
.why-card,
.testimonial-card {
  background: var(--card-bg);
  color: var(--text);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card p,
.why-card p,
.testimonial-card p {
  color: var(--muted);
}

.testimonial-card blockquote {
  color: var(--text);
  opacity: 0.9;
}

/* ===== PERFORMANCE LIMITER ===== */
* {
  transition-property: background-color, color, transform, opacity;
  transition-duration: 0.25s;
}

.service-images img {
  will-change: transform;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   SERVICES PAGE — HARD RESET (HTML SAFE)
   FIXES BROKEN LAYOUT & BACKGROUNDS
   ========================================================= */

/* Page hero wrapper */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6f6f6f; /* neutral gray fallback */
}

/* Remove any conflicting overlays */
.services-hero::before,
.page-hero-overlay {
  display: none !important;
}

/* Hero content box */
.services-hero .page-hero-content {
  background: #f3efe5;
  color: #111;
  max-width: 900px;
  width: 90%;
  padding: 70px 60px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

/* Hero title */
.services-hero h1 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 16px;
}

/* Hero icon */
.services-hero-icon {
  font-size: 28px;
  color: #d4af37;
  margin: 12px 0 18px;
}

/* Hero text */
.services-hero p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
  margin: 0 auto;
}

/* Contact strip */
.hero-contact {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 14px;
}

.hero-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   FZ SERVICE SECTIONS (IMAGE + TEXT SPLIT)
   ========================================================= */

.fz-inner {
  max-width: 520px;
  padding: 70px 60px;
}

.fz-inner h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.fz-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

/* Button */
.fz-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.fz-btn:hover {
  background: #b8962e;
  transform: translateY(-2px);
}

/* =========================================================
   CTA SECTION (SERVICES PAGE)
   ========================================================= */

.fz-cta {
  background: #f3efe5;
  padding: 90px 6%;
  text-align: center;
}

.fz-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.fz-cta h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.fz-cta p {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
}


/* =========================================================
   SERVICES PAGE — BACKGROUND IMAGE RESTORE (SAFE)
   ========================================================= */

.services-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("images/service-hero.jpg") center/cover no-repeat;
}

/* Dark overlay for readability */
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Keep content above overlay */
.services-hero .page-hero-content {
  position: relative;
  z-index: 2;
}

/* ===============================
   CONTACT PAGE — HEADER OVERRIDE
   =============================== */

/* Hide Contact button only on Contact page */
.page-contact .contact-btn {
  display: none !important;
}

/* Re-balance header spacing after hiding button */
.page-contact .nav-right {
  gap: 28px;
}


/* =========================================================
   CONTACT PAGE — FOTOZONE STYLE (FINAL, CLEAN, SAFE)
   HTML MATCHED: contact.html
   ========================================================= */

/* ---------- PAGE SCOPE ---------- */
body.contact-page {
  background: #ffffff;
}

/* ---------- HERO SECTION ---------- */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("images/contact-hero.jpg") center/cover no-repeat;
}

.contact-hero-box {
  background: #f3efe5;
  padding: 70px 90px;
  border-radius: 24px;
  text-align: center;
  max-width: 900px;
  /*box-shadow: 0 30px 80px rgba(0,0,0,0.35);*/
}

.contact-hero-box h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #111;
}

.hero-divider {
  margin: 14px 0 18px;
  color: #d4af37;
  font-size: 22px;
}

.contact-hero-box p {
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.hero-strip {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #111;
}

.hero-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- MAIN CONTACT BOX ---------- */
.contact-section {
  padding: 100px 6%;
  background: #ffffff;
}

.contact-box {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

/* ---------- LEFT INFO ---------- */
.contact-left h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 15px;
  color: #555;
  max-width: 420px;
  line-height: 1.6;
}

.contact-address {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  line-height: 1.7;
}

.contact-address i {
  color: #d4af37;
  font-size: 18px;
  margin-top: 4px;
}

.contact-details {
  margin-top: 22px;
  font-size: 14px;
  color: #444;
}

.contact-socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.contact-socials a {
  font-size: 20px;
  color: #111;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-socials a:hover {
  color: #d4af37;
  transform: translateY(-3px);
}

/* ---------- FORM ---------- */
.contact-right h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e1e1e1;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 10px;
  background: #d4af37;
  color: #000;
  border: none;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ---------- MAP ---------- */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-hero-box {
    padding: 50px 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CONTACT PAGE — FINAL FIX (Fotozone Style A)
   Safe override | No HTML changes required
========================================================= */

/* ---------- HERO SECTION ---------- */
.contact-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay stays */
}

.contact-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.contact-hero-content p {
  color: #444;
  margin-bottom: 20px;
}

.contact-hero-content i {
  color: #d5af31; /* Gold */
}

/* ---------- CONTACT SECTION CARD ---------- */
.contact-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

/* ---------- LEFT INFO ---------- */
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-info p {
  color: #555;
  margin-bottom: 24px;
}

.contact-info strong {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
}

.contact-info i {
  color: #d4af37;
  margin-right: 8px;
}

/* ---------- FORM ---------- */
.contact-form h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form textarea,
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 140px;
  resize: none;
}

.contact-form .full {
  grid-column: span 2;
}

/* ---------- SUBMIT BUTTON ---------- */
.contact-form button {
  grid-column: span 2;
  margin-top: 20px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.45);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 40px;
  }

  .contact-hero-content {
    padding: 40px;
  }
}

/* =========================================================
   CONTACT PAGE — FORCE SINGLE BOX (Fotozone Layout)
========================================================= */

.contact-hero {
  position: relative;
}

/* Darken background image slightly */
.contact-hero-overlay {
  background: rgba(199, 167, 94, 0.55); /* keep image visible but darker */
}

/* HERO CONTACT BOX */
.contact-hero-box {
  background: rgba(223, 200, 143, 0.98) !important; /* dark warm grey (Fotozone style) */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
  color: #050505 !important;
}

/* Base text color */
.contact-hero-box {
  color: #050505 !important;  /* deep black */
}

/* Main heading */
.contact-hero-box h1 {
  color: #ffffff;
  font-size: 44px;
  letter-spacing: 1px;
}


/* Description text */
.contact-hero-box p {
  color: rgba(255,255,255,0.85);
}


/* Phone / email / location row */
.contact-hero-box .hero-strip div {
  color: #050505 !important;
}

/* Icons stay gold */
.contact-hero-box i {
  color: #ddae13 !important;
}

/* Parent section background */
.contact-section {
  background: #f3f3f3;
  padding: 100px 0;
}

/* FORCE one big white card */
.contact-section > .container,
.contact-section > .contact-container,
.contact-section > .contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 70px 80px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

/* Left side */
.contact-info {
  padding-right: 20px;
}

/* Right side */
.contact-form {
  padding-left: 20px;
}

/* Ensure form does NOT break out */
.contact-form form {
  width: 100%;
}

/* Inputs styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
}

/* Submit button (Fotozone style) */
.contact-form button,
.contact-form .submit-btn {
  margin-top: 24px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Gold icons */
.contact-info i,
.contact-info svg {
  color: #d4af37;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-section > .container,
  .contact-section > .contact-container,
  .contact-section > .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 40px;
  }

  .contact-info,
  .contact-form {
    padding: 0;
  }
}

/* ===============================
   CONTACT PAGE — FOTOZONE STYLE
================================ */

/* Section background (image already applied elsewhere) */
.contact-section {
  padding: 100px 5%;
  position: relative;
}

/* BIG CENTER BOX */
.contact-box {
  max-width: 1200px;
  margin: auto;
  background: rgba(245, 245, 245, 0.92); /* stronger visibility */
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 70px 70px;
}

/* LEFT SIDE */
.contact-left h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.contact-address {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-address i {
  font-size: 22px;
  color: #d4af37;
  margin-top: 4px;
}

.contact-details p {
  margin: 6px 0;
  font-size: 15px;
}

.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: #d4af37;
  color: #000;
}

/* RIGHT SIDE */
.contact-right h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
}

/* CONSENT */
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #444;
  width: 100%;
  margin-top: 8px;
}

.contact-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-consent label {
  line-height: 1.4;
}


/* SUBMIT BUTTON */
.contact-form button {
  width: fit-content;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-form button:hover {
  background: #c19e2e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }
}

/* ===============================
   FORCE CHECKBOX + TEXT INLINE
   =============================== */

.contact-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
  margin-top: 12px !important;
}

.contact-consent input[type="checkbox"] {
  margin: 4px 0 0 0 !important;
  justify-self: start !important;
}

.contact-consent label {
  text-align: left !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  max-width: 100% !important;
}

/* =========================================
   CONTACT PAGE — FORCE BOX COLOR (FINAL)
   ========================================= */

.contact-section {
  position: relative;
}

/* Background image overlay — darker */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(210, 204, 204, 0.65); /* DARK overlay */
  z-index: 1;
}

/* The ACTUAL visible box */
.contact-box {
  position: relative;
  z-index: 2;
  background: rgba(223, 200, 143, 0.98) !important; /* Fotozone grey-beige */
  border-radius: 22px;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.6) !important;
}

/* Improve text contrast inside box */
.contact-box h1,
.contact-box h2,
.contact-box p,
.contact-box label {
  color: #111 !important;
}

/* =====================================================
   CONTACT PAGE – HERO FINAL OVERRIDE (SAFE)
   This block intentionally overrides earlier styles
===================================================== */

/* LIGHTER background overlay so image is visible */
.contact-hero::before {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.15)
  ) !important;
}

/* DARK PREMIUM CONTACT BOX */
.contact-hero-box {
  background: rgba(10, 10, 10, 0.88) !important;
  color: #ffffff !important;

  padding: 70px 90px !important;
  border-radius: 24px !important;
  max-width: 900px !important;
  text-align: center !important;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 30px 80px rgba(0,0,0,0.55) !important;
}

/* HERO TITLE */
.contact-hero-box h1 {
  color: #ffffff !important;
  font-size: 44px !important;
  letter-spacing: 1px;
}

/* HERO DESCRIPTION TEXT */
.contact-hero-box p {
  color: rgba(255,255,255,0.85) !important;
}

/* GOLD CAMERA ICON */
.contact-hero-box .hero-divider i {
  color: #d4af37 !important;
}

/* CONTACT STRIP TEXT */
.contact-hero-box .hero-strip {
  color: rgba(255,255,255,0.9) !important;
}

/* CONTACT STRIP ICONS */
.contact-hero-box .hero-strip i {
  color: #d4af37 !important;
}

/* =====================================================
   CONTACT HERO – CLARITY + TEXT VISIBILITY FIX
===================================================== */

/* 1️⃣ Reduce overlay darkness (restore image clarity) */
.contact-hero::before {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  ) !important;
}

/* 2️⃣ REMOVE blur so background is sharp */
.contact-hero-box {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 3️⃣ Dark premium card (no haze) */
.contact-hero-box {
  background: rgba(0,0,0,0.85) !important;
}

/* 4️⃣ Title */
.contact-hero-box h1 {
  color: #ffffff !important;
}

/* 5️⃣ Description text */
.contact-hero-box p {
  color: rgba(255,255,255,0.85) !important;
}

/* 6️⃣ Contact strip TEXT FIX (this is your black text issue) */
.contact-hero-box .hero-strip div {
  color: #ffffff !important;
}

/* 7️⃣ Contact strip ICON FIX */
.contact-hero-box .hero-strip i {
  color: #d4af37 !important;
}

/* =====================================================
   SERVICES HERO — FINAL TRANSPARENT / GLASS FIX
   Targets actual HTML classes (page-hero-content)
===================================================== */

/* Background overlay — lighter so image stays sharp */
.services-hero .page-hero-overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.55)
  );
}

/* MAIN CONTENT BOX (GLASS EFFECT) */
.services-hero .page-hero-content {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 20px;

  /* ↓ KEY SIZE FIX */
  padding: 45px 55px;
  max-width: 720px;   /* reduced width */
  width: fit-content; /* hug content */
  margin: auto;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* TITLE */
.services-hero .page-hero-content h1 {
  color: #ffffff;
  font-size: 3rem;
  letter-spacing: 1px;
}

/* CAMERA ICON */
.services-hero .services-hero-icon i {
  color: #d4af37; /* gold */
  font-size: 22px;
  margin: 18px 0;
}

/* DESCRIPTION TEXT */
.services-hero .page-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* CONTACT STRIP */
.services-hero .hero-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* CONTACT ITEMS */
.services-hero .hero-contact span {
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICON COLOR */
.services-hero .hero-contact i {
  color: #d4af37;
}

/* ===============================
   GALLERY — EDITORIAL MASONRY
   FINAL (LOCKED)
================================ */

.gallery-section {
  padding: 80px 6vw;
  background: #ffffff;
}

.gallery-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Masonry layout */
.gallery-grid {
  column-count: 3;
  column-gap: 28px;
}

/* Individual items */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

/* Images & videos */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    column-count: 1;
  }
}

#image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#image-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* ================= GLOBAL BEHAVIOR ================= */
html {
  scroll-behavior: smooth;
}

/* ================= VIDEO BEHAVIOR ================= */
.gallery-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #000;
}

/* ===============================
   SERVICES — FINAL ALTERNATING LAYOUT
================================ */

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
}

.image-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ==================================================
   FORCE SERVICES LAYOUT — DO NOT TOUCH ABOVE CSS
================================================== */


#fsModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

#fsModal img {
  max-width: 90vw;
  max-height: 90vh;
}

#fsClose {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
}

/* =========================================
   SERVICE SECTION LAYOUT FIX
========================================= 

/* Model ONLY: Text → Image */
#model {
  flex-direction: row-reverse;
}

/* Mobile safety */
@media (max-width: 900px) {
  .fz-service,
  #model {
    flex-direction: column;
  }
}

/* =========================================
   FULLSCREEN IMAGE MODAL
========================================= */

#fsModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#fsModal img {
  max-width: 90%;
  max-height: 90%;
}

#fsClose {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

/* ==================================================
   FINAL SERVICES LAYOUT — SINGLE SOURCE OF TRUTH
================================================== */

.fz-service {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

/* columns */
.fz-service > .fz-image,
.fz-service > .fz-content {
  flex: 0 0 50%;
  width: 50%;
}

/* background image */
.fz-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* center text vertically */
.fz-content {
  display: flex;
  align-items: center;
}

/* ORDER CONTROL */
#wedding.fz-service {
  flex-direction: row;
}

#model.fz-service {
  flex-direction: row-reverse;
}

#product.fz-service {
  flex-direction: row;
}

/* MOBILE */
@media (max-width: 900px) {
  .fz-service {
    flex-direction: column !important;
  }

  .fz-service > .fz-image,
  .fz-service > .fz-content {
    width: 100%;
  }
}

/* ==================================================
   SERVICES LAYOUT — FINAL OVERRIDE (DO NOT MOVE)
================================================== */

section.fz-service {
  display: flex;
  min-height: 520px;
}

/* column sizing */
section.fz-service > .fz-image,
section.fz-service > .fz-content {
  flex: 0 0 50%;
  width: 50%;
}

/* background image */
section.fz-service > .fz-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* text alignment */
section.fz-service > .fz-content {
  display: flex;
  align-items: center;
}

/* ORDER CONTROL */
section#wedding.fz-service {
  flex-direction: row;
}

section#model.fz-service {
  flex-direction: row-reverse;
}

section#product.fz-service {
  flex-direction: row;
}

/* MOBILE SAFETY */
@media (max-width: 900px) {
  section.fz-service {
    flex-direction: column !important;
  }

  section.fz-service > .fz-image,
  section.fz-service > .fz-content {
    width: 100%;
  }
}

.gallery-grid {
  column-gap: 24px;
}

.gallery-item {
  margin-bottom: 24px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.lightbox-close {
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 6px 14px;
  line-height: 1;
}

.fz-service {
  display: flex;
  min-height: 520px;
}

.fz-service:nth-child(even) {
  flex-direction: row-reverse;
}

.fz-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}


/* =========================================================
   Gallery PAGE — BACKGROUND IMAGE RESTORE (SAFE)
   ========================================================= */

.gallery-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/Our-work-hero.png") center/cover no-repeat;
}

/* =========================================================
   Gallery HERO — TEXT VISIBILITY (NO OVERLAY)
   ========================================================= */

.gallery-hero-content {
  text-align: center;
  padding: 0 20px;
}

.gallery-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}

.gallery-hero-content p {
  font-size: 1.15rem;
  color: #f1f1f1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .gallery-hero-content h1 {
    font-size: 2.2rem;
  }

  .gallery-hero-content p {
    font-size: 1rem;
  }
}

/* =========================================================
   FLOATING WHATSAPP — GLOBAL (ALL PAGES)
   ========================================================= */

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;

  background-color: #25d366;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  line-height: 1;
}

/* =========================================================
   GALLERY HERO — TEXT STYLING ONLY
   ========================================================= */

.gallery-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.gallery-hero p {
  font-size: 1.1rem;
  color: #e6e6e6;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
