/* Wieczność - Zakład Pogrzebowy Radom */
/* Modern, dignified funeral home website */

:root {
  --primary: #0d0d0d;
  --secondary: #1a1a1a;
  --accent: #2a2a2a;
  --gold: #8b7355;
  --text: #e8e8e8;
  --text-light: #a0a0a0;
  --bg: #121212;
  --bg-light: #1e1e1e;
  --white: #ffffff;
  --border: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--gold);
}

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

/* Header */
header {
  background: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}

.header-top a:hover {
  opacity: 1;
}

.emergency-phone {
  background: var(--gold);
  color: var(--primary) !important;
  padding: 4px 12px;
  font-weight: 600;
  opacity: 1 !important;
}

.header-main {
  padding: 15px 0;
}

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

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

.logo-icon {
  font-size: 2.5rem;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 18px;
  transition: background 0.3s;
  font-size: 15px;
}

nav a:hover,
nav a.active {
  background: rgba(255,255,255,0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mobile-image {
  display: none;
}

.hero-content {
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* 24/7 Banner */
.banner-24h {
  background: var(--gold);
  color: var(--primary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.banner-24h a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.3rem;
}

/* Sections */
section {
  padding: 60px 0;
}

section.alt {
  background: var(--bg-light);
}

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

.section-title h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--accent);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.service-card a:hover {
  text-decoration: underline;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-image {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  padding: 20px;
  background: var(--accent);
  border-left: 3px solid var(--gold);
}

.feature h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.gallery-item {
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s;
  background: var(--accent);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

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

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 40px;
}

.contact-item h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  text-decoration: none;
}

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

.contact-map {
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Documents */
.documents-list {
  max-width: 600px;
  margin: 0 auto;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--accent);
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.document-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.document-icon {
  font-size: 2rem;
  color: #c0392b;
}

.document-info h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.document-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Steps/Procedure */
.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  background: var(--gold);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
}

/* CTA Section */
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-phone {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  padding: 15px 40px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
}

.cta-phone:hover {
  transform: scale(1.05);
}

.cta-link {
  display: block;
  margin-top: 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.cta-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-top .container {
    justify-content: center;
    text-align: center;
  }

  .header-main .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    position: static;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 15px 0;
  }

  nav.active ul {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 0;
    background: none;
  }

  .hero-mobile-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .hero-content {
    background: var(--primary);
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-badge {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Back Button */
.back-link {
  display: inline-block;
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--gold);
}

.back-link::before {
  content: "←";
  margin-right: 8px;
}

@media (max-width: 768px) {
  .back-link {
    display: none;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 40px 0 60px;
  text-align: center;
}

.page-header .back-link {
  color: rgba(255,255,255,0.7);
}

.page-header .back-link:hover {
  color: var(--white);
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.9;
}

/* Content Page */
.content-page {
  padding: 60px 0;
}

.content-page h2 {
  color: var(--white);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.content-page h3 {
  color: var(--gold);
  margin: 25px 0 10px;
  font-size: 1.2rem;
}

.content-page p {
  margin-bottom: 15px;
  color: var(--text);
}

.content-page ul {
  margin: 15px 0 15px 25px;
}

.content-page li {
  margin-bottom: 8px;
  color: var(--text);
}

/* Offer Page Specific Styles */
.offer-nav {
  background: var(--accent);
  padding: 20px;
  margin-bottom: 40px;
  border-left: 3px solid var(--gold);
}

.offer-nav h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-nav li {
  margin: 0;
}

.offer-nav a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.offer-nav a:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.offer-section {
  background: var(--bg-light);
  padding: 40px;
  margin-bottom: 30px;
  border-left: 4px solid var(--gold);
  scroll-margin-top: 150px;
}

.offer-section h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.offer-section > p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.offer-subsection {
  background: var(--accent);
  padding: 25px;
  margin: 20px 0;
}

.offer-subsection h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.offer-subsection ul {
  margin: 0;
  padding-left: 20px;
}

.offer-subsection li {
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}

.offer-subsection li::marker {
  color: var(--gold);
}

.offer-note {
  background: var(--primary);
  padding: 20px;
  margin-top: 20px;
  border-left: 3px solid var(--gold);
}

.offer-note p {
  color: var(--text);
  margin: 0;
  font-size: 0.95rem;
}

.offer-note a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .offer-section {
    padding: 25px 20px;
  }

  .offer-section:last-of-type {
    padding-bottom: 100px;
  }

  .offer-subsection {
    padding: 20px 15px;
  }

  .offer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary) 0%, rgba(13,13,13,0.95) 100%);
    padding: 12px 10px 16px;
    margin: 0;
    border-left: none;
    border-top: 1px solid var(--gold);
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }

  .offer-nav h3 {
    display: none;
  }

  .offer-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 6px;
  }

  .offer-nav a {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.2;
  }

  .offer-nav a:hover,
  .offer-nav a:active {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-2px);
  }
}

/* Button */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: #6d5a44;
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary);
}

.btn-gold:hover {
  background: #9a7209;
}

/* About Page Styles */
.about-main {
  padding: 50px 0;
  background: var(--bg);
}

.about-flow {
  max-width: 900px;
  margin: 0 auto;
}

.about-float-image {
  float: right;
  width: 380px;
  margin: 0 0 25px 35px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.about-flow h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 35px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.about-flow h2:first-of-type {
  margin-top: 0;
}

.about-flow p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-list {
  margin: 0 0 20px 0;
  padding-left: 25px;
}

.about-list li {
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-list li::marker {
  color: var(--gold);
}

.about-values-section {
  padding: 50px 0;
  background: var(--bg-light);
}

.section-heading {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: block;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--accent);
  padding: 30px;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .about-float-image {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px auto;
    display: block;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-flow h2,
  .section-heading {
    font-size: 1.4rem;
  }
}

/* Co Zrobic Guide Page Styles - Light Theme */

/* Quick Navigation */
.guide-nav {
  background: var(--gold);
  padding: 20px 0;
  position: sticky;
  top: 100px;
  z-index: 100;
}

.guide-nav h3 {
  color: var(--primary);
  font-size: 0.9rem;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guide-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-nav-links a {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.guide-nav-links a:hover {
  background: var(--white);
  color: var(--primary);
}

/* Guide Section - Dark Theme */
.guide-section-light {
  padding: 60px 0;
  background: var(--bg);
  scroll-margin-top: 200px;
}

.guide-section-light .section-heading-dark {
  scroll-margin-top: 200px;
}

.guide-section-light.alt {
  background: var(--bg-light);
}

.section-heading-dark {
  text-align: center;
  color: var(--white);
  font-size: 1.8rem;
  margin: 0 0 15px 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0 0 40px 0;
}

.section-intro {
  text-align: center;
  color: var(--text);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}


.guide-steps {
  margin: 0 0 20px 0;
  padding-left: 25px;
}

.guide-steps li {
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.7;
}

.guide-steps li::marker {
  color: var(--gold);
  font-weight: bold;
}

.guide-note {
  color: var(--text-light);
  font-style: italic;
  margin-top: 15px;
}

/* Contact Box - Dark */
.contact-box {
  background: var(--primary);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  border-left: 4px solid var(--gold);
}

.contact-label {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-phone {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
}

.contact-phone:hover {
  color: var(--white);
}

.contact-hours {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
}

.contact-alt {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.contact-alt span {
  display: block;
  margin-bottom: 5px;
}

.contact-alt strong {
  color: var(--white);
}

/* Status Cards - Dark */
.status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.status-card {
  background: var(--accent);
  padding: 30px;
  border-left: 4px solid var(--gold);
}

.status-card.highlight {
  border-left-color: #6b8e23;
}

.status-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 15px 0;
}

.status-card.highlight h3 {
  color: #9acd32;
}

.status-card > p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.info-block {
  background: var(--bg);
  padding: 20px;
  margin-bottom: 20px;
}

.info-block h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.info-block ul {
  margin: 0;
  padding-left: 20px;
}

.info-block li {
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-block li::marker {
  color: var(--gold);
}

.status-note {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.status-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Organization Steps - Dark */
.org-steps {
  max-width: 800px;
  margin: 0 auto;
}

.org-step {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 25px;
  border: 1px solid var(--border);
}

.org-step-number {
  background: var(--gold);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.org-step-content h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.org-step-content p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.org-step-content .details-list {
  margin: 15px 0 0 0;
  padding-left: 20px;
}

.org-step-content .details-list li {
  color: var(--text);
  margin-bottom: 8px;
}

.org-step-content .details-list li::marker {
  color: var(--gold);
}


@media (max-width: 768px) {
  .status-cards {
    grid-template-columns: 1fr;
  }

  .org-step {
    flex-direction: column;
    gap: 15px;
  }

  .contact-phone {
    font-size: 1.5rem;
  }

  .guide-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: linear-gradient(to top, var(--primary) 0%, rgba(13,13,13,0.95) 100%);
    padding: 12px 10px 16px;
    border-top: 1px solid var(--gold);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }

  .guide-nav h3 {
    display: none;
  }

  .guide-nav-links {
    flex-direction: row;
    justify-content: center;
    gap: 6px;
  }

  .guide-nav-links a {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.2;
  }

  .guide-nav-links a:hover,
  .guide-nav-links a:active {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .page-header {
    padding: 20px 0 30px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .guide-section-light {
    scroll-margin-top: 120px;
    padding: 15px 0 40px;
  }

  .guide-section-light:last-of-type {
    padding-bottom: 80px;
  }

  .section-heading-dark {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .status-cards {
    gap: 20px;
  }

  .status-card {
    padding: 20px;
  }

  .status-card h3 {
    font-size: 1.1rem;
  }

  .info-block {
    padding: 15px;
  }

  .contact-box {
    padding: 15px;
    margin: 15px 0;
  }

  .contact-phone {
    font-size: 1.5rem;
  }

  .org-step {
    padding: 20px;
    margin-bottom: 15px;
  }

  .section-intro {
    margin-bottom: 25px;
  }
}
