/*
Theme Name: MKS Parasol Sponsor Theme
Theme URI: https://parasol.wroclaw.pl
Author: FimMa
Author URI: https://gemini.google.com
Description: Dedykowany, nowoczesny motyw landing page dla MKS Parasol Wrocław do pozyskiwania partnerów i sponsorów.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parasol-sponsor
Tags: one-column, custom-menu, translation-ready, dark
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #a80000;     /* Czerwień MKS Parasol */
  --primary-hover: #800000;
  --primary-glow: rgba(168, 0, 0, 0.15);
  
  /* Jasny Motyw */
  --bg-light: #ffffff;           /* Główne tło - białe */
  --bg-alt: #f7f9fa;             /* Tło naprzemienne - jasnoszary */
  --bg-card: #ffffff;            /* Tło kart - białe */
  --bg-card-hover: #fafafa;
  
  --accent-gold: #b39763;        /* Złote akcenty premium */
  --accent-gold-hover: #9c8253;
  --accent-gold-glow: rgba(179, 151, 99, 0.2);
  
  --text-primary: #1a1a1a;       /* Ciemny tekst główny */
  --text-secondary: #4a4a4a;     /* Ciemnoszary tekst poboczny */
  --text-muted: #888888;         /* Jasnoszary tekst pomocniczy */
  
  --border-color: #e0e5eb;       /* Subtelne jasne obramowanie */
  --border-focus: #a80000;
  
  --font-main: 'Raleway', sans-serif;
  --font-headings: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: #d0d5dd;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

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

/* Teksty z gradientem (na jasnym tle używamy gradientów z ciemniejszymi barwami) */
.text-gradient-gold {
  background: linear-gradient(135deg, #000 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #000 40%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 0, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background-color: rgba(168, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-yt {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-yt:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 0, 0, 0.4);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 151, 99, 0.4);
}

/* Header & Nawigacja */
header.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 75px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  padding: 5px 0;
  position: relative;
}

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

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
  background: url('/assets/images/druzyna-tlo.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-color);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.45) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 0, 0, 0.08);
  border: 1px solid rgba(168, 0, 0, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 11px;
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 25px;
  line-height: 1.15;
  color: #000000;
}

.hero p.lead {
  font-size: 16px;
  line-height: 1.7;
  color: #111111;
  font-weight: 500;
  margin-bottom: 30px;
}

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

/* Wideo w nowym miejscu */
.promo-video-section {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.video-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-section-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.video-section-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 25px;
}

.video-media-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&q=80&w=1000') center/cover no-repeat;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(168, 0, 0, 0.4);
  position: relative;
  z-index: 11;
}

.video-play-btn svg {
  fill: #fff;
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--primary-hover);
  box-shadow: 0 0 25px rgba(168, 0, 0, 0.6);
}

.video-play-label {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 11;
}

.video-wrapper.playing .video-poster {
  opacity: 0;
  pointer-events: none;
}

/* Belka statystyk */
.stats-bar {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 45px 20px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-item p {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* Kim jesteśmy */
.about {
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-wrapper.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Dlaczego warto nas wspierać? */
.why-support {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: rgba(168, 0, 0, 0.2);
  box-shadow: var(--shadow-hover);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(168, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000000;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.why-card:nth-child(1), .why-card:nth-child(2), .why-card:nth-child(3) {
  grid-column: span 2;
}
.why-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.why-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Co zyskuje partner? */
.benefits {
  background-color: var(--bg-light);
}

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

.benefits-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.benefits-content p.lead-text {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 35px;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}

.benefit-item {
  display: flex;
  gap: 15px;
}

.benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(168, 0, 0, 0.08);
  border: 1px solid rgba(168, 0, 0, 0.2);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-check svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.benefit-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #000000;
}

.benefit-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

.benefits-cta-box {
  border-left: 3px solid var(--primary-color);
  padding: 15px 25px;
  background-color: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
}

.benefits-cta-box h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.benefits-cta-box p {
  color: var(--text-secondary);
  font-size: 14px;
}

.benefits-preview {
  position: relative;
  background: radial-gradient(circle at 10% 10%, #fdfdfd 0%, #f5f6f8 100%);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preview-jersey {
  align-self: center;
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-jersey svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-color);
  filter: drop-shadow(0 10px 15px rgba(168, 0, 0, 0.2));
}

.preview-jersey-logo {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 11px;
  color: #ffffff;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(0,0,0,0.3);
}

.preview-social-mock {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.social-name {
  width: 80px;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.social-img {
  height: 80px;
  background-color: #f7f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  color: var(--accent-gold);
  text-transform: uppercase;
  border: 1px dashed rgba(179, 151, 99, 0.4);
}

/* Sekcja 5: Potrzeby */
.needs {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.need-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.need-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(168,0,0,0.02);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.need-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(168, 0, 0, 0.08);
  border: 1px solid rgba(168, 0, 0, 0.2);
  color: var(--primary-color);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.need-card h4 {
  font-size: 15px;
  color: var(--text-primary);
}

.needs-quote-box {
  background: linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow);
}

.needs-quote-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000000;
}

.needs-quote-box p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Formularz w sekcji Hero */
.hero-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
}

.hero-form-wrapper h3 {
  font-size: 20px;
  margin-bottom: 8px;
  text-align: center;
  color: #000000;
}

.hero-form-wrapper p.form-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

/* Elementy Formularza */
.form-group {
  margin-bottom: 18px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ccd1d9;
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 8px rgba(168, 0, 0, 0.15);
  background-color: #ffffff;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 4px;
  font-size: 13px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.3);
  color: #1b5e20;
}

.form-message.error {
  display: block;
  background-color: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.3);
  color: #b71c1c;
}

/* Nowa uproszczona Sekcja Kontaktowa (zamiast starej z formularzem) */
.contact-simple {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-simple-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-simple-info p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card-item {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.contact-card-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(168, 0, 0, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-card-item h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.contact-card-item p {
  font-size: 15px;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact-card-item p a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card-item p a:hover {
  color: var(--primary-color);
}

/* Sekcja 9: Siedziba i Mapa */
.map-section {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

.map-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.map-content {
  padding: 80px 40px 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.map-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
}

.map-address-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.map-address-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.map-address-box p {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-primary);
}

.map-address-box p:last-child {
  margin-bottom: 0;
}

.slogan-bottom-box {
  margin-top: 10px;
  padding: 16px 20px;
  background: rgba(168, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

.slogan-text {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 !important;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.map-container {
  height: 450px;
  position: relative;
  background-color: #f0f0f0;
  border-left: 1px solid var(--border-color);
}

/* W jasnym motywie mapa Leaflet ma standardowe kolory */
.leaflet-container {
  background: #f0f0f0 !important;
}

.leaflet-tile {
  filter: none !important; /* Brak filtrów odwracających kolory */
}

/* Stopka */
footer.site-footer {
  background-color: #111111;
  border-top: 1px solid var(--border-color);
  padding: 50px 20px;
  text-align: center;
  color: #888888;
  font-size: 13px;
}

footer .footer-logo,
footer .custom-logo,
footer .custom-logo-link img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

footer p {
  margin-bottom: 10px;
}

footer .footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

footer .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbbbb;
}

footer .footer-socials a:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsywność */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 20px;
  }
  
  .hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 70px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .video-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .why-card:nth-child(1), .why-card:nth-child(2), .why-card:nth-child(3), .why-card:nth-child(4) {
    grid-column: span 1;
  }
  .why-card:nth-child(5) {
    grid-column: span 2;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .needs-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-simple-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-grid {
    grid-template-columns: 1fr;
  }
  
  .map-content {
    padding: 60px 20px;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 767px) {
  header.site-header {
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .logo img {
    height: 60px;
  }
  
  .hero-form-wrapper {
    padding: 25px 20px;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu a {
    font-size: 20px;
    color: #1a1a1a;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card:nth-child(1), .why-card:nth-child(2), .why-card:nth-child(3),
  .why-card:nth-child(4), .why-card:nth-child(5) {
    grid-column: auto;
  }
  
  .benefit-list {
    grid-template-columns: 1fr;
  }
  
  .needs-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

