/* ==================== CSS VARIABLES ==================== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1c1c1c;
  --accent: #C9A84C;
  --accent-glow: rgba(201, 168, 76, 0.4);
  --accent-secondary: #D4AF61;
  --accent-secondary-glow: rgba(212, 175, 97, 0.3);
  --text-primary: #f0f0f0;
  --text-secondary: #8a8a8a;
  --text-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-secondary));
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ==================== GLASS CARD ==================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-4px);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(255,69,0,0.2));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== PRELOADER ==================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-preloader {
  width: min(320px, 72vw);
  margin-bottom: 10px;
}

.brand-logo-nav {
  height: 34px;
  width: auto;
  margin-right: 0;
}

.brand-logo-footer {
  height: 26px;
  width: auto;
}

.logo-text-pre {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 2s ease-in-out infinite;
  letter-spacing: 12px;
}

.logo-sub-pre {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 14px;
  margin-top: -4px;
}

.preloader-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-secondary), transparent);
  margin: 20px auto;
  animation: lineExpand 1.5s ease-in-out infinite;
}

.preloader-slogan {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0;
  animation: fadeInSlogan 1s ease 0.5s forwards;
  margin-bottom: 30px;
}

.preloader-spinner {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.spinner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: spinnerBounce 1.4s ease-in-out infinite both;
}
.spinner-dot:nth-child(1) { animation-delay: -0.32s; }
.spinner-dot:nth-child(2) { animation-delay: -0.16s; background: var(--accent-secondary); }
.spinner-dot:nth-child(3) { animation-delay: 0; }

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 20px var(--accent-glow)); }
  50% { filter: drop-shadow(0 0 40px var(--accent-glow)) drop-shadow(0 0 80px var(--accent-secondary-glow)); }
}

@keyframes lineExpand {
  0%, 100% { width: 80px; opacity: 0.5; }
  50% { width: 160px; opacity: 1; }
}

@keyframes fadeInSlogan {
  to { opacity: 1; }
}

@keyframes spinnerBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 22px;
}

.nav-logo .brand-logo-nav,
.nav-logo .brand-logo-footer {
  align-self: center;
}

.logo-accent {
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-light {
  font-weight: 300;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(201, 168, 76, 0.15);
}

.nav-link.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: translateY(4px);
  min-width: 220px;
  background: rgba(22, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover {
  color: var(--text-white);
  background: rgba(201, 168, 76, 0.12);
  padding-left: 24px;
}

.dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
}

.dropdown-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 6px 0;
}

.dropdown-all {
  color: var(--accent);
  font-weight: 600;
}

.dropdown-all:hover {
  color: var(--text-white);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18,18,18,0.6) 0%,
    rgba(18,18,18,0.4) 40%,
    rgba(18,18,18,0.7) 70%,
    rgba(18,18,18,1) 100%
  );
}

.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 96px 20px 0;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInDown 1s ease;
  margin-top: 60px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent) 50%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease-in-out infinite;
}

.hero-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--bg-secondary);
  overflow: hidden;
}

.about-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(138,43,226,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,69,0,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content { position: relative; }

.about-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-text-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  padding: 24px;
  text-align: center;
}

.about-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 12px;
  margin: 0 auto 12px;
  font-size: 20px;
  color: #fff;
}

.about-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.about-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-image { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.badge-text {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(255,69,0,0.2));
  border-radius: 20px;
  font-size: 28px;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(138,43,226,0.15);
  color: var(--accent);
  font-size: 14px;
  transition: var(--transition);
}

.service-card:hover .service-card-arrow {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  transform: translateX(4px);
}

/* ==================== GALLERY ==================== */
.gallery {
  background: var(--bg-secondary);
  position: relative;
  padding: 60px 0;
}

.gallery .section-header {
  margin-bottom: 30px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: var(--transition);
}

.gallery-item.video-item {
  aspect-ratio: 1/1;
}

.gallery-item:nth-child(3n+1) {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(18,18,18,0.9));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.gallery-item-overlay p {
  font-size: 13px;
  color: var(--text-secondary);
}

.gallery-item-overlay .gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138,43,226,0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay .gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1f2229, #151820);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  z-index: 1;
}

.video-thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.video-thumb-wrapper.has-video-frame .video-thumb-video {
  opacity: 1;
}

.video-thumb-wrapper.has-video-frame .video-thumb-image {
  opacity: 0;
}

.video-thumb-wrapper .play-icon {
  position: relative;
  z-index: 3;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
  border: 2px solid rgba(255,255,255,0.8);
}

.gallery-item:hover .play-icon {
  transform: scale(1.1);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
  z-index: 10001;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox-content {
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-content iframe {
  width: 80vw;
  max-width: 900px;
  height: 50vw;
  max-height: 506px;
  border: none;
  border-radius: var(--radius);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.lightbox-caption h4 {
  color: var(--text-white);
  margin-bottom: 4px;
}

/* ==================== CONTACT ==================== */
.contact {
  background: var(--bg-primary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--accent);
  margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A2BE2' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-result {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}

.form-result.success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
  display: block;
}

.form-result.error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #F44336;
  display: block;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  padding: 24px;
  text-align: center;
}

.contact-card-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(255,69,0,0.2));
  border-radius: 12px;
  margin: 0 auto 12px;
  color: var(--accent);
  font-size: 18px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-map {
  padding: 12px;
  overflow: hidden;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--accent);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ==================== NAV CONTACT BUTTON ==================== */
.nav-contact-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary)) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px var(--accent-glow);
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-contact-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px var(--accent-glow) !important;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent)) !important;
}

.nav-contact-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary)) !important;
  color: #fff !important;
}

.nav-contact-btn i {
  font-size: 12px;
}

/* ==================== PAGE HERO (Sub-pages) ==================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(138,43,226,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(255,69,0,0.1) 0%, transparent 50%),
    var(--bg-secondary);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-hero-text {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==================== SERVICES PAGE GRID ==================== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-page-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-page-card-inner {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-page-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-page-card:hover .service-page-card-inner::before {
  transform: scaleX(1);
}

.service-page-card:hover .service-page-card-inner {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.service-page-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(138,43,226,0.2), rgba(255,69,0,0.2));
  border-radius: 24px;
  font-size: 32px;
  color: var(--accent);
  transition: var(--transition);
}

.service-page-card:hover .service-page-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
}

.service-page-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.service-page-card-inner p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.service-page-card:hover .service-page-link {
  gap: 12px;
  color: var(--accent-secondary);
}

/* ==================== SERVICE TABS ==================== */
.service-tabs {
  position: sticky;
  top: 70px;
  z-index: 99;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.service-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-tabs-inner::-webkit-scrollbar {
  display: none;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.service-tab:hover {
  color: var(--text-white);
}

.service-tab.active {
  color: #FFD700;
  border-bottom-color: #FFD700;
}

.service-tab i {
  font-size: 14px;
}

/* ==================== SERVICE DETAIL LAYOUT ==================== */
.service-detail-section {
  padding: 80px 0 80px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-layout.reversed .service-icon-card {
  order: 2;
}

.service-detail-layout.reversed .service-detail-info {
  order: 1;
}

/* Icon Card */
.service-icon-card {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
}

.service-icon-card-icon {
  font-size: 80px;
  color: #FFD700;
  filter: drop-shadow(0 4px 30px rgba(255, 215, 0, 0.3));
}

/* Card with uploaded image */
.service-icon-card.has-image {
  background: transparent !important;
}

.service-icon-card.has-image .service-icon-card-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: inherit;
  filter: none;
}

.service-icon-card.has-image .service-icon-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.service-stat-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.service-stat-badge i {
  color: #4CAF50;
  font-size: 16px;
}

/* Service Detail Info */
.service-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #FFD700;
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-highlight {
  color: #FFD700;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Checklist */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.checklist-item i {
  color: #4CAF50;
  font-size: 15px;
  flex-shrink: 0;
}

/* Process Steps */
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
}

.step-item + .step-item {
  border-top: 1px solid var(--glass-border);
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #FFD700;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Nav WhatsApp Button */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #25D366;
  border-radius: 50px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.nav-whatsapp i {
  font-size: 18px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ==================== SERVICE MEDIA GALLERY ==================== */
.service-media-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-media-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.service-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-media-item:hover img {
  transform: scale(1.08);
}

.service-media-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.service-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(18,18,18,0.9));
  opacity: 0;
  transition: var(--transition);
}

.service-media-item:hover .service-media-overlay {
  opacity: 1;
}

.service-media-overlay h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.service-media-overlay p {
  font-size: 12px;
  color: var(--text-secondary);
}

.service-media-video-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
}

.service-media-video-thumb i {
  font-size: 48px;
  color: var(--accent);
  transition: var(--transition);
}

.service-media-item:hover .service-media-video-thumb i {
  transform: scale(1.15);
  color: var(--accent-secondary);
}

/* ==================== MOBILE OVERLAY ==================== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-img-wrapper img { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-layout { gap: 40px; }
  .gallery-masonry { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
  .nav-container { padding: 0 16px; }
  .container { padding: 0 16px; }

  /* Remove oversized decorative glow circles on mobile/tablet */
  .services::before,
  .about-parallax-bg,
  .page-hero-bg::before,
  .page-hero-bg::after {
    display: none;
  }

  /* Navigation toggle */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 18px; font-size: 15px; }
  .nav-contact-btn { justify-content: center; }
  .nav-whatsapp { width: 100%; justify-content: center; margin-top: 8px; }

  /* Dropdown in mobile sidebar */
  .nav-dropdown-arrow { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    background: rgba(255,255,255,0.03);
    box-shadow: none;
    border: none;
    border-radius: 8px;
    padding: 4px 0;
    margin-top: 2px;
  }
  .dropdown-item { padding: 8px 24px; font-size: 13px; }
  .dropdown-item:hover { padding-left: 28px; }

  /* Preloader responsive */
  .brand-logo-preloader { width: min(260px, 74vw); }
  .brand-logo-nav { height: 30px; width: auto; }
  .brand-logo-footer { height: 24px; width: auto; }
  .logo-text-pre { font-size: 42px; letter-spacing: 8px; }
  .logo-sub-pre { font-size: 14px; letter-spacing: 8px; }
  .preloader-slogan { font-size: 14px; padding: 0 20px; }
  .preloader-content { padding: 0 16px; }

  /* Hero responsive */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { padding: 120px 16px 0; max-width: 560px; margin-top: 0; }
  .hero-badge { font-size: 12px; padding: 6px 18px; margin-top: 0; }
  .hero-title { font-size: clamp(1.7rem, 8.2vw, 2.5rem); }
  .hero-text { font-size: 14px; margin-bottom: 24px; max-width: 34ch; margin-left: auto; margin-right: auto; }
  .hero-buttons { margin-bottom: 40px; }
  .hero-stats { gap: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; max-width: 360px; margin: 0 auto; }
  .stat-number { font-size: 24px; }
  .stat-plus { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .hero-scroll { bottom: 20px; }

  /* Section spacing */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-badge { font-size: 12px; padding: 5px 16px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 14px; }

  /* About responsive */
  .about-cards { grid-template-columns: 1fr; }
  .about-card { padding: 24px 20px; }
  .about-text { font-size: 14px; line-height: 1.75; }
  .about-img-badge { padding: 12px 16px; }
  .badge-number { font-size: 20px; }

  /* Services grid responsive */
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }
  .service-media-grid { grid-template-columns: 1fr; }

  /* Service tabs responsive */
  .service-tabs { top: 60px; }
  .service-tab { padding: 12px 16px; font-size: 13px; }
  .service-tab span { display: none; }

  /* Service detail layout responsive */
  .service-detail-section { padding: 40px 0 60px; }
  .service-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-layout.reversed .service-icon-card { order: 0; }
  .service-detail-layout.reversed .service-detail-info { order: 0; }
  .service-icon-card { min-height: 350px; }
  .service-icon-card.has-image .service-icon-card-icon img { border-radius: 20px; }
  .service-icon-card-icon { font-size: 60px; }
  .service-detail-title { font-size: 1.8rem; }
  .service-detail-desc { font-size: 14px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-item { font-size: 13px; }
  .step-item { gap: 14px; padding: 18px 0; }
  .step-number { width: 40px; height: 40px; min-width: 40px; font-size: 14px; }
  .step-content h4 { font-size: 14px; }
  .step-content p { font-size: 13px; }

  /* Gallery responsive */
  .gallery { padding: 50px 0; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-filter { gap: 8px; margin-bottom: 24px; }
  .filter-btn { padding: 8px 20px; font-size: 13px; }

  /* Contact responsive */
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 14px; }

  /* Footer responsive */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { font-size: 13px; }
  .footer-links h4, .footer-contact h4 { font-size: 15px; margin-bottom: 14px; }

  /* Page hero responsive */
  .page-hero { padding: 120px 0 50px; }
  .page-hero-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  .page-hero-text { font-size: 14px; }

  /* Lightbox responsive */
  .lightbox-content { max-width: 95vw; max-height: 70vh; }
  .lightbox-content iframe { width: 92vw; height: 52vw; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 16px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 14px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 14px; }
  .lightbox-caption { bottom: 16px; font-size: 13px; width: 90%; }

  /* Back to top & WhatsApp float */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 26px; }
  .back-to-top.visible ~ .whatsapp-float,
  .whatsapp-float { bottom: 20px; left: 20px; right: auto; }
}

/* ---------- 480px ---------- */
@media (max-width: 480px) {
  /* Preloader small mobile */
  .brand-logo-preloader { width: min(220px, 80vw); }
  .brand-logo-nav { height: 28px; width: auto; }
  .brand-logo-footer { height: 22px; width: auto; }
  .logo-text-pre { font-size: 32px; letter-spacing: 6px; }
  .logo-sub-pre { font-size: 11px; letter-spacing: 6px; }
  .preloader-slogan { font-size: 13px; }

  /* Hero small mobile */
  .hero-title { font-size: clamp(1.45rem, 8vw, 1.9rem); }
  .hero-text { font-size: 13px; line-height: 1.7; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; max-width: 200px; }
  .stat-number { font-size: 30px; }
  .service-page-card-inner { padding: 32px 22px; }
  .service-media-item { aspect-ratio: 1 / 1; }

  /* Gallery small mobile */
  .gallery-masonry { grid-template-columns: 1fr; gap: 12px; }
  .service-media-grid { grid-template-columns: 1fr; }

  /* Service card */
  .service-icon-card { min-height: 280px; border-radius: 14px; }
  .service-icon-card.has-image .service-icon-card-icon img { border-radius: 14px; }
  .service-icon-card-icon { font-size: 48px; }
  .service-detail-title { font-size: 1.5rem; }
  .service-label { font-size: 11px; letter-spacing: 2px; }
  .label-line { width: 24px; }

  /* Section */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .about-img-wrapper img { height: 260px; }

  .services::before {
    display: none;
  }

  /* Page hero */
  .page-hero { padding: 100px 0 40px; }

  /* Footer */
  .footer-social { justify-content: center; }
  .footer-social a { width: 36px; height: 36px; }

  /* Nav menu wider on small screens */
  .nav-menu { width: 85vw; padding: 80px 24px 24px; }

  /* Filter buttons scroll */
  .gallery-filter { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* Service tabs */
  .service-tab { padding: 10px 12px; font-size: 12px; }
}

/* ---------- 360px ---------- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-content { padding: 104px 12px 0; }
  .brand-logo-preloader { width: min(190px, 84vw); }
  .brand-logo-nav { height: 24px; width: auto; }
  .brand-logo-footer { height: 20px; width: auto; }
  .logo-text-pre { font-size: 28px; letter-spacing: 4px; }
  .logo-sub-pre { font-size: 10px; letter-spacing: 4px; }
  .nav-logo { font-size: 18px; }
  .logo-light { font-size: 11px; letter-spacing: 2px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }
  .section { padding: 40px 0; }
}
