/* ===== GARAGE 77 — Resort Blue Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:ital,wght@0,500;1,500&family=Poppins:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #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;

  --accent-rgb: 42, 143, 189;
  --bg-rgb: 255, 255, 255;

  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --accent-font: 'Playfair Display', serif;
  --heading-weight: 600;
  --body-weight: 400;

  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.accent-serif {
  font-family: var(--accent-font);
  font-style: italic;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

/* Word break for long Russian words */
.service-card,
.team-card,
.hero h1,
.section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-section);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--accent-light);
}

.nav-brand-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.nav-brand-name span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.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-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 1.5rem;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,42,58,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: linear-gradient(135deg, var(--dark-section) 0%, #0d1b2a 50%, #1a3a5a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,143,189,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(42,143,189,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(42,143,189,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 8rem 2rem 6rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(42, 143, 189, 0.2);
  border: 1px solid rgba(42, 143, 189, 0.3);
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 .accent-serif {
  color: var(--accent);
  display: inline;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted-on-dark);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
  margin-top: 0.25rem;
}

/* Hero decorative circles */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-decor-1 {
  width: 160px;
  height: 160px;
  top: 15%;
  left: 5%;
  border: 3px solid rgba(255,255,255,0.8);
}

.hero-decor-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 8%;
  border: 3px solid var(--accent);
}

.hero-decor-3 {
  width: 140px;
  height: 140px;
  bottom: 18%;
  left: 8%;
  border: 3px solid var(--accent);
}

.hero-decor-4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  right: 5%;
  border: 3px solid rgba(255,255,255,0.8);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 143, 189, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 143, 189, 0.35);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: var(--dark-section);
  color: var(--text-on-dark);
}

.section-surface {
  background: var(--surface);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: var(--text-muted-on-dark);
}

.section-label {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== SERVICES GRID (2x2 photo-cards) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.service-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.service-card-price {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.service-card-promo {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent);
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 0.6rem;
}

.service-card-link::after {
  content: '\2192';
}

/* ===== ABOUT / USP SECTION ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-collage {
  position: relative;
  height: 420px;
}

.about-collage-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-collage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-collage-circle:nth-child(1) {
  width: 280px;
  height: 280px;
  top: 0;
  left: 0;
  border: 3px solid rgba(255,255,255,0.9);
  z-index: 3;
}

.about-collage-circle:nth-child(2) {
  width: 220px;
  height: 220px;
  top: 30px;
  right: 0;
  border: 3px solid var(--accent);
  z-index: 2;
}

.about-collage-circle:nth-child(3) {
  width: 180px;
  height: 180px;
  bottom: 0;
  left: 60px;
  border: 3px solid var(--accent);
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.usp-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.usp-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.usp-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 143, 189, 0);
  transition: background var(--transition);
  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.35);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.gallery-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(26,42,58,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 3;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COUNTERS / STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #1a6f9a 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.contact-item:hover {
  background: var(--accent-light);
  transform: translateX(4px);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-text h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-text a:hover {
  color: var(--accent);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-section);
  color: var(--text-on-dark);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted-on-dark);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bottom-bar .btn {
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  min-height: 44px;
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--dark-section) 0%, #0d1b2a 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42,143,189,0.12) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== SERVICES PAGE DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-collage {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-decor-1,
  .hero-decor-4 {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; }

  .section { padding: 3.5rem 1.25rem; }

  .hero-content { padding: 7rem 1.25rem 4rem; }

  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-decor { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .about-collage {
    height: 300px;
  }

  .about-collage-circle:nth-child(1) {
    width: 200px;
    height: 200px;
  }

  .about-collage-circle:nth-child(2) {
    width: 160px;
    height: 160px;
  }

  .about-collage-circle:nth-child(3) {
    width: 130px;
    height: 130px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-bottom-bar {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .sticky-bottom-bar .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .page-hero {
    padding: 7rem 1.25rem 3rem;
  }
}

/* ===== DARK SECTION overrides ===== */
.section-dark .section-label {
  color: rgba(42, 143, 189, 0.8);
}

.section-dark .service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .service-card-body h3 {
  color: var(--text-on-dark);
}

.section-dark .service-card-body p {
  color: var(--text-muted-on-dark);
}

/* Bottom padding for sticky bar */
body {
  padding-bottom: 70px;
}
