/* ═══════════════════════════════════════════════════
   Diamond Detailing Bishkek — Resort Blue Style
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── CSS Variables ── */
:root {
  --background: #ffffff;
  --surface: #f5f7fa;
  --dark-section: #1a2a3a;
  --accent: #2a8fbd;
  --accent-hover: #238aab;
  --text: #1a2a3a;
  --text-muted: #6b7c8a;
  --text-on-dark: #ffffff;
  --text-muted-on-dark: #9aacba;
  --border: #e2e8f0;
  --accent-light: #e8f4f8;

  /* effects.js required variables */
  --accent-rgb: 42, 143, 189;
  --bg-rgb: 255, 255, 255;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --accent-font: 'Playfair Display', serif;
  --heading-weight: 600;
  --letter-spacing-heading: -0.01em;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26, 42, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 42, 58, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 42, 58, 0.15);
  --shadow-hover: 0 12px 48px rgba(42, 143, 189, 0.2);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

/* ── Text overflow protection ── */
.service-card, .team-card, .hero h1, .section-header h2,
h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.accent-text {
  font-family: var(--accent-font);
  font-style: italic;
  color: var(--accent);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--accent);
}

/* Burger Menu */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   SECTIONS — Base
   ═══════════════════════════════════════════════════ */

.section {
  padding: 80px 0;
  position: relative;
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: var(--dark-section);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section--dark p,
.section--dark .text-muted {
  color: var(--text-muted-on-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-label {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  padding: 0 24px;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.section-header .section-label::before { left: 0; }
.section-header .section-label::after { right: 0; }

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section--dark .section-header p {
  color: var(--text-muted-on-dark);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 35%, #1e3a5f 70%, #2a8fbd 100%);
  overflow: hidden;
}

/* Decorative gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(42, 143, 189, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 143, 189, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(232, 244, 248, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  color: var(--text-on-dark);
}

.hero-content .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(42, 143, 189, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(42, 143, 189, 0.3);
}

.hero-content h1 {
  color: var(--text-on-dark);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
}

.hero-content h1 .highlight {
  color: var(--accent);
  font-family: var(--accent-font);
  font-style: italic;
}

.hero-content .hero-desc {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero decorative photo circles */
.hero-decor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-circle:nth-child(1) {
  width: 180px; height: 180px;
  top: 10%; left: 5%;
  border-color: var(--accent);
  z-index: 3;
}

.hero-circle:nth-child(2) {
  width: 140px; height: 140px;
  top: 5%; right: 10%;
  border-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.hero-circle:nth-child(3) {
  width: 160px; height: 160px;
  bottom: 15%; right: 0;
  border-color: var(--accent);
  z-index: 3;
}

.hero-circle:nth-child(4) {
  width: 120px; height: 120px;
  bottom: 5%; left: 15%;
  border-color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 143, 189, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 143, 189, 0.45);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: var(--dark-section);
  color: #fff;
}

.btn--dark:hover {
  background: #243a4d;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   SERVICE CARDS — Photo Cards (2×2 grid)
   ═══════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(42, 143, 189, 0.4);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   UTP / FEATURES
   ═══════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(42, 143, 189, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(42, 143, 189, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  border: 1px solid rgba(42, 143, 189, 0.3);
}

.feature-card h4 {
  color: var(--text-on-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--text-muted-on-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   TEAM — Round photos (3 columns)
   ═══════════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-items: center;
}

.team-card {
  text-align: center;
  max-width: 300px;
}

.team-card-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.team-card:hover .team-card-photo {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card .team-role {
  color: var(--accent);
  font-family: var(--accent-font);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.team-card .team-spec {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   GALLERY — Rounded Grid (3 columns)
   ═══════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 143, 189, 0.0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: rgba(42, 143, 189, 0.4);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26, 42, 58, 0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════
   ABOUT — Collage (3 overlapping circles)
   ═══════════════════════════════════════════════════ */

.about-collage {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.about-collage .circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--background);
  box-shadow: var(--shadow-lg);
}

.about-collage .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-collage .circle:nth-child(1) {
  width: 180px; height: 180px;
  left: 10%;
  z-index: 1;
}

.about-collage .circle:nth-child(2) {
  width: 200px; height: 200px;
  z-index: 2;
}

.about-collage .circle:nth-child(3) {
  width: 160px; height: 160px;
  right: 10%;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   STATS / COUNTERS
   ═══════════════════════════════════════════════════ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted-on-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-item a,
.contact-item p {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a3a 0%, #1e3a5f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(42, 143, 189, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(42, 143, 189, 0.15) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   STICKY BOTTOM BAR
   ═══════════════════════════════════════════════════ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26, 42, 58, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(42, 143, 189, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.footer {
  background: #0d1b2a;
  color: var(--text-muted-on-dark);
  padding: 48px 0 100px;
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark);
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted-on-dark);
  font-size: 0.85rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  color: rgba(154, 172, 186, 0.6);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-on-dark);
  transition: all var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════ */

.breadcrumbs {
  padding: 100px 0 20px;
  background: var(--surface);
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.breadcrumbs-list li::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumbs-list li:last-child::after {
  display: none;
}

.breadcrumbs-list a {
  color: var(--text-muted);
}

.breadcrumbs-list a:hover {
  color: var(--accent);
}

.breadcrumbs-list li:last-child {
  color: var(--text);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   PAGE HEADER (for inner pages)
   ═══════════════════════════════════════════════════ */

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #1a2a3a 0%, #1e3a5f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(42, 143, 189, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(42, 143, 189, 0.1) 0%, transparent 40%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.service-detail-gallery {
  display: grid;
  gap: 12px;
}

.service-detail-gallery .main-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-detail-gallery .main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-gallery .thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.service-detail-gallery .thumb-row img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--transition);
}

.service-detail-gallery .thumb-row img:hover {
  opacity: 0.8;
}

.service-detail-info h2 {
  margin-bottom: 16px;
}

.service-detail-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   SECTION DECORATIVE SHAPES
   ═══════════════════════════════════════════════════ */

.section-shape {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-light);
  box-shadow: 0 4px 20px rgba(42, 143, 189, 0.15);
  opacity: 0.6;
  pointer-events: none;
}

.section-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-shape--tl {
  top: -30px; left: -30px;
  width: 120px; height: 120px;
}

.section-shape--tr {
  top: 40px; right: -20px;
  width: 100px; height: 100px;
}

.section-shape--bl {
  bottom: -20px; left: 20px;
  width: 90px; height: 90px;
}

.section-shape--br {
  bottom: 30px; right: -15px;
  width: 110px; height: 110px;
}

/* Hide shapes on mobile to avoid overflow */
@media (max-width: 768px) {
  .section-shape {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 100px 0;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-decor {
    height: 420px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .nav-desktop {
    display: flex;
  }

  .burger {
    display: none;
  }

  .about-collage {
    height: 350px;
  }

  .about-collage .circle:nth-child(1) {
    width: 220px; height: 220px;
    left: 15%;
  }
  .about-collage .circle:nth-child(2) {
    width: 260px; height: 260px;
  }
  .about-collage .circle:nth-child(3) {
    width: 200px; height: 200px;
    right: 15%;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-decor {
    height: 480px;
  }

  .hero-circle:nth-child(1) {
    width: 200px; height: 200px;
  }

  .hero-circle:nth-child(2) {
    width: 160px; height: 160px;
  }

  .hero-circle:nth-child(3) {
    width: 180px; height: 180px;
  }

  .about-collage {
    height: 400px;
  }
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX (simple CSS-only hint)
   ═══════════════════════════════════════════════════ */

.gallery-item:focus-within {
  z-index: 10;
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY & PRINT
   ═══════════════════════════════════════════════════ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ensure body has enough bottom padding for sticky bar */
body {
  padding-bottom: 70px;
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE — Full list with extended cards
   ═══════════════════════════════════════════════════ */

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-full-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-full-card .card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.service-full-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-full-card .card-content {
  padding: 28px;
}

.service-full-card .card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-full-card .card-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .service-full-card {
    grid-template-columns: 1fr 1fr;
  }

  .service-full-card .card-image {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    aspect-ratio: auto;
    min-height: 280px;
  }

  .service-full-card:nth-child(even) {
    direction: rtl;
  }

  .service-full-card:nth-child(even) > * {
    direction: ltr;
  }

  .service-full-card:nth-child(even) .card-image {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — Enhanced
   ═══════════════════════════════════════════════════ */

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 56px;
  font-size: 1rem;
}

.contact-action-btn--call {
  background: var(--accent);
  color: #fff;
}

.contact-action-btn--call:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.contact-action-btn--wa {
  background: #25d366;
  color: #fff;
}

.contact-action-btn--wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.contact-action-btn--email {
  background: var(--dark-section);
  color: #fff;
}

.contact-action-btn--email:hover {
  background: #243a4d;
  color: #fff;
  transform: translateY(-2px);
}

.contact-action-btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.contact-action-btn--ig:hover {
  color: #fff;
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .contact-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}
