/* ============================================
   ASIA MUSIC - Professional DJ & Sound Systems
   Dark Theme - Sleek & Professional
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #ff4081;
  --primary-dark: #e91e63;
  --primary-light: #ff80ab;
  --orange: #ff6d00;
  --yellow: #ffc400;
  --purple: #7c4dff;
  --cyan: #00bcd4;
  --green: #00c853;
  --blue: #2979ff;
  --bg: #0a0a0f;
  --bg-soft: #111118;
  --bg-alt: #16161f;
  --card: #14141c;
  --border: #1f1f2e;
  --text: #c8cad0;
  --text-muted: #8a8d9a;
  --heading: #eaeaf0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.6);
  --shadow-color: 0 8px 30px rgba(255,64,129,0.2);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 50px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.4);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-fun {
  background: var(--yellow);
  color: var(--heading);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

.btn-fun:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 196, 0, 0.4);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo-text {
  align-items: center;
}

.preloader-logo-text .logo-title {
  font-size: 1.2rem;
}

.preloader-logo-text .logo-subtitle {
  font-size: 0.58rem;
}

.preloader-bars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.preloader-bars span {
  width: 6px;
  height: 40px;
  border-radius: 3px;
  animation: preloaderBars 1s ease-in-out infinite;
}

.preloader-bars span:nth-child(1) { background: var(--primary); }
.preloader-bars span:nth-child(2) { background: var(--orange); animation-delay: 0.1s; }
.preloader-bars span:nth-child(3) { background: var(--yellow); animation-delay: 0.2s; }
.preloader-bars span:nth-child(4) { background: var(--purple); animation-delay: 0.3s; }
.preloader-bars span:nth-child(5) { background: var(--cyan); animation-delay: 0.4s; }

@keyframes preloaderBars {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--heading);
}

.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-subtitle {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,64,129,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(255,64,129,0); }
}

.logo span {
  color: var(----white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary);
  border-radius: var(--radius-full);
  color: var(--white) !important;
  font-size: 0.9rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,64,129,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #0a0a0f 0%, #0f0a15 30%, #0a0f18 70%, #0a100f 100%);
}

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

.hero > .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  text-align: left;
  flex-shrink: 0;
}

.hero-content > * {
  position: relative;
  z-index: 6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 64, 129, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge i {
  color: var(--primary-light);
  animation: rotateStar 3s linear infinite;
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero h1 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 550px;
  z-index: 8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat h3 {
  font-size: 2.5rem;
  color: var(--primary);
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
  opacity: 0.6;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(odd) { background: var(--primary-light); }
.particle:nth-child(even) { background: var(--cyan); }
.particle:nth-child(3n) { background: var(--orange); }
.particle:nth-child(5n) { background: var(--purple); }

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

/* ---------- Section Common ---------- */
section {
  padding: 100px 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--bg-soft);
}

/* ===== MARQUEE BREAK ===== */
.marquee-break {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a12 0%, #100a18 50%, #0a1018 100%);
  border-top: 2px solid rgba(255, 64, 129, 0.2);
  border-bottom: 2px solid rgba(124, 77, 255, 0.2);
  isolation: isolate;
}

.marquee-break::before,
.marquee-break::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-break::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0));
}

.marquee-break::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0));
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
  padding: 18px 0;
  will-change: transform;
}

.mq-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 12px;
  flex-shrink: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.mq-dot {
  font-size: clamp(1rem, 2vw, 1.4rem) !important;
  padding: 0 12px !important;
  flex-shrink: 0;
  opacity: 0.85;
  animation: dotPulse 2s ease-in-out infinite;
}

.mq-dot:nth-child(4n+2) { animation-delay: 0s; }
.mq-dot:nth-child(4n+4) { animation-delay: 0.5s; }
.mq-dot:nth-child(4n+6) { animation-delay: 1s; }
.mq-dot:nth-child(4n+8) { animation-delay: 1.5s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- About Section ---------- */
.about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  perspective: 1000px;
}

.about-image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotateY(-5deg);
  transition: transform 0.6s;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-wrapper:hover {
  transform: rotateY(0deg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 64, 129, 0.1), transparent);
  pointer-events: none;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 128, 171, 0.18), transparent 32%), radial-gradient(circle at 72% 72%, rgba(124, 77, 255, 0.16), transparent 35%), linear-gradient(145deg, #130b12, #0e0c16 58%, #09090d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.about-logo-stage {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.about-logo-stage::before {
  content: '';
  position: absolute;
  inset: 14% 10% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 64, 129, 0.12) 32%, rgba(124, 77, 255, 0.08) 52%, transparent 72%);
  filter: blur(18px);
  transform: translateZ(-20px);
}

.about-logo-glow {
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 64, 129, 0.14) 38%, rgba(255, 64, 129, 0) 72%);
  filter: blur(10px);
  animation: logoGlowPulse 3.8s ease-in-out infinite;
}

.about-logo-icon {
  position: relative;
  width: 100%;
  max-width: 290px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 28px rgba(255, 64, 129, 0.2));
  transform: rotateX(12deg) rotateY(-10deg);
  animation: logoDeckFloat 4.6s ease-in-out infinite;
}

.about-note {
  position: absolute;
  right: 6%;
  top: 20%;
  font-family: var(--font-heading);
  font-weight: 800;
  text-shadow: 0 0 12px currentColor;
  opacity: 0;
}

.about-note-1 {
  color: var(--primary-light);
  font-size: 1.6rem;
  animation: emitNoteOne 3.6s ease-in-out infinite;
}

.about-note-2 {
  color: var(--yellow);
  font-size: 1.35rem;
  animation: emitNoteTwo 3.6s ease-in-out infinite 0.7s;
}

.about-note-3 {
  color: var(--cyan);
  font-size: 1.45rem;
  animation: emitNoteThree 3.6s ease-in-out infinite 1.4s;
}

.about-note-4 {
  color: var(--purple);
  font-size: 1.1rem;
  animation: emitNoteFour 3.6s ease-in-out infinite 2.1s;
}

@keyframes logoDeckFloat {
  0%, 100% { transform: rotateX(12deg) rotateY(-10deg) translateY(0); }
  50% { transform: rotateX(10deg) rotateY(-6deg) translateY(-8px); }
}

@keyframes logoGlowPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes emitNoteOne {
  0% { transform: translate(0, 10px) scale(0.7) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(38px, -88px) scale(1.2) rotate(12deg); opacity: 0; }
}

@keyframes emitNoteTwo {
  0% { transform: translate(0, 14px) scale(0.75) rotate(-4deg); opacity: 0; }
  22% { opacity: 1; }
  100% { transform: translate(82px, -52px) scale(1.05) rotate(18deg); opacity: 0; }
}

@keyframes emitNoteThree {
  0% { transform: translate(0, 12px) scale(0.72) rotate(0deg); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translate(64px, -118px) scale(1.1) rotate(-14deg); opacity: 0; }
}

@keyframes emitNoteFour {
  0% { transform: translate(0, 8px) scale(0.65) rotate(2deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(106px, -90px) scale(1) rotate(10deg); opacity: 0; }
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-color);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-experience h3 {
  font-size: 2.5rem;
  color: var(--white);
}

.about-experience p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  max-width: 120px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.about-feature i {
  color: var(--green);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.about-feature span {
  font-size: 0.95rem;
  color: var(--text);
}

/* ---------- Services Section ---------- */
.services { position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 35px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:nth-child(1)::before { background: var(--primary); }
.service-card:nth-child(2)::before { background: var(--orange); }
.service-card:nth-child(3)::before { background: var(--purple); }
.service-card:nth-child(4)::before { background: var(--cyan); }
.service-card:nth-child(5)::before { background: var(--yellow); }
.service-card:nth-child(6)::before { background: var(--green); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card::after {
  content: '';
  position: absolute;
  right: -24px;
  bottom: -48px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 68%);
  opacity: 0;
  transition: var(--transition);
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-icon.has-media {
  width: 96px;
  height: 96px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.26);
}

.service-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:nth-child(1) .service-icon { background: rgba(255,64,129,0.12); color: var(--primary); }
.service-card:nth-child(2) .service-icon { background: rgba(255,109,0,0.12); color: var(--orange); }
.service-card:nth-child(3) .service-icon { background: rgba(124,77,255,0.12); color: var(--purple); }
.service-card:nth-child(4) .service-icon { background: rgba(0,188,212,0.12); color: var(--cyan); }
.service-card:nth-child(5) .service-icon { background: rgba(255,196,0,0.12); color: var(--orange); }
.service-card:nth-child(6) .service-icon { background: rgba(0,200,83,0.12); color: var(--green); }

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-icon.has-media {
  transform: translateY(-4px) scale(1.03);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 12px;
}

/* ---------- Equipment / Gallery ---------- */
.equipment {
  position: relative;
  overflow: hidden;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equipment-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition);
}

.equipment-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.equipment-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.equipment-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.equipment-item:nth-child(1) .equipment-placeholder { background: linear-gradient(135deg, #1a0a10, #1a0815); color: var(--primary); }
.equipment-item:nth-child(2) .equipment-placeholder { background: linear-gradient(135deg, #120a1a, #100818); color: var(--purple); }
.equipment-item:nth-child(3) .equipment-placeholder { background: linear-gradient(135deg, #0a1518, #081418); color: var(--cyan); }
.equipment-item:nth-child(4) .equipment-placeholder { background: linear-gradient(135deg, #1a1208, #1a1006); color: var(--orange); }
.equipment-item:nth-child(5) .equipment-placeholder { background: linear-gradient(135deg, #0a150a, #081408); color: var(--green); }

.equipment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 32, 44, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

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

.equipment-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.equipment-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

/* ---------- Testimonials ---------- */
.testimonials { position: relative; }

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.testimonial-stars i {
  color: var(--yellow);
  font-size: 0.9rem;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--primary); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--orange); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--purple); }

.testimonial-info h4 {
  font-size: 0.95rem;
}

.testimonial-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a10 0%, #18100a 50%, #0a1018 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 64, 129, 0.04);
  top: -100px;
  right: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.04);
  bottom: -80px;
  left: -80px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 { margin-bottom: 20px; }

.cta-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BLOG SECTION — Redesigned ===== */
.blog-section { position: relative; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-image.has-cover {
  align-items: stretch;
  justify-content: stretch;
}

.blog-cover-media,
.blog-sidebar-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cover-media {
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

/* Blog Icon Scene — richer visual compositions */
.blog-icon-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-icon-main {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.blog-icon-bg {
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  z-index: 0;
}

.blog-icon-float {
  position: absolute;
  z-index: 3;
  font-size: 1.1rem;
  opacity: 0.6;
  animation: blogIconFloat 3s ease-in-out infinite;
}

.blog-float-1 {
  top: 25%;
  right: 20%;
  animation-delay: 0s;
}

.blog-float-2 {
  bottom: 25%;
  left: 20%;
  animation-delay: 1.5s;
}

@keyframes blogIconFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-8px) scale(1.15); opacity: 0.8; }
}

.blog-card:nth-child(1) .blog-image { background: linear-gradient(135deg, #1a0a10, #180810); color: var(--primary); }
.blog-card:nth-child(2) .blog-image { background: linear-gradient(135deg, #0a1518, #081218); color: var(--cyan); }
.blog-card:nth-child(3) .blog-image { background: linear-gradient(135deg, #1a1208, #181006); color: var(--orange); }

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}

.blog-card:nth-child(1) .blog-category { background: var(--primary); }
.blog-card:nth-child(2) .blog-category { background: var(--cyan); }
.blog-card:nth-child(3) .blog-category { background: var(--orange); }

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.blog-meta i {
  color: var(--primary);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card .blog-content > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.blog-read-more:hover {
  gap: 12px;
}

/* ---------- Contact Section ---------- */
.contact { position: relative; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-item:nth-child(2) .contact-item-icon { background: rgba(255,64,129,0.12); color: var(--primary); }
.contact-item:nth-child(3) .contact-item-icon { background: rgba(0,188,212,0.12); color: var(--cyan); }
.contact-item:nth-child(4) .contact-item-icon { background: rgba(255,109,0,0.12); color: var(--orange); }
.contact-item:nth-child(5) .contact-item-icon { background: rgba(124,77,255,0.12); color: var(--purple); }

.contact-item:hover .contact-item-icon {
  transform: scale(1.1);
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.blog-card:hover .blog-cover-media {
  transform: scale(1.08);
}
.contact-social a:nth-child(1):hover { background: #e4405f; border-color: #e4405f; }
.contact-social a:nth-child(2):hover { background: #1877f2; border-color: #1877f2; }
.contact-social a:nth-child(3):hover { background: #ff0000; border-color: #ff0000; }
.contact-social a:nth-child(4):hover { background: #ee1d52; border-color: #ee1d52; }
.contact-social a:nth-child(5):hover { background: #25d366; border-color: #25d366; }

/* Contact Form */
.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
  background: var(--bg);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg);
}

/* ---------- Footer ---------- */
.footer {
  background: #06060a;
  padding: 60px 0 30px;
  color: #8a8d9a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer .logo {
  margin-bottom: 15px;
  color: var(--white);
}

.footer .logo-img {
  height: 55px;
}

.footer .logo-title {
  color: var(--white);
}

.footer .logo-subtitle {
  color: #8a8d9a;
}

.footer-about p {
  color: #8a8d9a;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #8a8d9a;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #8a8d9a;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--primary);
  width: 16px;
}

.footer .contact-social a {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: #8a8d9a;
}

.footer .contact-social a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #5a5d6a;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #5a5d6a;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- WhatsApp Button ---------- */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(20, 20, 28, 0.92);
  border: 1px solid rgba(78, 84, 107, 0.48);
  color: var(--white);
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.admin-link:hover {
  transform: translateY(-3px);
  background: rgba(28, 28, 38, 0.96);
}

.whatsapp-float {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s infinite;
  transition: var(--transition);
}

.phone-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.98), rgba(0, 188, 212, 0.98));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 94, 184, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.phone-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 42px rgba(0, 94, 184, 0.4);
}

.phone-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.05rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    bottom: 88px;
    gap: 10px;
  }

  .admin-link {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .phone-float {
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 16px;
    bottom: 24px;
  }
}

/* ---------- Blog Page Specific ---------- */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a12 0%, #100a18 50%, #0a0f18 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-dark); }

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: var(--card);
  border-radius: var(--radius);
  padding: 25px;
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}

.sidebar-categories li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-categories li:last-child { border-bottom: none; }

.sidebar-categories a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sidebar-categories a:hover { color: var(--primary); }

.sidebar-categories span {
  background: var(--bg-soft);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags a {
  padding: 6px 14px;
  background: var(--bg-soft);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.sidebar-tags a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ---------- Blog Detail Page ---------- */
.blog-detail {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.blog-detail-header {
  padding: 35px 35px 25px;
}

.blog-detail-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-detail-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-detail-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.blog-detail-author strong {
  display: block;
  font-size: 0.95rem;
}

.blog-detail-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-detail-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-detail-info i {
  color: var(--primary);
  margin-right: 4px;
}

.blog-detail-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #1a0a10, #180810);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.blog-detail-image.has-cover {
  background: linear-gradient(135deg, #151520, #0d0d13);
}

.blog-detail-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0.07;
  font-size: 6rem;
}

.blog-detail-body {
  padding: 35px;
  line-height: 1.85;
  color: var(--text);
}
.blog-detail-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 24px 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.blog-detail-body figure {
  margin: 28px 0;
}

.blog-detail-body figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.blog-detail-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-detail-body h2 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--heading);
}

.blog-detail-body h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 12px;
}

.blog-detail-body p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.blog-detail-body ul {
  margin: 15px 0 25px 0;
  padding-left: 0;
}

.blog-detail-body ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text);
}

.blog-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.blog-detail-body blockquote {
  background: linear-gradient(135deg, #1a0a10, #18100a);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}

.blog-detail-body blockquote i {
  color: var(--primary);
  opacity: 0.5;
  margin-right: 8px;
  font-size: 1.1rem;
}

.blog-detail-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

.blog-detail-highlight {
  background: linear-gradient(135deg, #0a1518, #0a0f18);
  border-radius: var(--radius-sm);
  padding: 25px;
  margin: 25px 0;
  border: 1px solid rgba(0, 188, 212, 0.15);
}

.blog-detail-highlight h4 {
  color: var(--cyan);
  margin-bottom: 10px;
  font-size: 1rem;
}

.blog-detail-highlight h4 i {
  margin-right: 8px;
}

.blog-detail-highlight p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.blog-detail-cta {
  background: linear-gradient(135deg, #1a0a10, #18100a);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  margin-top: 35px;
}

.blog-detail-cta h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.blog-detail-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-detail-tags {
  padding: 25px 35px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-detail-tags > span {
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 5px;
  color: var(--heading);
}

.blog-detail-tags > span i {
  color: var(--primary);
  margin-right: 5px;
}

.blog-detail-tags a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text);
  transition: var(--transition);
}

.blog-detail-tags a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.blog-detail-share {
  padding: 20px 35px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-detail-share > span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading);
}

.blog-detail-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  font-size: 0.9rem;
}

.blog-detail-share a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.blog-detail-author-box {
  margin: 0 35px 30px;
  padding: 30px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.blog-detail-author-avatar {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.blog-detail-author-info h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.blog-detail-author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.blog-detail-author-social {
  display: flex;
  gap: 10px;
}

.blog-detail-author-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.85rem;
}

.blog-detail-author-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.blog-detail-related {
  padding: 30px 35px 35px;
  border-top: 1px solid var(--border);
}

.blog-detail-related > h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.blog-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.blog-detail-related-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}

.blog-detail-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-detail-related-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.blog-detail-related-content {
  padding: 12px 15px 15px;
}

.blog-detail-related-content span {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-detail-related-content h4 {
  font-size: 0.88rem;
  margin-top: 5px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .blog-detail-header { padding: 25px 20px 20px; }
  .blog-detail-body { padding: 25px 20px; }
  .blog-detail-tags { padding: 20px; }
  .blog-detail-share { padding: 15px 20px 20px; }
  .blog-detail-author-box { margin: 0 20px 25px; flex-direction: column; align-items: center; text-align: center; }
  .blog-detail-author-social { justify-content: center; }
  .blog-detail-related { padding: 25px 20px; }
  .blog-detail-related-grid { grid-template-columns: 1fr; }
  .blog-detail-image { height: 220px; font-size: 3.5rem; }
  .blog-detail-info { gap: 10px; }
}

/* ---------- Hizmetler Page ---------- */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--card);
  border-radius: 20px;
  padding: 45px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }

.service-detail-image {
  height: 300px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.service-detail-image.has-media {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #151520, #0e1018) !important;
}

.service-detail-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-card:nth-child(1) .service-detail-image { background: linear-gradient(135deg, #1a0a10, #180810); color: var(--primary); }
.service-detail-card:nth-child(2) .service-detail-image { background: linear-gradient(135deg, #120a1a, #100818); color: var(--purple); }
.service-detail-card:nth-child(3) .service-detail-image { background: linear-gradient(135deg, #0a1518, #081418); color: var(--cyan); }
.service-detail-card:nth-child(4) .service-detail-image { background: linear-gradient(135deg, #1a1208, #181006); color: var(--orange); }
.service-detail-card:nth-child(5) .service-detail-image { background: linear-gradient(135deg, #1a1808, #181606); color: var(--orange); }
.service-detail-card:nth-child(6) .service-detail-image { background: linear-gradient(135deg, #0a150a, #081408); color: var(--green); }

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-features { list-style: none; }

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: 0.95rem;
}

.service-features li i { color: var(--green); }

/* Price Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-color);
}

.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 { margin-bottom: 10px; }

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  text-align: left;
  margin: 25px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features li i { color: var(--green); }

/* ---------- İletişim Page ---------- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contact-page-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.contact-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-page-card:nth-child(1) i { color: var(--primary); }
.contact-page-card:nth-child(2) i { color: var(--cyan); }
.contact-page-card:nth-child(3) i { color: var(--orange); }
.contact-page-card:nth-child(4) i { color: var(--purple); }

.contact-page-card i {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-page-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-page-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-canvas {
    opacity: 0.92;
  }

  .hero > .container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    display: block;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    flex-shrink: initial;
    padding: 0 8px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 35px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-item:nth-child(1) { grid-column: span 2; }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-page-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; padding: 30px; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 0;
  }

  .logo {
    gap: 8px;
    max-width: calc(100vw - 92px);
  }

  .logo-img {
    height: 42px;
  }

  .logo-title {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.98);
  }

  .logo-subtitle {
    font-size: 0.48rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero {
    padding-top: 108px;
  }

  .hero-canvas,
  .particles {
    top: 18px;
    height: calc(100% - 18px);
  }

  .hero-content {
    z-index: 4;
  }

  .hero h1 {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
  }

  .hero-stat p,
  .hero-badge {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-badge {
    background: rgba(12, 14, 20, 0.62);
    backdrop-filter: blur(12px);
  }

  .about-image {
    overflow: clip;
  }

  .about-experience {
    right: 0;
  }

  .about-image-placeholder {
    height: 360px;
  }

  .about-logo-icon {
    max-width: 250px;
  }

  .about-note {
    right: 2%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    transition: right 0.4s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active { right: 0; }
  .hamburger { display: flex; }

  .hero-stats { gap: 30px; flex-wrap: wrap; }

  .services-grid,
  .testimonials-slider,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .marquee-break {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }

  .marquee-break::before,
  .marquee-break::after {
    width: 42px;
  }

  .marquee-track {
    padding: 14px 0;
    animation-duration: 22s;
  }

  .mq-text {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    padding: 0 10px;
  }

  .mq-dot {
    font-size: 0.95rem !important;
    padding: 0 8px !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  section { padding: 70px 0; }
  .logo-img { height: 36px; }
  .logo-title { font-size: 0.82rem; }
  .logo-subtitle { font-size: 0.42rem; letter-spacing: 0.1em; }
  .about-image-placeholder { height: 310px; padding: 20px; }
  .about-logo-icon { max-width: 210px; }
  .about-note-1 { font-size: 1.2rem; }
  .about-note-2 { font-size: 1rem; }
  .about-note-3 { font-size: 1.05rem; }
  .about-note-4 { font-size: 0.95rem; }
  .hero-stat h3 { font-size: 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .about-features { grid-template-columns: 1fr; }
  .contact-form { padding: 25px; }
  .hero-description { font-size: 1rem; }
  .hero-stats { gap: 22px; }
  .mq-text { font-size: 0.78rem; padding: 0 7px; letter-spacing: 0.12em; }
  .mq-dot { padding: 0 6px !important; }
  .marquee-track { padding: 12px 0; }
}
