/* ===== Service Page Shared Styles ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #0F1D36;
  --navy-light: #1B2A4A;
  --navy-mid:   #263D5E;
  --blue:       #2A9DF4;
  --blue-light: #5BB8F7;
  --cyan:       #00D4FF;
  --white:      #FFFFFF;
  --off-white:  #F0F4F8;
  --gray:       #94A3B8;
  --gray-dark:  #64748B;
  --gold:       #F59E0B;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 29, 54, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 157, 244, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-brand span {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-brand .amp { color: var(--cyan); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

.back-link:hover {
  color: var(--white);
  border-color: var(--cyan);
}

/* ===== SERVICE HERO ===== */
.service-hero {
  position: relative;
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  overflow: hidden;
  text-align: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 70%);
  animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
}

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

.service-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-hero .breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
}

.service-hero .breadcrumb a:hover { color: var(--blue-light); }

.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.service-hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== HERO IMAGE ===== */
.service-showcase {
  max-width: 800px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.service-showcase img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(42, 157, 244, 0.2);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 24px;
}

.gallery-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.gallery-header p {
  color: var(--gray-dark);
  margin-top: 8px;
  font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.gallery-card .card-body {
  padding: 18px 20px;
}

.gallery-card .card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.gallery-card .card-body p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* Empty state for future photos */
.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed rgba(42, 157, 244, 0.25);
}

.gallery-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.gallery-placeholder h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.gallery-placeholder p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.service-cta {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  padding: 60px 24px;
  text-align: center;
}

.service-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.service-cta p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42, 157, 244, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 157, 244, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: var(--gray);
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}

footer a {
  color: var(--cyan);
  text-decoration: none;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .service-hero { padding: 120px 20px 60px; }
  .gallery-section { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-cta { padding: 48px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
