/*--------------------------------------------------------------
# Global Colors - Sheep Car Detailing - Dark Theme with Gold Accent
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - Sheep Car Detailing Color Scheme */
:root { 
  --background-color: #000000; /* Czarne tło całej strony */
  --default-color: #ffffff; /* Biały tekst */
  --heading-color: #ffffff; /* Białe nagłówki */
  --accent-color: #daa520; /* Złoty akcent RGB(218, 165, 32) */
  --surface-color: #1a1a1a; /* Ciemnoszare tło elementów */
  --contrast-color: #000000; /* Czarny tekst na złotym tle */
}

/* Nav Menu Colors - Sheep Car Detailing Navigation */
:root {
  --nav-color: #cccccc;  /* Kolor linków w nawigacji */
  --nav-hover-color: #daa520; /* Złoty kolor po najechaniu */
  --nav-mobile-background-color: #000000; /* Tło mobilnej nawigacji */
  --nav-dropdown-background-color: #1a1a1a; /* Tło dropdown */
  --nav-dropdown-color: #ffffff; /* Tekst dropdown */
  --nav-dropdown-hover-color: #daa520; /* Złoty po najechaniu na dropdown */
}

/* Color Presets */
.light-background {
  --background-color: #111111;
  --surface-color: #222222;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #e6b450; /* Jaśniejszy złoty */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Animacje */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Particles Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 10px;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 10px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1933;
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 5px 30px rgba(218, 165, 32, 0.1);
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 46px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.1);
}

.header .header-social-links a:hover {
  color: var(--accent-color);
  background: rgba(218, 165, 32, 0.2);
  transform: translateY(-2px);
}

.header .header-social-links a i {
  line-height: 36px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    background: rgba(218, 165, 32, 0.1);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 15px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    background: var(--accent-color);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    transition: 0.3s;
    backdrop-filter: blur(10px);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer - Sheep Car Detailing
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(218, 165, 32, 0.1);
  overflow: hidden;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
  text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(218, 165, 32, 0.2);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.footer .newsletter-form .btn-subscribe:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateX(5px);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--accent-color), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--contrast-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background: linear-gradient(45deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 90%));
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.footer .social-links a:hover {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background: linear-gradient(180deg, rgba(218, 165, 32, 0.05) 0%, rgba(218, 165, 32, 0.02) 100%);
  border-top: 1px solid rgba(218, 165, 32, 0.1);
  position: relative;
}

.footer .footer-bottom:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-bottom .copyright strong {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
  background: rgba(218, 165, 32, 0.1);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

/* Form Inputs */
input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

#preloader:after {
  content: "Sheep Car Detailing";
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.6);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.3;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles - Sheep Car Detailing
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 18px;
  font-style: italic;
}

/*--------------------------------------------------------------
# Hero Section - Sheep Car Detailing
--------------------------------------------------------------*/
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.9) 100%), url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero .hero-header h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero .hero-header h1 .highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero .hero-header h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  z-index: -1;
  opacity: 0.5;
  border-radius: 4px;
}

.hero .hero-header .subtitle {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.hero .hero-header .subtitle:before,
.hero .hero-header .subtitle:after {
  content: '•';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
}

.hero .hero-header .subtitle:before {
  left: 0;
}

.hero .hero-header .subtitle:after {
  right: 0;
}

.hero .media-block {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(218, 165, 32, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.hero .media-block:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.hero .media-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  z-index: 1;
}

.hero .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero .media-block:hover img {
  transform: scale(1.1);
}

.hero .media-block .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero .media-block .overlay-content .stats-item .number {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
  font-family: var(--heading-font);
}

.hero .media-block .overlay-content .stats-item .label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero .info-block {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 20%));
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 25px;
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero .info-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
}

.hero .info-block .lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--accent-color);
}

.hero .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 45px;
}

.hero .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
  transition: transform 0.3s ease;
}

.hero .info-block .feature-list li:hover {
  transform: translateX(10px);
  border-bottom-color: var(--accent-color);
}

.hero .info-block .feature-list li:last-child {
  border-bottom: none;
}

.hero .info-block .feature-list li i {
  color: var(--accent-color);
  font-size: 20px;
  min-width: 24px;
  text-align: center;
}

.hero .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hero .info-block .action-row .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero .info-block .action-row .btn-get-started:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero .info-block .action-row .btn-get-started:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
}

.hero .info-block .action-row .btn-get-started:hover:before {
  left: 100%;
}

.hero .info-block .action-row .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  transition: all 0.3s ease;
  padding: 15px 25px;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.hero .info-block .action-row .btn-contact i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--accent-color), transparent);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  color: var(--contrast-color);
}

.hero .info-block .action-row .btn-contact:hover {
  color: var(--accent-color);
  background: rgba(218, 165, 32, 0.2);
  transform: translateY(-3px);
}

.hero .info-block .action-row .btn-contact:hover i {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: rotate(15deg);
}

@media (max-width: 991px) {
  .hero {
    padding: 150px 0 100px;
  }

  .hero .hero-header h1 {
    font-size: 48px;
  }

  .hero .media-block {
    min-height: 400px;
  }

  .hero .info-block {
    margin-top: 40px;
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 130px 0 80px;
  }

  .hero .hero-header h1 {
    font-size: 36px;
  }

  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .hero .media-block {
    min-height: 300px;
  }

  .hero .media-block .overlay-content {
    padding: 25px;
  }

  .hero .media-block .overlay-content .stats-item .number {
    font-size: 42px;
  }

  .hero .info-block {
    padding: 30px;
  }

  .hero .info-block .lead-text {
    font-size: 16px;
  }

  .hero .info-block .action-row {
    flex-direction: column;
    gap: 20px;
  }

  .hero .info-block .action-row .btn-get-started,
  .hero .info-block .action-row .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section - Sheep Car Detailing
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
}

.about:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about .image-gallery {
  position: relative;
}

.about .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(218, 165, 32, 0.2);
}

.about .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about .image-gallery .main-image {
  height: 500px;
}

@media (max-width: 576px) {
  .about .image-gallery .main-image {
    height: 350px;
  }
}

.about .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 4rem;
}

@media (max-width: 576px) {
  .about .image-gallery .side-image {
    height: 300px;
    margin-top: 2rem;
  }
}

.about .image-gallery .experience-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
  background: linear-gradient(135deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  padding: 1.8rem 3rem;
  border-radius: 70px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(218, 165, 32, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .badge-inner {
    padding: 1.2rem 2rem;
  }
}

.about .image-gallery .experience-badge .number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .number {
    font-size: 2.2rem;
  }
}

.about .image-gallery .experience-badge .label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.95;
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-top: 4rem;
  }
}

.about .info-panel .panel-header {
  margin-bottom: 2rem;
}

.about .info-panel .panel-header .tagline {
  display: inline-block;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  color: var(--accent-color);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.about .info-panel .panel-header h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--heading-color);
  background: linear-gradient(45deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .about .info-panel .panel-header h2 {
    font-size: 2.2rem;
  }
}

.about .info-panel .description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.about .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .about .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}

.about .info-panel .highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 20%));
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about .info-panel .highlight-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.about .info-panel .highlight-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 165, 32, 0.5);
}

.about .info-panel .highlight-box:hover:before {
  transform: scaleX(1);
}

.about .info-panel .highlight-box .icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(218, 165, 32, 0.3);
  transition: all 0.4s ease;
}

.about .info-panel .highlight-box:hover .icon-wrap {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  transform: rotate(15deg);
}

.about .info-panel .highlight-box .icon-wrap i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.about .info-panel .highlight-box:hover .icon-wrap i {
  color: var(--contrast-color);
}

.about .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.about .info-panel .highlight-box .highlight-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

.about .info-panel .stats-row {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(218, 165, 32, 0.1);
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.about .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
  position: relative;
}

.about .info-panel .stats-row .stat-block:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(218, 165, 32, 0.2);
}

@media (max-width: 576px) {
  .about .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .about .info-panel .stats-row .stat-block:nth-child(2):after {
    display: none;
  }
}

.about .info-panel .stats-row .stat-block h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

@media (max-width: 768px) {
  .about .info-panel .stats-row .stat-block h3 {
    font-size: 2.2rem;
  }
}

.about .info-panel .stats-row .stat-block span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.about .info-panel .cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
  transition: left 0.5s ease;
}

.about .info-panel .cta-button i {
  transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.3);
}

.about .info-panel .cta-button:hover:before {
  left: 100%;
}

.about .info-panel .cta-button:hover i {
  transform: translateX(8px);
}

/*--------------------------------------------------------------
# Why Choose Us Section - NOWA SEKCJA
--------------------------------------------------------------*/
.why-choose-us {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.why-choose-us .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.why-choose-us .feature-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(218, 165, 32, 0.2);
  position: relative;
  overflow: hidden;
}

.why-choose-us .feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-choose-us .feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 165, 32, 0.5);
}

.why-choose-us .feature-card:hover:before {
  transform: scaleX(1);
}

.why-choose-us .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(218, 165, 32, 0.3);
  transition: all 0.4s ease;
}

.why-choose-us .feature-card:hover .feature-icon {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  transform: rotate(15deg) scale(1.1);
}

.why-choose-us .feature-card .feature-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.why-choose-us .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
}

.why-choose-us .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-choose-us .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-choose-us .feature-card .feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(218, 165, 32, 0.05);
  line-height: 1;
}

/*--------------------------------------------------------------
# Gallery Section - NOWA SEKCJA
--------------------------------------------------------------*/
.gallery-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
}

.gallery-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.gallery-section .gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-section .filter-btn {
  padding: 0.8rem 2rem;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
  color: var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-section .filter-btn:hover,
.gallery-section .filter-btn.active {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}







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









/*--------------------------------------------------------------
# Services Section - Sheep Car Detailing
--------------------------------------------------------------*/
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  position: relative;
}

.services:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.services .service-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 25px;
  padding: 40px;
  height: 100%;
  position: relative;
  border: 2px solid rgba(218, 165, 32, 0.2);
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 1;
}

.services .service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
  z-index: 2;
}

.services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(218, 165, 32, 0.5);
}

.services .service-card:hover:before {
  transform: scaleX(1);
}

.services .service-card:hover .icon-circle {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  transform: rotate(15deg) scale(1.1);
}

.services .service-card:hover .icon-circle i {
  color: var(--contrast-color);
  animation: pulse 1s ease-in-out;
}

.services .service-card.highlighted {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), var(--surface-color));
  border-color: rgba(218, 165, 32, 0.5);
}

.services .service-card.highlighted:before {
  transform: scaleX(1);
}

.services .card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
  z-index: 3;
}

.services .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.services .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.services .icon-circle i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.services .service-num {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--heading-font);
  color: rgba(218, 165, 32, 0.1);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services .card-body {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.services .card-body h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .card-body p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
  font-weight: 300;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.services .feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: rgba(218, 165, 32, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.services .feature-list li:hover {
  background: rgba(218, 165, 32, 0.2);
  transform: translateY(-2px);
}

.services .feature-list li i {
  color: var(--accent-color);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Process Section - NOWA SEKCJA
--------------------------------------------------------------*/
.process-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
}

.process-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.process-section .process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.process-section .process-steps:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  z-index: 1;
}

.process-section .process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 250px;
}

.process-section .step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
}

.process-section .process-step:hover .step-number {
  transform: scale(1.1) rotate(15deg);
}

.process-section .process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.process-section .process-step p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Pricing Section - Sheep Car Detailing
--------------------------------------------------------------*/
.pricing {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  position: relative;
}

.pricing:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Pricing Categories */
.pricing-category {
  margin-bottom: 80px;
}

.pricing-category .category-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(45deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.pricing-category .category-title i {
  font-size: 36px;
  color: var(--accent-color);
}

/* Price Cards */
.price-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.price-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 165, 32, 0.5);
}

.price-card:hover:before {
  transform: scaleX(1);
}

.price-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(218, 165, 32, 0.2);
}

.price-card.featured:before {
  transform: scaleX(1);
}

.price-card.featured .card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
  z-index: 2;
}

.price-card.custom-price {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), var(--surface-color));
}

.price-card .card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.price-card .card-header h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 700;
}

.price-card .card-header .price {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.price-card ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.price-card ul.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.price-card ul.feature-list li:last-child {
  border-bottom: none;
}

.price-card ul.feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  min-width: 24px;
}

.price-card.custom-price .note {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 20px 0;
  font-style: italic;
  padding: 15px;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 10px;
}

.price-card.custom-price .btn-get-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 15px 35px;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border-radius: 15px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
}

.price-card.custom-price .btn-get-quote:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.price-card.custom-price .btn-get-quote:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
}

.price-card.custom-price .btn-get-quote:hover:before {
  left: 100%;
}

/*--------------------------------------------------------------
# Testimonials Section - NOWA SEKCJA
--------------------------------------------------------------*/
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
}

.testimonials-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonials-section .testimonial-slider {
  max-width: 900px;
  margin: 4rem auto 0;
}

.testimonials-section .testimonial-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  border: 2px solid rgba(218, 165, 32, 0.2);
  position: relative;
  margin: 0 15px;
}

.testimonials-section .testimonial-card:before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 80px;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonials-section .testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-section .client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials-section .client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

.testimonials-section .client-details h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--heading-color);
}

.testimonials-section .client-details p {
  color: var(--accent-color);
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Contact Section - Sheep Car Detailing
--------------------------------------------------------------*/
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
}

.contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.contact .main-contact-wrapper {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(218, 165, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.contact .main-contact-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
}

.contact .info-box {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), var(--surface-color));
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.3);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact .info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
  border-color: rgba(218, 165, 32, 0.5);
}

.contact .info-box .icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.contact .info-box:hover .icon-wrap {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  transform: rotate(15deg);
}

.contact .info-box .icon-wrap i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.contact .info-box:hover .icon-wrap i {
  color: var(--contrast-color);
}

.contact .info-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.contact .info-box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 8px;
}

.contact .info-box .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  font-weight: 600;
}

.contact .social-mini {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.contact .social-mini a {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 20px;
  transition: all 0.3s;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.contact .social-mini a:hover {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.4);
}

/* Sidebar Panel */
.contact .sidebar-panel {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), var(--surface-color));
  border-radius: 25px;
  padding: 40px;
  height: 100%;
  border: 2px solid rgba(218, 165, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.contact .sidebar-panel:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ffcc33);
}

.contact .sidebar-panel .panel-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact .sidebar-panel .panel-header .header-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(218, 165, 32, 0.3);
  transition: all 0.4s ease;
}

.contact .sidebar-panel:hover .panel-header .header-badge {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  transform: rotate(15deg);
}

.contact .sidebar-panel .panel-header .header-badge i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.contact .sidebar-panel:hover .panel-header .header-badge i {
  color: var(--contrast-color);
}

.contact .sidebar-panel .panel-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
}

.contact .hours-list .hour-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.contact .hours-list .hour-item:last-child {
  border-bottom: none;
}

.contact .cta-box {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid rgba(218, 165, 32, 0.3);
  transition: all 0.4s ease;
}

.contact .cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.contact .cta-box .cta-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.contact .cta-box:hover .cta-icon {
  transform: scale(1.2) rotate(15deg);
}

.contact .cta-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .cta-box p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s;
  padding: 12px 25px;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.contact .cta-phone:hover {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
}

.contact .cta-phone i {
  font-size: 24px;
}

.contact .map-placeholder {
  text-align: center;
  padding: 35px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.3);
  transition: all 0.4s ease;
}

.contact .map-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.contact .map-placeholder .map-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.contact .map-placeholder:hover .map-icon {
  transform: scale(1.2) rotate(15deg);
}

.contact .map-placeholder h5 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .map-placeholder p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact .btn-map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
}

.contact .btn-map:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact .btn-map:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
}

.contact .btn-map:hover:before {
  left: 100%;
}

/* Form Section */
.contact .form-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.contact .form-section .form-intro {
  margin-bottom: 40px;
}

.contact .form-section .form-intro h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .form-section .form-intro p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  font-weight: 300;
}

.contact .form-section .php-email-form .input-group-custom {
  position: relative;
}

.contact .form-section .php-email-form .input-group-custom i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  z-index: 2;
  transition: color 0.3s ease;
}

.contact .form-section .php-email-form .input-group-custom.textarea-group i {
  top: 25px;
  transform: none;
}

.contact .form-section .php-email-form .input-group-custom:focus-within i {
  color: var(--accent-color);
}

.contact .form-section .php-email-form .form-control {
  padding: 18px 20px 18px 60px;
  border-radius: 15px;
  border: 2px solid rgba(218, 165, 32, 0.2);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .form-section .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(218, 165, 32, 0.1);
  outline: none;
}

.contact .form-section .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.contact .form-section .php-email-form select.form-control {
  padding-left: 60px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23daa520' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 16px 12px;
}

.contact .form-section .php-email-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact .form-section .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 25px;
}

.contact .form-section .form-footer .form-messages {
  flex: 1;
}

.contact .form-section .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.contact .form-section .btn-submit:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact .form-section .btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contact .form-section .btn-submit:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.5);
}

.contact .form-section .btn-submit:hover:before {
  left: 100%;
}

.contact .form-section .btn-submit:hover i {
  transform: translateX(5px);
}

/* Footer Contact Info */
.footer .contact-info {
  margin-top: 25px;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
}

.footer .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  min-width: 24px;
}

.footer .footer-social .newsletter {
  margin-top: 35px;
}

.footer .footer-social .newsletter h5 {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.footer .footer-social .newsletter-form {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(218, 165, 32, 0.2);
}

.footer .footer-social .newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  background: var(--surface-color);
  border: 1px solid rgba(218, 165, 32, 0.3);
  color: var(--default-color);
  border-radius: 15px 0 0 15px;
  border-right: none;
}

.footer .footer-social .newsletter-form button {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.footer .footer-social .newsletter-form button:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Animations & Effects
--------------------------------------------------------------*/
/* Floating elements */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
  animation: float 8s ease-in-out infinite 1s;
}

.floating-element-3 {
  animation: float 7s ease-in-out infinite 2s;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
}

/* Shimmer effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer:after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: shimmer 3s infinite;
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Glow effects */
.glow {
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.glow:hover {
  box-shadow: 0 0 40px rgba(218, 165, 32, 0.6);
}

/* Border animation */
.border-animate {
  position: relative;
}

.border-animate:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1400px) {
  .hero .hero-header h1 {
    font-size: 56px;
  }
  
  .about .panel-header h2 {
    font-size: 40px;
  }
  
  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 1200px) {
  .hero .hero-header h1 {
    font-size: 48px;
  }
  
  .about .about-wrapper {
    gap: 4rem;
  }
  
  .about .panel-header h2 {
    font-size: 36px;
  }
  
  .services .service-card {
    padding: 35px;
  }
  
  .pricing-category .category-title {
    font-size: 28px;
  }
  
  .process-section .process-steps {
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .process-section .process-steps:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 150px 0 100px;
  }
  
  .hero .hero-header h1 {
    font-size: 42px;
  }
  
  .hero .info-block {
    margin-top: 40px;
  }
  
  .about .about-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about .info-panel {
    margin-top: 4rem;
  }
  
  .why-choose-us .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .contact .main-contact-wrapper {
    margin-bottom: 40px;
  }
  
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero .hero-header h1 {
    font-size: 36px;
  }
  
  .hero .hero-header .subtitle {
    font-size: 20px;
  }
  
  .hero .info-block {
    padding: 35px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .section-title p {
    font-size: 16px;
  }
  
  .about .panel-header h2 {
    font-size: 32px;
  }
  
  .services .service-card {
    padding: 30px;
  }
  
  .services .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .services .icon-circle i {
    font-size: 28px;
  }
  
  .services .service-num {
    font-size: 42px;
  }
  
  .pricing-category .category-title {
    font-size: 24px;
  }
  
  .price-card .card-header .price {
    font-size: 36px;
  }
  
  .why-choose-us .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-section .process-step {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .contact .main-contact-wrapper {
    padding: 35px;
  }
  
  .contact .sidebar-panel {
    padding: 35px;
  }
  
  .footer .footer-bottom-links {
    text-align: center;
    margin-top: 20px;
  }
  
  .testimonials-section .testimonial-card {
    padding: 35px;
  }
}

@media (max-width: 576px) {
  .hero .hero-header h1 {
    font-size: 32px;
  }
  
  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }
  
  .hero .media-block {
    min-height: 300px;
  }
  
  .hero .media-block .overlay-content .stats-item .number {
    font-size: 42px;
  }
  
  .about .panel-header h2 {
    font-size: 28px;
  }
  
  .about .highlights-row {
    grid-template-columns: 1fr;
  }
  
  .about .stats-row .stat-block h3 {
    font-size: 32px;
  }
  
  .services .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .services .icon-circle i {
    font-size: 24px;
  }
  
  .services .service-num {
    font-size: 36px;
  }
  
  .services .card-body h4 {
    font-size: 20px;
  }
  
  .price-card {
    padding: 30px;
  }
  
  .price-card .card-header h4 {
    font-size: 20px;
  }
  
  .price-card .card-header .price {
    font-size: 32px;
  }
  
  .contact .form-section .btn-submit {
    width: 100%;
    justify-content: center;
  }
  
  .contact .info-box {
    padding: 30px 20px;
  }
  
  .contact .sidebar-panel {
    padding: 30px;
  }
  
  .gallery-section .filter-btn {
    padding: 0.7rem 1.5rem;
    font-size: 14px;
  }
  
  .testimonials-section .testimonial-card {
    padding: 30px 25px;
  }
  
  .testimonials-section .testimonial-text {
    font-size: 1.1rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  border-radius: 6px;
  border: 2px solid var(--surface-color);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ffcc33, var(--accent-color));
}

/* Selection color */
::selection {
  background: rgba(218, 165, 32, 0.3);
  color: var(--default-color);
}

::-moz-selection {
  background: rgba(218, 165, 32, 0.3);
  color: var(--default-color);
}

/* Smooth transitions */
* {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img[data-src] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --accent-color: #ffd700;
    --surface-color: #000000;
  }
}

/* Dark mode (already dark, but adding for consistency) */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
  }
}

.text-gold {
  color: var(--accent-color) !important;
}

.info-box {
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.1);
}
.bg-gold {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33) !important;
  color: #000 !important;
}

.btn-gold {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33) !important;
  color: #000 !important;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
}

.encouragement-box {
  transition: all 0.3s ease;
}

.encouragement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.1);
}

.accordion-button:not(.collapsed) {
  background: rgba(218, 165, 32, 0.1) !important;
  color: var(--heading-color) !important;
}

.gallery-section .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid rgba(218, 165, 32, 0.2);
  transition: all 0.4s ease;
  display: block;
  text-decoration: none;
}

.gallery-section .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--accent-color);
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}



.gallery-section .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-section .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-section .gallery-overlay h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gallery-section .gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.gallery-section .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(218, 165, 32, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-section .gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox/Glightbox styling */
.gslide img {
  border-radius: 10px;
}

.glightbox-clean .gclose, 
.glightbox-clean .gnext, 
.glightbox-clean .gprev {
  background: rgba(218, 165, 32, 0.8);
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.glightbox-clean .gclose:hover, 
.glightbox-clean .gnext:hover, 
.glightbox-clean .gprev:hover {
  background: var(--accent-color);
}

.gdesc-inner {
  background: rgba(0, 0, 0, 0.8) !important;
  padding: 15px !important;
}

.gdesc-inner .gslide-title {
  color: var(--accent-color) !important;
  font-size: 1.3rem !important;
  margin-bottom: 5px !important;
}

.gdesc-inner .gslide-desc {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Galeria - Responsywne zdjęcia bez scrollbara */
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-section .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid rgba(218, 165, 32, 0.2);
  transition: all 0.4s ease;
}

.gallery-section .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--accent-color);
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-section .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-section .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-section .gallery-overlay h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gallery-section .gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Zapobieganie scrollbarowi */
.gallery-section {
  overflow: hidden;
}

.gallery-section .container {
  overflow: visible;
}

/* Modal/galeria lightbox */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.gallery-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--accent-color);
}

.modal-image-container {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-caption {
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.modal-caption h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.modal-caption p {
  color: #fff;
  opacity: 0.9;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(218, 165, 32, 0.8);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--accent-color);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Responsywność modala */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: 95vh;
  }
  
  .modal-image-container {
    height: 60vh;
  }
  
  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .modal-image-container {
    height: 50vh;
  }
  
  .modal-prev {
    left: 10px;
  }
  
  .modal-next {
    right: 10px;
  }
}

/* Sekcja Polityka Prywatności */
.privacy-policy {
  padding: 120px 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.privacy-policy .policy-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 20px;
  border: 2px solid rgba(218, 165, 32, 0.2);
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

.privacy-policy .policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(218, 165, 32, 0.4);
}

.privacy-policy .policy-header {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
  padding: 40px 40px 30px;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  text-align: center;
}

.privacy-policy .policy-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.privacy-policy .policy-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.privacy-policy .policy-header h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.privacy-policy .policy-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy-policy .policy-content {
  padding: 40px;
  max-height: 600px;
  overflow-y: auto;
}

.privacy-policy .policy-content h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.privacy-policy .policy-content h4:first-child {
  margin-top: 0;
}

.privacy-policy .policy-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-policy .policy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy .policy-content li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-policy .policy-content strong {
  color: var(--heading-color);
}

.privacy-policy .alert-info {
  border-radius: 10px;
  padding: 15px;
}

.privacy-policy .documents-footer {
  padding: 30px;
  background: rgba(218, 165, 32, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(218, 165, 32, 0.1);
}

.privacy-policy .btn-outline-gold {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 10px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy-policy .btn-outline-gold:hover {
  background: var(--accent-color);
  color: #000;
}

.privacy-policy .btn-gold {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-policy .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
}

/* Custom scrollbar dla treści polityki */
.privacy-policy .policy-content::-webkit-scrollbar {
  width: 6px;
}

.privacy-policy .policy-content::-webkit-scrollbar-track {
  background: rgba(218, 165, 32, 0.05);
  border-radius: 3px;
}

.privacy-policy .policy-content::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  border-radius: 3px;
}

.privacy-policy .policy-content::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Responsywność */
@media (max-width: 992px) {
  .privacy-policy .policy-content {
    padding: 30px;
    max-height: 500px;
  }
  
  .privacy-policy .policy-header {
    padding: 30px 30px 20px;
  }
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 80px 0;
  }
  
  .privacy-policy .policy-content {
    max-height: 400px;
  }
  
  .privacy-policy .documents-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .privacy-policy .documents-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
}

@media (max-width: 576px) {
  .privacy-policy .policy-header {
    padding: 25px 20px 15px;
  }
  
  .privacy-policy .policy-content {
    padding: 25px 20px;
    max-height: 350px;
  }
  
  .privacy-policy .policy-icon {
    width: 60px;
    height: 60px;
  }
  
  .privacy-policy .policy-icon i {
    font-size: 28px;
  }
  
  .privacy-policy .policy-header h3 {
    font-size: 1.5rem;
  }
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
}

.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
  display: block;
}

.php-email-form .loading {
  color: var(--accent-color);
}

.php-email-form .error-message {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.php-email-form .sent-message {
  color: #51cf66;
  background: rgba(81, 207, 102, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(81, 207, 102, 0.3);
}



/* Sekcja Opinie */
.opinie-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.opinie-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.opinie-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.opinie-slider-track {
  display: flex;
  gap: 30px;
  animation: slideInfinite 40s linear infinite;
  padding: 20px 0;
}

.opinie-slider-track:hover {
  animation-play-state: paused;
}

.opinie-slide {
  flex: 0 0 400px;
  min-width: 400px;
}

.opinie-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), black 15%));
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 2px solid rgba(218, 165, 32, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.opinie-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: var(--accent-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.opinie-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 165, 32, 0.5);
}

.opinie-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.opinie-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.opinie-avatar i {
  font-size: 24px;
  color: var(--accent-color);
}

.opinie-info {
  flex: 1;
}

.opinie-info h5 {
  color: var(--heading-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.opinie-source {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.opinie-rating {
  display: flex;
  align-items: center;
  color: #ffd700;
  font-size: 0.9rem;
}

.opinie-rating i {
  margin-right: 2px;
}

.opinie-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.opinie-content {
  position: relative;
  z-index: 2;
}

.opinie-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* Przyciski nawigacji */
.btn-slider {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), #ffcc33);
  color: #000;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn-slider:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.4);
}

.btn-slider:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Przycisk Google */
.btn-google-opinie {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-google-opinie:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(66, 133, 244, 0.3);
  color: white;
}

/* Animacja nieskończonego slidera */
@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * 7)); /* 7 opinii * szerokość */
  }
}

/* Responsywność */
@media (max-width: 992px) {
  .opinie-slide {
    flex: 0 0 350px;
    min-width: 350px;
  }
  
  @keyframes slideInfinite {
    100% {
      transform: translateX(calc(-350px * 7));
    }
  }
}

@media (max-width: 768px) {
  .opinie-section {
    padding: 80px 0;
  }
  
  .opinie-slide {
    flex: 0 0 300px;
    min-width: 300px;
  }
  
  .opinie-card {
    padding: 25px;
  }
  
  @keyframes slideInfinite {
    100% {
      transform: translateX(calc(-300px * 7));
    }
  }
}

@media (max-width: 576px) {
  .opinie-slide {
    flex: 0 0 280px;
    min-width: 280px;
  }
  
  .opinie-card {
    padding: 20px;
  }
  
  .opinie-avatar {
    width: 40px;
    height: 40px;
  }
  
  .opinie-avatar i {
    font-size: 20px;
  }
  
  .opinie-info h5 {
    font-size: 1rem;
  }
  
  @keyframes slideInfinite {
    100% {
      transform: translateX(calc(-280px * 7));
    }
  }
}

















