/* ==========================================================================
   WINGDING EVENT MAKER — PREMIUM LUXURY EVENT DECORATION DESIGN SYSTEM
   Location: Chennai, Tamil Nadu, India
   Phone / WhatsApp: +91 84386 81728 | Email: wingdingeventmaker@gmail.com
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- 1. CSS Custom Properties / Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #0E0F12;
  --bg-secondary: #16181D;
  --bg-card: #1D1F26;
  --bg-surface: #252830;
  --bg-light: #FDFBF7;
  --bg-light-surface: #F5EFEB;
  --bg-light-card: #FFFFFF;

  /* Gold & Metallic Accents */
  --gold-300: #F3E3BA;
  --gold-400: #E5C378;
  --gold-500: #C5A059;
  --gold-600: #A8833C;
  --gold-700: #7C5F24;
  --gold-gradient: linear-gradient(135deg, #F3E3BA 0%, #C5A059 50%, #8E6D2B 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #E5C378 50%, #A8833C 100%);
  --gold-glow: 0 0 24px rgba(197, 160, 89, 0.28);
  --gold-glow-subtle: 0 4px 16px rgba(197, 160, 89, 0.15);

  /* Functional Colors */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #20BA5A;
  --call-color: #1E232B;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #808080;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: #D4D4DC;
  --text-gold: #C5A059;

  /* Borders & Dividers */
  --border-subtle-dark: rgba(255, 255, 255, 0.1);
  --border-gold-subtle: rgba(197, 160, 89, 0.3);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-light-gold: rgba(197, 160, 89, 0.35);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 30px rgba(14, 15, 18, 0.06);
  --shadow-dark-card: 0 12px 32px rgba(0, 0, 0, 0.35);

  /* Layout & Sizing */
  --container-max: 1240px;
  --header-height: 80px;
  --header-height-mobile: 68px;
  --bottom-bar-height: 64px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. CSS Reset & Base Elements --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.65;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* --- 3. Typography Hierarchy & High Contrast --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: #111215;
  letter-spacing: -0.01em;
}

/* Ensure ALL dark-section headings & inner page hero texts are crisp pure white */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.inner-page-hero,
.inner-page-hero h1,
.inner-page-hero h2,
.inner-page-hero h3,
.inner-hero-content,
.inner-hero-content h1,
.inner-hero-content h2,
.inner-hero-content h3,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.text-dark h1,
.text-dark h2,
.text-dark h3,
.full-cta-section h2,
.full-cta-section h3,
.process-section h2,
.gallery-section h2,
.testimonial-section h2,
.site-footer h4,
.site-footer h5 {
  color: #FFFFFF !important;
}

h1 { font-size: clamp(2.35rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
}

.inner-page-hero .lead-text,
.inner-hero-content p,
.hero-section .hero-desc,
.full-cta-section p,
.text-dark p,
.process-section p {
  color: #E6E6EE !important;
}

/* Gold Heading Accents */
.gold-text {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  font-weight: 700;
}

.gold-subheading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400) !important;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gold-subheading::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold-400);
  display: inline-block;
}

/* --- 4. Layout & Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.section-header p {
  margin-top: 0.85rem;
}

/* --- 5. Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0E0F12 !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--gold-glow-subtle);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: #000000 !important;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF !important;
  border: 1px solid var(--gold-500);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold-400);
  background: rgba(197, 160, 89, 0.15);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-light-secondary {
  background: #FFFFFF;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-light-gold);
}

.btn-light-secondary:hover {
  background: var(--gold-300);
  border-color: var(--gold-500);
  color: #0E0F12 !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #FFFFFF !important;
}

.btn-call {
  background-color: #1E232B;
  color: #FFFFFF !important;
  border: 1px solid var(--border-gold-subtle);
}

.btn-call:hover {
  background-color: #2D333E;
  border-color: var(--gold-400);
  color: var(--gold-300) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
  min-height: 54px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

/* --- 6. Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(14, 15, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.site-header.scrolled {
  background: rgba(14, 15, 18, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Official Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold-subtle);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-gold-subtle);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: #E2E2E6;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
}

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

/* Services Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #18191E;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 260px;
  box-shadow: var(--shadow-dark-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  pointer-events: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: #CFCFD5;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-300);
  padding-left: 1.5rem;
}

/* Header CTAs */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 992px) {
  .header-actions {
    display: flex;
  }
}

/* Hamburger Button */
.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold-subtle);
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .menu-toggle-btn {
    display: none;
  }
}

.menu-bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.menu-toggle-btn.active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--gold-400);
}
.menu-toggle-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--gold-400);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(14, 15, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height-mobile) + 1.5rem) 1.5rem 6rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--gold-400);
}

.mobile-submenu {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: none;
}

.mobile-submenu.open {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-sub-link {
  font-size: 1rem;
  color: #BDBDC5;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-sub-link:hover, .mobile-sub-link.active {
  color: var(--gold-400);
}

.mobile-contact-box {
  margin-top: auto;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-contact-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-size: 0.95rem;
}

/* --- 7. Sticky Bottom Mobile CTA Bar --- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-bar-height);
  background: rgba(18, 19, 24, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.5rem;
  margin: 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  text-align: center;
}

.bar-btn-call {
  background: #252A34;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bar-btn-whatsapp {
  background: var(--whatsapp-color);
}

.bar-btn-quote {
  background: var(--gold-gradient);
  color: #0E0F12 !important;
}

@media (max-width: 991px) {
  footer.site-footer {
    padding-bottom: calc(var(--bottom-bar-height) + 1.5rem);
  }
}

/* --- 8. Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) 1.5rem 5rem;
  background-color: var(--bg-primary);
  overflow: hidden;
  color: #FFFFFF;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 15, 18, 0.85) 0%, rgba(14, 15, 18, 0.5) 45%, rgba(14, 15, 18, 0.95) 100%),
              radial-gradient(ellipse at center, rgba(197, 160, 89, 0.15) 0%, rgba(14, 15, 18, 0.85) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  margin-bottom: 1.25rem;
  color: #FFFFFF !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #E2E2E8;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Quick Trust Strip */
.trust-strip {
  position: relative;
  z-index: 10;
  background: #16181D;
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 1.5rem 0;
  color: #FFFFFF;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0.15rem;
}

.trust-text p {
  font-size: 0.8rem;
  color: #C0C0C8;
}

/* --- 9. Inner Page Hero Banner --- */
.inner-page-hero {
  position: relative;
  background-color: var(--bg-primary);
  color: #FFFFFF;
  padding: calc(var(--header-height) + 3rem) 1.5rem 3.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold-subtle);
  overflow: hidden;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.14) 0%, rgba(14, 15, 18, 0.95) 75%);
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.inner-hero-content h1 {
  color: #FFFFFF !important;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.breadcrumbs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #C4C4CD;
  margin-bottom: 0.85rem;
}

.breadcrumbs-nav a:hover {
  color: var(--gold-400);
}

.breadcrumb-separator {
  color: var(--gold-500);
}

/* --- 10. Services Grid & Cards --- */
.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-light-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light-gold);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #202228;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 15, 18, 0.88);
  backdrop-filter: blur(6px);
  color: var(--gold-400);
  border: 1px solid var(--border-gold-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: #121316;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-features-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #444444;
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-600);
  flex-shrink: 0;
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* --- 11. Portfolio Gallery & Lightbox --- */
.gallery-section {
  background-color: var(--bg-secondary);
  color: #FFFFFF;
}

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

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle-dark);
  color: #C2C2C8;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #0E0F12;
  border-color: transparent;
  box-shadow: var(--gold-glow-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle-dark);
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(14, 15, 18, 0.92) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF !important;
  margin-bottom: 0.5rem;
}

.gallery-view-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold-300);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(8, 9, 11, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 2rem 1rem;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-box {
  max-width: 960px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  background: #000000;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #FFFFFF;
}

.lightbox-caption-text h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF !important;
}

.lightbox-caption-text p {
  font-size: 0.85rem;
  color: var(--gold-400);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close-btn:hover {
  background: var(--gold-gradient);
  color: #000;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(24, 25, 30, 0.85);
  border: 1px solid var(--border-gold-subtle);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.lightbox-nav-btn:hover {
  background: var(--gold-500);
  color: #000000;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

@media (max-width: 1100px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* --- 12. Why Choose Wingding & Process --- */
.why-section {
  background-color: var(--bg-light-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #FFFFFF;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light-gold);
}

.why-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  margin-bottom: 1.25rem;
}

.why-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #121316;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.925rem;
}

/* 5-Step Process */
.process-section {
  background: var(--bg-primary);
  color: #FFFFFF;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle-dark);
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-card h4 {
  font-size: 1.15rem;
  color: #FFFFFF !important;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.875rem;
  color: #CFCFD8;
}

/* --- 13. Full-Width CTA Banner --- */
.full-cta-section {
  position: relative;
  background: #121317;
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, rgba(14, 15, 18, 0.95) 75%);
  pointer-events: none;
}

.cta-inner-box {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-inner-box h2 {
  color: #FFFFFF !important;
  margin-bottom: 1.25rem;
}

.cta-inner-box p {
  font-size: 1.15rem;
  color: #E2E2E8;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* --- 14. FAQ Accordion --- */
.faq-section {
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-light-gold);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #121316;
}

.faq-icon-cross {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-normal);
}

.faq-icon-cross::before, .faq-icon-cross::after {
  content: '';
  position: absolute;
  background-color: var(--gold-600);
  border-radius: 2px;
}

.faq-icon-cross::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-icon-cross::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon-cross {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* --- 15. Premium Direct Contact Details Section --- */
.contact-section {
  background-color: var(--bg-light-surface);
  overflow: hidden;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card-box {
  background: #FFFFFF;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.contact-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light-gold);
}

.featured-whatsapp-card {
  border: 2px solid rgba(37, 211, 102, 0.4);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(37, 211, 102, 0.03) 100%);
}

.contact-icon-large {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.contact-icon-large svg {
  width: 28px;
  height: 28px;
}

.icon-call-bg {
  background: rgba(30, 35, 43, 0.1);
  color: #1E232B;
  border: 1px solid rgba(30, 35, 43, 0.2);
}
.icon-call-bg svg { fill: currentColor; }

.icon-wa-bg {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
}
.icon-wa-bg svg { fill: currentColor; }

.icon-email-bg {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-600);
  border: 1px solid var(--border-gold-subtle);
}
.icon-email-bg svg { fill: currentColor; }

.icon-loc-bg {
  background: rgba(14, 15, 18, 0.08);
  color: #1E232B;
  border: 1px solid rgba(14, 15, 18, 0.15);
}
.icon-loc-bg svg { fill: currentColor; }

/* Full-Width Responsive Map Card */
.map-card-container {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
  width: 100%;
  max-width: 100%;
  height: 380px;
}

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

/* --- 16. Floating Side Action Buttons (Desktop & Mobile) --- */
.floating-side-actions {
  position: fixed;
  right: 20px;
  bottom: 85px;
  z-index: 995;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 991px) {
  .floating-side-actions {
    bottom: 75px;
    right: 15px;
  }
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp {
  background-color: var(--whatsapp-color);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

.floating-call {
  background-color: #1E232B;
  border: 2px solid var(--gold-500);
}

.floating-call:hover {
  background-color: #2E3642;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
  color: var(--gold-400) !important;
}

.floating-btn .tooltip {
  position: absolute;
  right: 64px;
  background: rgba(14, 15, 18, 0.94);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  border: 1px solid var(--border-gold-subtle);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
  animation: pulseGlow 2.5s infinite;
}

/* --- 17. Footer --- */
.site-footer {
  background-color: #0B0C0E;
  color: #B5B5BC;
  border-top: 1px solid var(--border-gold-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFFFFF !important;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  color: #A0A0A8;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-400);
  padding-left: 0.35rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.925rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* --- 18. Animations & Utilities --- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- 19. Lead Recovery / Abandonment Prompt --- */
.lead-recovery-popup {
  position: fixed;
  bottom: 85px;
  right: 24px;
  max-width: 420px;
  background: #16181E;
  color: #FFFFFF;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(197, 160, 89, 0.2);
  padding: 1.25rem 1.4rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-recovery-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lead-recovery-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-recovery-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lead-recovery-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #E2E2E8;
}

.lead-recovery-text strong {
  color: #FFFFFF;
}

.lead-recovery-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.lead-recovery-close {
  background: transparent;
  border: none;
  color: #8E909A;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s ease;
}

.lead-recovery-close:hover {
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .lead-recovery-popup {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
    padding: 1rem 1.15rem;
  }
}
