/*
Theme Name: D-Digital
Theme URI: https://ddigital.info
Author: D-Digital
Author URI: https://ddigital.info
Description: Premium dark digital agency theme with gold accents, glassmorphism cards, portfolio gallery, contact form with per-category email routing.
Version: 2.0 Pro.0
Requires at least: 6.0
Elementor: ^3.0.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: ddigital
*/

/* ======================================================
   CSS CUSTOM PROPERTIES – Brand Design System
   ====================================================== */
:root {
  --bg-dark:      #0c0e14;
  --bg-darker:    #080a0f;
  --bg-card:      #131620;
  --gold:         #c9a84c;
  --gold-light:   #e2c47a;
  --gold-dim:     rgba(201,168,76,0.15);
  --teal:         #4eb8b8;
  --text-primary: #f0f2f8;
  --text-muted:   #7a8099;
  --text-dim:     #4a5070;
  --border-color: rgba(255,255,255,0.08);
  --glass-bg:     rgba(24,28,42,0.6);
  --glass-border: rgba(100,110,160,0.2);
  --radius:       12px;
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.3s ease;
}

/* ======================================================
   RESET & BASE
   ====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ======================================================
   LAYOUT UTILITIES
   ====================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-dark    { background: var(--bg-dark); }
.section-darker  { background: var(--bg-darker); }
.section-card    { background: var(--bg-card); }

/* Glassmorphism card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* Gold gradient text */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative gold line */
.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Gold glow shadow */
.gold-glow { box-shadow: 0 0 20px rgba(201,168,76,0.2), 0 0 40px rgba(201,168,76,0.1); }

/* Gold CTA button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #b8860b);
  color: #0c0e14;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-gold:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(201,168,76,0.35); color: #0c0e14; }

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Section eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: var(--font-body);
}
.eyebrow .gold-line { width: 3rem; }

/* Tag pill */
.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  font-family: var(--font-body);
}

/* ======================================================
   SCROLLBAR
   ====================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #2a2f42; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.5); }

/* ======================================================
   NAVBAR
   ====================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
#site-header.scrolled {
  background: rgba(12,14,20,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), #b8860b);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: #0c0e14;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-logo-text .gold-text { font-family: var(--font-display); }

/* Desktop nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu li a,
.nav-menu li span {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  border-radius: 8px;
  display: block;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  border-radius: 8px;
  user-select: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrapper.open .nav-dropdown-trigger { color: var(--gold); }
.nav-dropdown-arrow { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown-wrapper.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  background: #131620;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-dropdown-wrapper.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: rgba(201,168,76,0.08); color: var(--gold-light); }

.nav-cta { margin-left: 1rem; }

/* Mobile toggle */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text-primary);
}
.nav-hamburger svg { width: 24px; height: 24px; }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,10,15,0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.nav-mobile ul a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-mobile ul a:hover { background: var(--gold-dim); color: var(--gold-light); }
.nav-mobile-services { padding: 0.5rem 1rem; }
.nav-mobile-services summary { color: var(--text-muted); font-size: 1rem; cursor: pointer; padding: 0.25rem 0; }
.nav-mobile-services[open] summary { color: var(--gold); }
.nav-mobile-services a { padding-left: 1.5rem; font-size: 0.9rem; }

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-url);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,10,15,0.9) 0%, rgba(8,10,15,0.6) 60%, rgba(12,14,20,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-decor {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ======================================================
   SERVICES SECTION
   ====================================================== */
.services-section { padding: 7rem 0; }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.services-header .eyebrow { justify-content: center; }
.services-header h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
.services-header p { color: var(--text-muted); font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  padding: 2rem;
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold-light); }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ======================================================
   FEATURED PORTFOLIO / HOME
   ====================================================== */
.featured-section { padding: 7rem 0; }
.featured-header { max-width: 640px; margin-bottom: 3.5rem; }
.featured-header h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; }
.featured-header p { color: var(--text-muted); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.featured-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.featured-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.35); }
.featured-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.featured-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.05); }
.featured-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,15,0.85), transparent 60%);
}
.featured-card-body { padding: 1.5rem; }
.featured-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.featured-card:hover .featured-card-body h3 { color: var(--gold-light); }
.btn-gallery {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.btn-gallery:hover { background: rgba(201,168,76,0.25); }

/* ======================================================
   STATS BAR
   ====================================================== */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.03), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05), transparent 60%);
}
.cta-section .gold-line { position: absolute; top: 0; left: 0; right: 0; }
.cta-section .gold-line.bottom { top: auto; bottom: 0; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent); }
.page-hero .gold-line { position: absolute; top: 0; left: 0; right: 0; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card { padding: 2rem; }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem; top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-dark);
}
.timeline-year { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.timeline-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.875rem; color: var(--text-muted); }

/* Why us checklist */
.why-list { display: flex; flex-direction: column; gap: 0.875rem; }
.why-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); }
.why-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold-light);
}
.why-check svg { width: 12px; height: 12px; }

/* ======================================================
   PORTFOLIO PAGE
   ====================================================== */
.portfolio-section { padding: 5rem 0; }

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.35); }
.portfolio-card[data-category] { transition: opacity 0.3s, transform 0.3s; }
.portfolio-card.hidden { display: none; }

.portfolio-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.05); }
.portfolio-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,15,0.85), transparent 55%);
}
.portfolio-card-overlay {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 2;
}

.portfolio-card-body { padding: 1.5rem; }
.portfolio-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.portfolio-card:hover .portfolio-card-body h3 { color: var(--gold-light); }
.portfolio-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.portfolio-card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.portfolio-card-actions { display: flex; gap: 0.625rem; }

/* ======================================================
   LIGHTBOX / GALLERY MODAL
   ====================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
}
.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.lightbox-main img { width: 100%; max-height: 70vh; object-fit: contain; display: block; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.8);
  color: #0c0e14;
  border: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.25rem;
  font-weight: 700;
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-nav.prev { left: 0.75rem; }
.lightbox-nav.next { right: 0.75rem; }
.lightbox-counter {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: rgba(8,10,15,0.8);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
}
.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.lightbox-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.lightbox-thumb.active { border-color: var(--gold); }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ======================================================
   SERVICE PAGES
   ====================================================== */
.service-page-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold-light);
}
.service-page-icon svg { width: 36px; height: 36px; }
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}
.service-feature-card { padding: 1.75rem; }
.service-feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-feature-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.875rem; color: var(--text-primary); }

/* Form */
.contact-form-card { padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(18,22,32,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8099' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: #131620; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0c0e14;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-submit svg { width: 16px; height: 16px; }
.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-light);
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--text-muted); }
.form-error-msg {
  display: none;
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  color: #ff8080;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.form-error-msg.show { display: block; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(12,14,20,0.3);
  border-top-color: #0c0e14;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.form-submit.loading .spinner { display: inline-block; }
.form-submit.loading .send-icon { display: none; }

/* ======================================================
   FAQ PAGE
   ====================================================== */
.faq-section { padding: 5rem 0; }
.faq-list { max-width: 720px; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  transition: transform 0.2s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(201,168,76,0.25); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.faq-category-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin: 2rem 0 1rem; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item span { font-size: 0.8rem; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ======================================================
   ANIMATIONS
   ====================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ======================================================
   PAGE TRANSITION & UTILITIES
   ====================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .services-grid,
  .portfolio-grid,
  .featured-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.vt-hero-image,.vt-hero-img{display:none!important;} .faq-cta{padding:20px!important;}


/* FAQ FIX */
.faq-contact-card,
.glass-card{
 overflow:hidden;
}
.faq-contact-card a,
.faq-contact-card .btn-gold,
.faq-contact-card button{
 width:100%;
 max-width:100%;
 box-sizing:border-box;
 display:flex;
 justify-content:center;
}
