/* assets/css/style.css - Design System dla Kamieniarstwo Jagielski */

:root {
  --bg-main: #ffffff;
  --bg-section-alt: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-navbar: #111315;
  
  --color-gold: #d4af37;
  --color-gold-hover: #e5be48;
  --color-gold-light: rgba(212, 175, 55, 0.12);
  
  --text-main: #334155;
  --text-muted: #64748b;
  --text-heading: #0f172a;
  --text-gold: #b8860b;

  --border-light: #e2e8f0;
  --border-gold: rgba(212, 175, 55, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.25);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

/* Kontenery i układy */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 48px 0;
}

/* Typografia w Sekcjach Treści */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a6f20;
  background: var(--color-gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #0f172a;
  background: none;
  -webkit-text-fill-color: initial;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 32px;
}

/* Pasek Górny i Nawigacja */
.topbar {
  background: #0b0c0e;
  padding: 8px 0;
  font-size: 0.875rem;
  color: #9aa0a6;
}

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

.topbar-info {
  display: flex;
  gap: 25px;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9aa0a6;
}

.topbar-info a {
  color: #ffffff;
}

.topbar-info i {
  color: var(--color-gold);
}

.topbar-social span {
  color: #9aa0a6;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111315;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-gold), #8a6f20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: #f0f2f5 !important;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

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

/* Przyciski CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #b89128);
  color: #0d0f11;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-hover), #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.hero .btn-outline, .subpage-hero .btn-outline, .footer .btn-outline {
  color: #ffffff;
  border-color: var(--border-gold);
}

.btn-outline:hover {
  background: var(--color-gold-light);
  color: #b8860b;
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section - Zachowany Ciemny Styl Prestiżowy */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, rgba(17, 19, 21, 0.85) 0%, #111315 100%),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.subpage-hero {
  background: #111315;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-align: left !important;
}

.subpage-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
}

.subpage-hero .section-tag {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.subpage-hero h1, .subpage-hero h2, .subpage-hero p {
  text-align: left !important;
}

.hero h1, .hero h2, .hero h3, .subpage-hero h1, .subpage-hero h2 {
  color: #ffffff !important;
}

.subpage-hero p {
  color: #9aa0a6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.15rem;
  color: #9aa0a6;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--color-gold);
}

.stat-item p {
  font-size: 0.875rem;
  color: #9aa0a6;
  margin: 0;
}

.hero-card {
  background: rgba(25, 28, 32, 0.92);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.hero-card p {
  font-size: 0.95rem;
  color: #9aa0a6;
  margin-bottom: 20px;
}

.hero-card .form-label {
  color: #f0f2f5;
}

.hero-card .form-control {
  background: #111316;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.hero-card .form-control:focus {
  outline: none;
  background: #181a1d !important;
  color: #ffffff !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 3px var(--color-gold-light) !important;
}

.hero-card input:-webkit-autofill,
.hero-card input:-webkit-autofill:hover, 
.hero-card input:-webkit-autofill:focus,
.hero-card input:-webkit-autofill:active,
.hero-card textarea:-webkit-autofill,
.hero-card select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #181a1d inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Usługi Grid - Jasne Karty na Białym Tle */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  background: #f8fafc;
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--color-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.service-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #b8860b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 12px;
  color: #8a6f20;
}

/* Galeria i Filtry */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  background: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 11, 13, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 20px;
  opacity: 0.95;
  transition: var(--transition);
  pointer-events: none;
}

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

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(10, 11, 13, 0.9) 100%);
}

.gallery-title {
  font-size: 1.1rem;
  color: #fff;
}

.gallery-cat {
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 950px;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #0d0f12;
}

.lightbox-info {
  padding: 25px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ Accordion - Czytelny Jasny Styl */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 20px 25px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
}

.faq-question i {
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  color: #475569;
  font-size: 0.98rem;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px 25px;
}

/* Formularz Kontaktowy - Czytelny Jasny Styl */
.contact-form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.contact-form h3 {
  color: #0f172a;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: #0f172a;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-light);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #0f172a !important;
  caret-color: #0f172a !important;
  transition: background-color 5000s ease-in-out 0s;
}

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

/* Stylizacja dla treści SEO */
.seo-content {
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.seo-content h2, .seo-content h3, .seo-content h4 {
  color: #0f172a;
  margin-top: 20px;
  margin-bottom: 12px;
}

.seo-content strong {
  color: #0f172a;
}

.seo-content p, .seo-content li {
  color: #334155;
}

/* Stopka */
.footer {
  background: #0b0c0e;
  border-top: 1px solid var(--border-light);
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: var(--color-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Sekcja Podstron SEO w Stopce (3 Kolumny) */
.footer-seo-section {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.footer-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 15px;
  width: 100%;
}

.footer-seo-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: var(--transition);
}

.footer-seo-link:hover {
  color: #ffffff;
  padding-left: 5px;
}

@media (max-width: 1100px) {
  .footer-seo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }
}

@media (max-width: 768px) {
  .footer-seo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Stylizacja dla Admina */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: #0b0c0e;
  border-right: 1px solid var(--border-light);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.admin-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

.admin-nav a:hover, .admin-nav a.active {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.admin-main {
  flex: 1;
  padding: 40px;
  background: var(--bg-main);
  overflow-y: auto;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
}

/* Uniwersalny dwukolumnowy grid z responsywnym rozbiciem na mobilce */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-main);
}

.why-us-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 380px;
  width: 100%;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-box-sticky {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 500px;
  position: sticky;
  top: 100px;
  width: 100%;
}

.about-img-box-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Strona Kontaktowa Grid & Formularz */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

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

/* Podstrony Galanterii Grid & Obrazek */
.galanteria-item-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.galanteria-sidebar-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  width: 100%;
}

.galanteria-sidebar-img img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

@media (min-width: 993px) {
  .order-desktop-first {
    order: -1;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .galanteria-item-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .galanteria-sidebar-img img {
    max-height: 320px;
    width: 100%;
  }
  .why-us-img-wrapper img {
    max-height: 380px;
    width: 100%;
  }
  .about-img-box {
    height: 280px !important;
  }
  .about-img-box-sticky {
    height: 300px !important;
    position: static !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 75px;
  }
  .topbar {
    display: none;
  }
  .nav-actions .btn-primary {
    display: none !important;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0d0f11;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Mobilne pływające menu dolne */
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(13, 15, 17, 0.96);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
  }

  .mobile-bar-call {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid var(--border-gold);
  }

  .mobile-bar-call:active, .mobile-bar-call:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
  }

  .mobile-bar-quote {
    background: linear-gradient(135deg, var(--color-gold), #b89128);
    color: #0d0f11;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .mobile-bar-quote:active, .mobile-bar-quote:hover {
    background: linear-gradient(135deg, var(--color-gold-hover), #d4af37);
  }
}

.mobile-bottom-bar {
  display: none;
}

/* Sekcja i Komponenty FAQ */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  color: #0f172a;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
  color: var(--text-gold);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #64748b;
}

.faq-answer {
  padding: 18px 20px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid #e2e8f0;
  display: none;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--text-gold);
}

.faq-item.active .faq-question {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
