/* Base Styles */
:root {
  --primary: #ed1d24;
  --primary-light: #f04b51;
  --primary-dark: #d1070e;
  --secondary: #f0f2f5;
  --secondary-dark: #e1e4e8;
  --secondary-foreground: #1f2937;
  --background: #ffffff;
  --foreground: #fff;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --accent: #f3e8ff;
  --accent-foreground: #1f2937;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #df4e53;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color:var(--accent-foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.site-header .logo-image g.fill, .footer-logo{
  fill:#fff;
}
.site-header.scrolled .logo-image g.fill{
  fill:#231F20;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

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

.logo-image {
  /* height: 1.0rem; */
}


.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--foreground);
}

.scrolled .nav-link {
  color: var(--accent-foreground);
}

.nav-link:hover {
  color: white;
  background-color: var(--primary);
  transform: scale(1.05);
}

.nav-link.active {
  color: white;
  background-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.book-now-btn {
  margin-left: 2rem;
}

.mobile-menu .book-now-btn{
  margin-left: 0;
  width: fit-content;
  margin:0 auto;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-foreground);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  animation: pulse 2s infinite;
}

.mobile-book-btn:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
}

.hero-content {
  max-width: 32rem;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer-avatars {
  display: flex;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 2px solid white;
  overflow: hidden;
  margin-left: -0.5rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
}

.rating p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--secondary);
}

.section-header {
  text-align: center;
  /* margin-bottom: 4rem; */
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: rgba(138, 43, 226, 0.05);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(138, 43, 226, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-foreground);
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-link svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover svg {
  transform: translateX(0.25rem);
}

.section-footer {
  text-align: center;
  margin-top: 4rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 4rem 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-image {
  position: relative;
  height: 12rem;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.feature-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  margin-right: 0.75rem;
}

.badge-icon svg {
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.feature-content {
  padding: 1.5rem;
}

.feature-content p {
  color: var(--muted-foreground);
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.learn-more-link svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.learn-more-link:hover {
  color: var(--primary-dark);
}

.learn-more-link:hover svg {
  transform: translateX(0.25rem);
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, rgba(138, 43, 226, 0.05), rgba(157, 78, 221, 0.05));
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  /* max-width: 48rem; */
  margin: 0 auto;
}

.testimonials-container {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.testimonial-stars {
  display: flex;
  color: #fbbf24;
  margin-top: 0.25rem;
}

.testimonial-quote {
  position: relative;
  color: var(--muted-foreground);
  font-style: italic;
  padding-left: 1rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
}

.testimonial-quote::after {
  content: '"';
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: white;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: var(--secondary);
}

.prev-arrow {
  left: -1rem;
}

.next-arrow {
  right: -1rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--secondary-dark);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary);
}

/* Instagram Section */
.instagram-section {
  padding: 4rem 0;
  background: linear-gradient(to right, rgba(138, 43, 226, 0.05), rgba(157, 78, 221, 0.1));
}

.instagram-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.instagram-badge svg {
  color: var(--primary);
  margin-right: 1rem;
}

.followers-count {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.instagram-post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  overflow: hidden;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, rgba(138, 43, 226, 0.05), rgba(157, 78, 221, 0.05));
}

.location-map {
  height: 25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

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

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background-color: #111827;
  color: white;
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  margin-right: 0.75rem;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.heading-line {
  width: 2rem;
  height: 0.125rem;
  background-color: var(--primary);
  margin-right: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
}

.contact-info svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
}

.contact-info span {
  color: #9ca3af;
}

.business-hours li {
  display: flex;
  margin-bottom: 1rem;
}

.business-hours svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
}

.business-hours p {
  color: #9ca3af;
}

.business-hours .hours {
  font-weight: 600;
  color: #9ca3af;
}

.newsletter-section {
  border-top: 1px solid #1f2937;
  padding: 2.5rem 0 2rem;
  margin-bottom: 2rem;
}

.newsletter-container {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background-color: #1f2937;
  color: white;
  border: none;
  outline: none;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.copyright {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

.copyright p {
  margin-bottom: 0.5rem;
}

.divider {
  margin: 0 0.5rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: #25D366;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128C7E;
}

.whatsapp-chat {
  display: none;
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 20rem;
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.whatsapp-chat.active {
  display: block;
}

.chat-header {
  background-color: #25D366;
  color: white;
  padding: 1rem;
}

.chat-header h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.chat-header p {
  font-size: 0.875rem;
}

.chat-form {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

.form-group input,
.form-group textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.send-button {
  background-color: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-button:hover {
  background-color: #128C7E;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

/* Dodaj te style do istniejącego pliku styles.css */

/* ===== Partners Section (Logo Slider) ===== */
.partners-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.partners-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  margin: 0 -20px;
}

.partners-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 16); /* 8 logos x 2 (for seamless loop) */
}

.partner-logo {
  flex: 0 0 200px;
  height: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8 - 40px * 8)); /* 8 logos with margins */
  }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* ===== Projects Section (with Hover Effect) ===== */
.projects-section {
  padding: 80px 0;
  background-color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-grid-whyus {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.projects-grid-whyus .project-item {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}
.projects-grid-whyus .project-item:hover {
  transform: translateY(0px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.0);
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
/* Media Queries */
@media (max-width: 768px) {
  .projects-grid-whyus {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .projects-grid-whyus {
    grid-template-columns: 1fr;
  }
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%; /* 1:1 Aspect Ratio */
}

.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-details {
  text-align: center;
  padding: 20px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.project-item:hover .project-details {
  transform: translateY(0);
  opacity: 1;
}

.project-details h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.project-details p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-view {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: #fff;
  color: #000;
}

/* Media Queries */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .partner-logo {
    flex: 0 0 150px;
    height: 80px;
    margin: 0 15px;
  }

  .partners-track {
    width: calc(150px * 16); /* 8 logos x 2 (for seamless loop) */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 8 - 30px * 8)); /* 8 logos with margins */
    }
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    flex: 0 0 120px;
    height: 60px;
    margin: 0 10px;
  }

  .partners-track {
    width: calc(120px * 16); /* 8 logos x 2 (for seamless loop) */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 8 - 20px * 8)); /* 8 logos with margins */
    }
  }
}

/* Dodaj te style do istniejącego pliku styles.css */

/* Styl dla przycisku "Dowiedz się więcej" */
/* .service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  color: #4caf50;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
} */

.service-link svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--accent-foreground);
}

.service-link:hover svg {
  transform: translateX(5px);
}

/* Styl dla modalu */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
  color:var(--muted-foreground);
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

#modal-title {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid var(--muted-foreground);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

#modal-content {
  line-height: 1.6;
}

#modal-content p {
  margin-bottom: 15px;
}

#modal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

#modal-content li {
  margin-bottom: 8px;
}

/* Animacja dla modalu */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.active {
  animation: fadeIn 0.3s ease forwards;
}

/* Blokowanie przewijania body gdy modal jest otwarty */
body.modal-open {
  overflow: hidden;
}

/* Responsywność */
@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
    margin: 20px auto;
  }

  #modal-title {
    font-size: 1.5rem;
  }
}

/* Dodaj te style do istniejącego pliku styles.css */

/* Styl dla modalu kontaktowego */
.contact-modal-content {
  max-width: 1000px;
  padding: 40px;
}

.contact-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-container h2,
.contact-info-container h2 {
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid var(--primary-dark);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* Style dla formularza */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-dark);
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-container label {
  font-size: 14px;
  line-height: 1.4;
}

.form-submit {
  margin-top: 30px;
}

.form-submit button {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Ukryj pole-pułapkę dla botów */
.honeypot {
  display: none;
}

/* Style dla komunikatów formularza */
.form-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: var(--primary-dark);
}

.form-message.error {
  display: block;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  color: #a94442;
}

/* Style dla danych kontaktowych w modalu */
.modal-contact-info {
  padding: 0;
  list-style: none;
}

.modal-contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.modal-contact-info svg {
  margin-right: 15px;
  min-width: 24px;
  color: var(--primary-dark);
}

.business-hours-container {
  margin-top: 30px;
}

.business-hours-container h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-cta {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.contact-cta p {
  margin-bottom: 15px;
  font-weight: 500;
}

/* Responsywność */
@media (max-width: 768px) {
  .contact-modal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-modal-content {
    padding: 30px;
  }

  .contact-info-container {
    order: -1;
  }
}

@media (max-width: 480px) {
  .contact-modal-content {
    padding: 20px;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 10px;
  }
}

