
: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: "Nunito Sans",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #031119; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f4ac0a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1b262c; /* stary 1b262c The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #f4ac0a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f4ac0a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0d1d26;
  --surface-color: #16262f;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
.glightbox-container .gslide img {
  max-width: 100%;
  max-height: 90vh;
}

.glightbox-close {
  color: #fff;
  font-size: 28px;
  top: 20px;
  right: 20px;
}

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

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* 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;
}

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

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

.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: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* optional border */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    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;
    transition: 0.3s;
  }

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

  .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: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 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);
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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;
  }

  .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: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Enhanced Footer - Strona4You
--------------------------------------------------------------*/
.enhanced-footer {
  background: linear-gradient(135deg, #1a2a3a 0%, #2d3b4a 100%);
  color: #fff;
  position: relative;
  margin-top: 0;
  overflow: hidden;
  font-family: var(--default-font);
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  max-width: 100%;
}

.footer-wave .shape-fill {
  fill: var(--surface-color);
}

.footer-top {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-brand .logo {
  text-decoration: none;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand .logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f4ac0a, #ffd166);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 30px rgba(244, 172, 10, 0.3);
  transition: all 0.3s ease;
}

.footer-brand .logo:hover .logo-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 15px 40px rgba(244, 172, 10, 0.4);
}

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

.footer-brand .sitename {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.5px;
  font-family: var(--heading-font);
}

.footer-brand .tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 5px;
}

.footer-description {
  margin-bottom: 30px;
}

.footer-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 15px;
  text-align: justify;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: #f4ac0a;
  transform: scale(1.1);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-details .value {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 15px;
}

.contact-details .value:hover {
  color: #f4ac0a;
}

/* Footer Links */
.footer-links {
  margin-bottom: 30px;
}

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

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #f4ac0a;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-links:hover h4::after {
  width: 60px;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 14px;
}

.footer-links ul a i {
  font-size: 16px;
  width: 20px;
  transition: transform 0.3s ease;
  color: #f4ac0a;
}

.footer-links ul a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}

.footer-links ul a:hover i {
  transform: scale(1.2);
  color: #ffd166;
}

/* Newsletter Section */
.footer-newsletter {
  margin-bottom: 30px;
}

.footer-newsletter h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer-newsletter > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.newsletter-form .input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
  border-color: #f4ac0a;
  box-shadow: 0 0 0 2px rgba(244, 172, 10, 0.2);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: white;
  padding: 15px 20px;
  flex: 1;
  font-size: 14px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn-newsletter {
  background: #f4ac0a;
  border: none;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 16px;
}

.btn-newsletter:hover {
  background: #e69c00;
  transform: scale(1.05);
}

/* Social Links */
.social-links h5 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.social-btn::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;
}

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

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-btn.fb { background: #3b5998; }
.social-btn.ig { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-btn.gp { background: #DB4437; }
.social-btn.tt { background: #000000; }

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.trust-item i {
  color: #f4ac0a;
  font-size: 16px;
}

/* SEO Cities Links */
.city-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-links li {
  margin-bottom: 8px;
}

.city-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
  border-radius: 4px;
}

.city-links a:hover {
  color: #f4ac0a;
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 8px;
}

/* SEO Cities Section */
.seo-cities-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(244, 172, 10, 0.2);
  margin-top: 20px;
}

.seo-cities-section h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  font-size: 20px;
  font-family: var(--heading-font);
}

.seo-cities-section h6 {
  color: #f4ac0a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(244, 172, 10, 0.3);
  padding-bottom: 8px;
  font-family: var(--heading-font);
}

.city-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-radius: 4px;
}

.city-grid a:hover {
  color: #f4ac0a;
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 8px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.copyright strong {
  color: white;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.footer-legal a:hover {
  color: #f4ac0a;
}

/* Quick Contact Float */
.quick-contact-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.quick-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: quickBtnEntrance 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.quick-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-btn:hover::before {
  opacity: 1;
}

.quick-btn.phone { 
  background: #f4ac0a; 
  animation-delay: 0.1s;
}
.quick-btn.whatsapp { 
  background: #25D366; 
  animation-delay: 0.2s;
}
.quick-btn.email { 
  background: #EA4335; 
  animation-delay: 0.3s;
}
.quick-btn.scroll-top-btn { 
  background: #6c757d; 
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  animation-delay: 0.4s;
}

.quick-btn.scroll-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.quick-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

@keyframes quickBtnEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Newsletter Messages */
.newsletter-message {
  animation: slideInUp 0.3s ease;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.newsletter-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.newsletter-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

/* Animation for footer sections */
.footer-links,
.footer-brand,
.footer-newsletter {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Enhanced hover effects */
.contact-item {
  transition: transform 0.3s ease;
}

/* Wave animation */
.footer-wave svg {
  transition: transform 0.3s ease;
}

/*--------------------------------------------------------------
# MOBILE RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .footer-top {
    padding: 60px 0 30px;
  }
  
  .footer-brand .logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  
  .footer-links {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-newsletter {
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
    text-align: center;
    gap: 10px;
  }
  
  .quick-contact-float {
    bottom: 20px;
    right: 15px;
  }
  
  .quick-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .seo-cities-section {
    padding: 20px;
  }
  
  .city-grid a {
    font-size: 12px;
  }
  
  .social-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    align-items: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-icon {
    align-self: center;
  }
}

@media (max-width: 576px) {
  .footer-wave svg {
    height: 60px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .seo-cities-section .row > div {
    margin-bottom: 20px;
  }
  
  .footer-brand .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .footer-brand .sitename {
    font-size: 24px;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .newsletter-form .form-control {
    text-align: center;
  }
  
  .btn-newsletter {
    width: 100%;
  }
  
  .quick-contact-float {
    bottom: 15px;
    right: 10px;
  }
  
  .quick-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# DESKTOP LARGE SCREENS
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .footer-top {
    padding: 100px 0 60px;
  }
  
  .footer-brand .sitename {
    font-size: 32px;
  }
  
  .footer-brand .tagline {
    font-size: 16px;
  }
  
  .footer-description p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# DARK MODE SUPPORT
--------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
  .enhanced-footer {
    background: linear-gradient(135deg, #0d1d26 0%, #1e2b38 100%);
  }
}

/*--------------------------------------------------------------
# PRINT STYLES
--------------------------------------------------------------*/
@media print {
  .enhanced-footer {
    background: white !important;
    color: black !important;
  }
  
  .quick-contact-float,
  .footer-wave {
    display: none;
  }
  
  .footer-links a,
  .contact-details .value {
    color: black !important;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear 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-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0; /* tekst nad tłem */
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('../img/strona4you-kampanie-reklamowe.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* jak w hero */
  z-index: -1; /* zawsze pod treścią */
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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






/*--------------------------------------------------------------
# Page Title & Breadcrumbs - Bajerancka wersja
--------------------------------------------------------------*/













.page-title2 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title2::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/prowadzenie-social-mediow-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title2 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title2 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}
.page-title4 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title4::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/prowadzenie-bloga-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title4 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title4 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}








.page-title5 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title5::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/projekty-multimedialne-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title5 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title5 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}






.page-title6 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title6::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/copywriting-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title6 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title6 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}







.page-title7 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title7::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/wsparcie-techniczne-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title7 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title7 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}



.page-title88 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title88::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/opieka-nad-strona-internetowa-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title88 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title88 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}





.page-title8 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title8::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/branding-firmy-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title8 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title8 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}


.page-title9 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title9::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/tworzenie-stron-witryn-internetowych.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title9 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title9 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}





.page-title10 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title10::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/pozycjonowanie-stron-seo-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title10 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title10 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}



.page-title12 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title12::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/gadzety-reklamowe-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title12 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title12 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}












.page-title11 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title11::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/promocje-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title11 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title11 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Pasek dla breadcrumbs w lewym dolnym rogu, pełna szerokość kontenera */
.breadcrumbs-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1); /* 10% ciemny pasek */
  padding: 10px 0;
  z-index: 2;
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.breadcrumbs-bar .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumbs-bar .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.breadcrumbs-bar .breadcrumbs ol li {
  white-space: nowrap;
}

.breadcrumbs-bar .breadcrumbs ol li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.breadcrumbs-bar .breadcrumbs ol li a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 5px rgba(244,172,10,0.7);
}

.breadcrumbs-bar .breadcrumbs ol li.current {
  color: var(--accent-color);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(244,172,10,0.8);
}

.breadcrumbs-bar .breadcrumbs ol li+li::before {
  content: "/";
  padding: 0 5px;
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .page-title2 h1 {
    font-size: 32px;
  }
  .page-title2 p {
    font-size: 16px;
    padding: 0 20px;
  }
  .breadcrumbs-bar {
    padding: 8px 0;
  }
  .breadcrumbs-bar .breadcrumbs ol {
    gap: 5px;
  }
}





.page-title3 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-title3::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/projekty-graficzne-cala-polska.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.page-title3 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.page-title3 p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto 40px auto;
}








/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title3 {
  color: var(--default-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0; /* tekst nad tłem */
}

.page-title3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('../img/materialy-graficzne-dla-firm-strona4you.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* jak w hero */
  z-index: -1; /* zawsze pod treścią */
}

.page-title3 h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title3 .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title3 .breadcrumbs ol li+li {
  padding-left: 10px;
}

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





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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('../img/strona4you-tworzenie-stron-www2.jpg');
  background-size: cover;       /* dopasowuje jedno zdjęcie do ekranu */
  background-position: center;  /* wyśrodkowanie */
  background-repeat: no-repeat; /* brak powtarzania */
  background-attachment: fixed; /* tło nieruchome przy scrollu */
  z-index: 1;
}

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

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}
.hero .hero-info .info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero  .hero-info .info-item small {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}

.hero  .hero-info .info-item .fw-medium {
  font-weight: 600;
  color: var(--heading-color);
}
@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .upcoming-event {
  background: #111;
  color: var(--contrast-color);
  padding: 0;
  margin: 30px 0 0;
  border-radius: 15px;
}

.hero .upcoming-event .event-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero .upcoming-event .event-content>* {
  position: relative;
  z-index: 1;
}

.hero .upcoming-event .event-content .event-date {
  display: flex;
  flex-direction: column;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-right: 30px;
  min-width: 100px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-date {
    margin: 0 auto 20px;
  }
}

.hero .upcoming-event .event-content .event-date .day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero .upcoming-event .event-content .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .upcoming-event .event-content .event-info {
  flex: 1;
  margin-right: 30px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.hero .upcoming-event .event-content .event-info h3 {
  font-size: 1.6rem;
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .hero .upcoming-event .event-content .event-info h3 {
    font-size: 1.3rem;
  }
}

.hero .upcoming-event .event-content .event-info p {
  font-size: 1rem;
  margin: 0;
}

.hero .upcoming-event .event-content .event-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .upcoming-event .event-content .event-action .btn-event {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.hero .upcoming-event .event-content .event-action .btn-event:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero .upcoming-event .event-content .event-action .countdown {
  font-size: 0.9rem;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 10px;
  padding-bottom: 10px;
}

.clients .clients-slider {
  overflow: hidden;
  background-color: #d7dde0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 15px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 100%;
  transition: 0.3s;
  opacity: 0.9;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 175px;
  right: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.0rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.services2 .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.services2 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.5s ease;
}

.services2 .service-card .service-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

.services2 .service-card .service-icon-wrapper {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.services2 .service-card .service-icon-wrapper .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services2 .service-card .service-icon-wrapper .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services2 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services2 .service-card .service-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services2 .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.services2 .service-card .service-content .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services2 .service-card .service-content .service-list li {
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.services2 .service-card .service-content .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.services2 .service-card .service-content .service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services2 .service-card .service-content .service-pricing .price-tag {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-color);
}

.services2 .service-card .service-content .service-pricing .price-tag::before {
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services2 .service-card .service-content .service-pricing .service-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 25px;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services2 .service-card .service-content .service-pricing .service-btn i {
  transition: transform 0.3s ease;
}

.services2 .service-card .service-content .service-pricing .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services2 .service-card .service-content .service-pricing .service-btn:hover i {
  transform: translateX(3px);
}

.services2 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.services2 .service-card:hover::before {
  left: 100%;
}

.services2 .service-card:hover .service-icon-wrapper .service-icon {
  background: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.services2 .service-card:hover .service-icon-wrapper .service-icon i {
  color: var(--contrast-color);
}

.services2 .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.services2 .service-card.featured .service-number {
  background: var(--contrast-color);
  color: var(--accent-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.services2 .service-card.featured .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
}

.services2 .service-card.featured .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

.services2 .service-card.featured .service-content h4 {
  color: var(--contrast-color);
}

.services2 .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.services2 .service-card.featured .service-content .service-list li {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.services2 .service-card.featured .service-content .service-list li::before {
  background: var(--contrast-color);
}

.services2 .service-card.featured .service-content .service-pricing {
  border-top-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services2 .service-card.featured .service-content .service-pricing .price-tag {
  color: var(--contrast-color);
}

.services2 .service-card.featured .service-content .service-pricing .price-tag::before {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services2 .service-card.featured .service-content .service-pricing .service-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.services2 .service-card.featured .service-content .service-pricing .service-btn:hover {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.services2 .service-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.services2 .service-card.featured:hover .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
  transform: rotate(-5deg) scale(1.1);
}

.services2 .service-card.featured:hover .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services2 .service-card {
    padding: 30px 20px;
  }

  .services2 .service-card .service-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .services2 .service-card .service-icon-wrapper .service-icon {
    width: 60px;
    height: 60px;
  }

  .services2 .service-card .service-icon-wrapper .service-icon i {
    font-size: 28px;
  }

  .services2 .service-card .service-content h4 {
    font-size: 20px;
  }

  .services2 .service-card .service-content .service-pricing .price-tag {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .services2 .service-card {
    padding: 25px 15px;
  }

  .services2 .service-card .service-content .service-pricing {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .services2 .service-card .service-content .service-pricing .service-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .main-chef-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
  position: relative;
}

.chefs .main-chef-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 30% 100%, 0 100%);
  opacity: 0.1;
}
.chefs .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.chefs .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.chefs .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.chefs .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.chefs .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.chefs .main-chef-section .chef-content {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .chefs .main-chef-section .chef-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.chefs .main-chef-section .chef-content .chef-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.chefs .main-chef-section .chef-content .chef-badge i {
  font-size: 1.1rem;
}

.chefs .main-chef-section .chef-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .chefs .main-chef-section .chef-content h2 {
    font-size: 2.2rem;
  }
}

.chefs .main-chef-section .chef-content .experience-years {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .chefs .main-chef-section .chef-content .experience-years {
    justify-content: center;
  }
}

.chefs .main-chef-section .chef-content .experience-years .number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.chefs .main-chef-section .chef-content .experience-years .text {
  font-size: 1.1rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chefs .main-chef-section .chef-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.chefs .main-chef-section .chef-content .achievements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item:hover {
  transform: translateX(10px);
}

.chefs .main-chef-section .chef-content .achievements .achievement-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.chefs .main-chef-section .chef-content .achievements .achievement-item span {
  font-weight: 600;
  color: var(--heading-color);
}

.chefs .main-chef-section .chef-image-container {
  position: relative;
}

.chefs .main-chef-section .chef-image-container .image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chefs .main-chef-section .chef-image-container .image-frame:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--accent-color);
  border-radius: 20px;
  z-index: -1;
}

.chefs .main-chef-section .chef-image-container .image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s;
}

.chefs .main-chef-section .chef-image-container .image-frame:hover img {
  transform: scale(1.05);
}

.chefs .main-chef-section .chef-image-container .image-frame .signature-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--surface-color);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chefs .main-chef-section .chef-image-container .image-frame .signature-overlay img {
  max-width: 120px;
  height: auto;
}

.chefs .team-grid .team-member {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .team-grid .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.chefs .team-grid .team-member:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.chefs .team-grid .team-member:hover .member-photo img {
  transform: scale(1.1);
}

.chefs .team-grid .team-member .member-photo {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.chefs .team-grid .team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .team-grid .team-member .member-photo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.9), rgba(54, 144, 231, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons {
  display: flex;
  gap: 1rem;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.chefs .team-grid .team-member .member-photo .overlay .social-icons a i {
  font-size: 1.1rem;
}

.chefs .team-grid .team-member .member-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.chefs .team-grid .team-member .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.chefs .team-grid .team-member .member-info .position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.chefs .team-grid .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}




.services .service-header .service-intro .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-intro .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-intro .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.services .service-header .service-intro .service-btn:hover i {
  transform: translateX(5px);
}




@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

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

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.services .service-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

.services .service-card h3 a:hover {
  color: var(--accent-color);
}

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: var(--surface-color);
}

.services .service-card:hover h3 a {
  color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
  color: var(--accent-color);
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

  .services .service-card h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}


.promo-badge-wrapper {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.promo-badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(270deg, #f4ac0a, #ff9900, #f4ac0a);
  background-size: 200% 200%;
  padding: 8px 22px;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(244, 172, 10, 0.7);
  
  /* Dwie animacje na raz */
  animation: gradientShift 4s ease infinite, glowPulse 3s ease-in-out infinite;
}

/* Gradient przesuwający się */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtelny puls */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(244, 172, 10, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 172, 10, 0.9);
    transform: scale(1.04); /* delikatne powiększenie */
  }
}

/* CSS dla nowej sekcji statystyk */
.stats-benefits2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* zawija na mniejszych ekranach */
  gap: 20px; /* odstęp między kafelkami */
  width: 100%;
  text-align: center;
}

.benefit2 {
  flex: 1 1 22%; /* cztery kafelki w rzędzie, responsywne */
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(244,172,10,0.25);
  transition: all 0.3s ease;
  min-width: 180px;
}

.benefit2 i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.benefit2 h4 {
  font-size: 24px;
  color: #fff;
  margin: 4px 0;
}

.benefit2 p {
  font-size: 14px;
  color: #ddd;
  margin: 0;
}

.benefit2:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 18px rgba(244,172,10,0.35);
}

@media (max-width: 992px) {
  .benefit2 {
    flex: 1 1 45%; /* dwa kafelki w rzędzie na tabletach */
  }
}

@media (max-width: 576px) {
  .benefit2 {
    flex: 1 1 100%; /* jeden kafelek w rzędzie na telefonach */
  }
}

/* Nagłówek */
.promo-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.promo-heading span {
  color: var(--accent-color);
}

/* Kafelki - ULEPSZONE 3 KOLUMNY */
.promo-benefits .benefit-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), transparent 5%));
  border: 1px solid rgba(244, 172, 10, 0.15);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-benefits .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 172, 10, 0.1), transparent);
  transition: left 0.6s ease;
}

.promo-benefits .benefit-card i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.promo-benefits .benefit-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Efekt hover - ULEPSZONY */
.promo-benefits .benefit-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.25);
}

.promo-benefits .benefit-card:hover::before {
  left: 100%;
}

.promo-benefits .benefit-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: color-mix(in srgb, var(--accent-color), #fff 20%);
}

.promo-benefits .benefit-card:hover h5 {
  color: var(--accent-color);
}

/* Odstępy i układ */
.promo-benefits .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.promo-benefits .row > [class*="col-"] {
  padding: 0 8px;
  margin-bottom: 16px;
}

/* 3 KOLUMNY na desktop (lg) */
@media (min-width: 992px) {
  .promo-benefits .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* 2 KOLUMNY na tablet (md) */
@media (max-width: 991px) and (min-width: 768px) {
  .promo-benefits .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* 1 KOLUMNA na mobile */
@media (max-width: 767px) {
  .promo-benefits .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .promo-benefits .benefit-card {
    padding: 18px 12px;
    min-height: 110px;
  }
  
  .promo-benefits .benefit-card i {
    font-size: 26px;
  }
  
  .promo-benefits .benefit-card h5 {
    font-size: 13px;
  }
}

/* Dla bardzo małych ekranów */
@media (max-width: 480px) {
  .promo-benefits .benefit-card {
    padding: 15px 10px;
    min-height: 100px;
  }
  
  .promo-benefits .benefit-card i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .promo-benefits .benefit-card h5 {
    font-size: 12px;
  }
}
/* Button */
.promo-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 18px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(244, 172, 10, 0.4);
}

.promo-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.promo-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: #ffffff;
  transform: scale(1.05);
}

.promo-btn:hover i {
  transform: translateX(5px);
}
/* Box z ceną */
.promo-price-box {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  border-radius: 16px;
  padding: 30px 20px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(244,172,10,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Stara cena */
.promo-price-box .old-price {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Nowa cena */
.promo-price-box .new-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  margin: 10px 0;
  animation: pulsePrice 1.8s infinite;
}

/* Tekst pod ceną */
.promo-price-box .price-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(244,172,10,0.4);
}

/* Animacja pulsu dla ceny */
@keyframes pulsePrice {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* BOX promocyjny */
.promo-banner {
  background: linear-gradient(135deg, #f4ac0a, #ffcc4d);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: var(--contrast-color);
  box-shadow: 0 0 25px rgba(244,172,10,0.7), 0 0 50px rgba(244,172,10,0.4);
  animation: glowBox 2s infinite alternate;
  position: relative;
  overflow: hidden;
}

/* Napis PROMOCJA */
.promo-banner .promo-label {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 10px #ffecb3, 0 0 20px #f4ac0a, 0 0 40px #f4ac0a;
  animation: neonFlicker 1.5s infinite;
}

/* Logo */
.promo-banner .promo-logo img {
  margin-top: 20px;
  max-width: 150px;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.6));
}
.promo-banner .promo-logo {
  position: relative;
  display: inline-block; /* dopasowanie do rozmiaru loga */
}

.promo-banner .promo-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 170px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.25); /* lekko ciemny, półprzezroczysty */
  border-radius: 12px; /* opcjonalnie zaokrąglone rogi jak kafelek */
  z-index: -1; /* żeby było pod obrazkiem */
}


/* Glow animacja boxa */
@keyframes glowBox {
  from { box-shadow: 0 0 25px rgba(244,172,10,0.5), 0 0 50px rgba(244,172,10,0.3); }
  to { box-shadow: 0 0 40px rgba(244,172,10,0.9), 0 0 80px rgba(244,172,10,0.6); }
}

/* Efekt mrugania neonowego */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.6; }
}
.promo-banner .spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px #f4ac0a;
  animation: sparkAnim 1.5s linear forwards;
}
@keyframes sparkAnim {
  from { transform: scale(1) translateY(0); opacity: 1; }
  to { transform: scale(0) translateY(-40px); opacity: 0; }
}
.promo-heading {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.promo-heading .highlight {
  background: linear-gradient(90deg, #f4ac0a, #ffecb3, #f4ac0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s infinite linear;
}

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

/* Sekcja Projekty Graficzne */
#projects-graphics {
  background: var(--surface-color-light);
  padding: 60px 0;
}

/* Nagłówek sekcji */
#projects-graphics .promo-heading {
  margin-bottom: 50px;
}

/* Kafelki: mniejsze wersja */
.promo-benefits-2 .benefit-card {
  background: var(--surface-color);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.promo-benefits-2 .benefit-card i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.promo-benefits-2 .benefit-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Lista z check ikonami */
.promo-benefits-2 .benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Lista z check ikonami - poprawiona */
.promo-benefits-2 .benefit-card ul li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
  display: flex;
  align-items: center; /* wyrównuje pionowo ikonę i tekst */
}

.promo-benefits-2 .benefit-card ul li i {
  color: var(--accent-color);
  font-size: 14px;      /* mniejsza, dopasowana do tekstu */
  margin-right: 8px;
  flex-shrink: 0;       /* zapobiega kurczeniu się ikony */
  line-height: 1;       /* wyrównanie do tekstu */
}


/* Efekt hover */
.promo-benefits-2 .benefit-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent-color);
  box-shadow: 0 6px 15px rgba(244,172,10,0.25);
}

/* Responsive: 1 kolumna na mobile */
@media (max-width: 768px) {
  .promo-benefits-2 .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .promo-benefits-2 .benefit-card {
    padding: 12px;
  }
}



















.image-section {
  position: relative;
  width: 100%;
}

.image-section img.main-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Kafelki overlay */
.highlight-list-overlay {
  position: absolute;
  bottom: 20px; /* nachodzą na dolną część obrazka */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  z-index: 10;
}

/* Kafelek */
.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(244,172,10,0.25);
}

.highlight-card i {
  font-size: 28px;
  color: var(--accent-color);
}

.highlight-card h5 {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.highlight-card p {
  font-size: 12px;
  margin: 0;
  color: #ddd;
}

.highlight-card:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-3px);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .highlight-list-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
    width: 100%; 
    padding: 8px 10px;
  }

  .highlight-card {
    flex: 0 0 48%; /* dwa w rzędzie */
    padding: 8px 10px;
    margin: 0 auto;
    min-width: unset;
  }

  .highlight-card i {
    font-size: 20px;
  }

  .highlight-card h5 {
    font-size: 12px;
  }

  .highlight-card p {
    font-size: 10px;
  }
}








.stats-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.stat, .benefit {
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.stat i, .benefit i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.stat h4 {
  font-size: 24px;
  color: var(--heading-color);
  margin: 4px 0;
}

.stat p, .benefit p {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

/* Efekt hover taki jak w promo */
.stat:hover, .benefit:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(244,172,10,0.3);
}

@media (max-width: 768px) {
  .stats-benefits {
    gap: 15px;
  }
  .stat i, .benefit i {
    font-size: 24px;
  }
  .stat h4 {
    font-size: 20px;
  }
  .stat p, .benefit p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Steps Section 123456 
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.steps .step-item:last-child {
  margin-bottom: 0;
}

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

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

@media (min-width: 992px) {
  .contact2 .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact2 .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact2 .contact-info-panel .contact2-info-header {
  margin-bottom: 30px;
}

.contact2 .contact-info-panel .contact2-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact2 .contact-info-panel .contact2-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact2 .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact2 .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact2 .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact2 .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact2 .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact2 .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact2 .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact2 .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact2 .social-links-panel {
  margin-top: 35px;
}

.contact2 .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact2 .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact2 .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact2 .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact2 .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact2 .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact2 .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact2 .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact2 .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact2 .form-container .form-floating {
  margin-bottom: 20px;
}

.contact2 .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact2 .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact2 .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact2 .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact2 .form-container .form-floating label::after {
  background-color: transparent;
}

.contact2 .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact2 .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact2 .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact2 .contact-info-panel {
    padding: 30px 25px;
  }

  .contact2 .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact2 .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Realizacje Portfolio Section
--------------------------------------------------------------*/
.realizacje {
  padding: 80px 0;
  background: var(--surface-color);
}

.realizacje-header {
  margin-bottom: 3rem;
}

.realizacje-badge {
  background: linear-gradient(45deg, #f4ac0a, #ffc107, #f4ac0a);
  background-size: 200% 200%;
  color: #031119;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  margin-bottom: 20px;
  animation: realizacje-shimmer 3s ease infinite;
  box-shadow: 0 4px 15px rgba(244, 172, 10, 0.3);
}

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

.realizacje-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--heading-color);
  background: linear-gradient(135deg, var(--heading-color) 0%, color-mix(in srgb, var(--heading-color), #f4ac0a 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.realizacje-subtitle {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filtry */
.realizacje-filters {
  margin-bottom: 3rem;
}

.realizacje-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  background: color-mix(in srgb, var(--surface-color), white 3%);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(244, 172, 10, 0.1);
}

.realizacje-filter-item {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.realizacje-filter-item:hover,
.realizacje-filter-item.active {
  background: linear-gradient(135deg, #f4ac0a, #ffc107);
  color: #031119;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}

/* Kafelki portfolio */
.realizacje-grid {
  position: relative;
}

.realizacje-container {
  position: relative;
}

.realizacje-item {
  opacity: 1;
  transition: all 0.4s ease;
}

.realizacje-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  visibility: hidden;
}

.realizacje-card {
  background: color-mix(in srgb, var(--surface-color), white 2%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(244, 172, 10, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.realizacje-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(244, 172, 10, 0.2);
}

.realizacje-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.realizacje-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

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

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

/* USUNIĘTE: przyciemnianie i ikonki */
.realizacje-overlay,
.realizacje-actions {
  display: none;
}

.realizacje-content {
  padding: 1.5rem;
}

.realizacje-category {
  display: inline-block;
  padding: 6px 12px;
  background: color-mix(in srgb, #f4ac0a, transparent 90%);
  color: #f4ac0a;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

.realizacje-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

/* JavaScript dla filtrowania */
.realizacje-item {
  transition: all 0.4s ease;
}

.realizacje-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  visibility: hidden;
}

/* Responsywność */
@media (max-width: 1199.98px) {
  .realizacje-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .realizacje {
    padding: 60px 0;
  }
  
  .realizacje-filter-list {
    gap: 5px;
    padding: 6px;
  }
  
  .realizacje-filter-item {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .realizacje-title {
    font-size: 2rem;
  }
  
  .realizacje-filter-list {
    flex-direction: column;
    border-radius: 16px;
    gap: 5px;
  }
  
  .realizacje-filter-item {
    border-radius: 12px;
    text-align: center;
  }
  
  .realizacje-content {
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .realizacje-title {
    font-size: 1.8rem;
  }
  
  .realizacje-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.service-details .service-tabs .tab-content .content-block ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* dwie kolumny na desktop */
  gap: 15px 25px;
}

.service-details .service-tabs .tab-content .content-block ul li {
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .tab-content .content-block ul li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-details .service-tabs .tab-content .content-block ul li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-details .service-tabs .tab-content .content-block ul li:hover i {
  transform: scale(1.2) rotate(-5deg);
}

@media (max-width: 768px) {
  .service-details .service-tabs .tab-content .content-block ul {
    grid-template-columns: 1fr; /* jedna kolumna na mobile */
  }
}

.service-details .service-tabs .tab-content .content-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  margin-left: 40px; /* odstęp od lewej, żeby było miejsce na marker + linię */
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; /* linia centralnie */
  width: 2px;
  background: var(--accent-color); /* żółta linia, pasuje do akcentu */
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px; /* miejsce na marker */
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -18px; /* marker centralnie na linii */
  top: 0;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color); /* żółte kółko */
  color: var(--contrast-color); /* biały numer */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(244, 172, 10, 0.5); /* delikatny glow */
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
  background: var(--surface-color); /* ciemny kafelek, taki jak inne na stronie */
  padding: 18px 22px;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content:hover {
  background: color-mix(in srgb, var(--surface-color), white 10%); /* rozjaśnienie na hover */
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color); /* jasny nagłówek */
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
  color: var(--default-color); /* tekst lekko przezroczysty */
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}




.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}





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

.service-details .service-sidebar .action-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%), var(--accent-color));
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .action-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.service-details .service-sidebar .action-card:before,
.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: floatCircles 8s ease-in-out infinite alternate;
}

.service-details .service-sidebar .action-card:before {
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.1);
}

.service-details .service-sidebar .action-card:after {
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
}
.service-details .service-sidebar .action-card h3 {
  color: #ffffff; /* biały tekst */
  font-size: 22px; /* ustawione na 22px */
  font-weight: 700;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

/* efekt hover */
.service-details .service-sidebar .action-card h3:hover {
  transform: scale(1.03); /* delikatne powiększenie przy hoverze */
}

@keyframes floatCircles {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(15px,10px) rotate(45deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

.service-details .service-sidebar .action-card .btn-primary {
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--contrast-color), black 20%));
  color: #1111;
  border-radius: 12px;
  padding: 14px 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,2.3);
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
}

.service-details .service-sidebar .action-card .guarantee {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  transition: transform 0.4s ease;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 8px;
  font-size: 16px;
  color: #fff200; /* delikatny żółty akcent */
}

.service-details .service-sidebar .action-card:hover .guarantee {
  transform: translateY(-3px) scale(1.05);
}








.service-features-list h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--heading-color);
  padding-bottom: 10px; /* odstęp przed linią */
  border-bottom: 3px solid var(--accent-color); /* linia pod nagłówkiem */
}
.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}


.service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-features-list h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--heading-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  display: block; /* aby <a> obejmowało cały kafelek */
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  transform: scale(1.0); /* zmniejszenie o ~15% */
}

.feature-card i {
  font-size: 32px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card h5 a {
  color: inherit;
  text-decoration: none;
}

.feature-card p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
  text-align: center; /* wyśrodkowanie tekstu */
}

/* Efekty hover */
.feature-card:hover {
  border-color: var(--accent-color);
  transform: scale(0.85) translateY(-5px); /* zachowanie skali przy hover */
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.feature-card:hover i {
  transform: scale(1.2);
}

.feature-card:hover h5 a {
  color: var(--accent-color);
}
.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-sidebar .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-details .service-sidebar .testimonial-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent-color);
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #b0b0b0); /* zamiast białego #fff, lekko szary */
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .testimonial-card .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}




/* Stylizacja dla Projekt i Druk - podobna do gadżetów ale z żółtą naklejką */
.service-details .service-sidebar .gadgets-promo-card .gadgets-header .gadgets-badge.promo {
  background-color: var(--surface-color);
  color: #000;
  font-weight: 800;
}

/* Opcjonalnie możesz dodać osobny selector jeśli chcesz różne kolory */
.service-details .service-sidebar .print-promo-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(244, 172, 10, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.service-details .service-sidebar .print-promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4ac0a, #ffd700, #f4ac0a);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.service-details .service-sidebar .print-promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(244, 172, 10, 0.2);
  border-color: #f4ac0a;
}

.service-details .service-sidebar .print-promo-card .print-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-sidebar .print-promo-card .print-header i {
  font-size: 2.5rem;
  color: #f4ac0a;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 20px rgba(244, 172, 10, 0.5);
}

.service-details .service-sidebar .print-promo-card .print-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-details .service-sidebar .print-promo-card .print-header .print-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: linear-gradient(45deg, #f4ac0a, #ffd700);
  color: #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.service-details .service-sidebar .print-promo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.service-details .service-sidebar .print-promo-card p strong {
  color: #f4ac0a;
  font-size: 1rem;
}

.service-details .service-sidebar .print-promo-card .print-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.service-details .service-sidebar .print-promo-card .print-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-details .service-sidebar .print-promo-card .print-features i {
  color: #f4ac0a;
  font-size: 0.8rem;
}

.service-details .service-sidebar .print-promo-card .btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f4ac0a, #ffd700);
  color: #000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}

.service-details .service-sidebar .print-promo-card .btn-print:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.5);
  gap: 15px;
}

.service-details .service-sidebar .print-promo-card .btn-print i {
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .print-promo-card .btn-print:hover i {
  transform: translateX(5px);
}











/* Stylizacja dla gadżetów reklamowych - bajerancka wersja */
.service-details .service-sidebar .gadgets-promo-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(244, 172, 10, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.service-details .service-sidebar .gadgets-promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4ac0a, #ffd700, #f4ac0a);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

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

.service-details .service-sidebar .gadgets-promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(244, 172, 10, 0.2);
  border-color: #f4ac0a;
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-header i {
  font-size: 2.5rem;
  color: #f4ac0a;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 20px rgba(244, 172, 10, 0.5);
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-header .gadgets-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: linear-gradient(45deg, #f4ac0a, #ffd700);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

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

.service-details .service-sidebar .gadgets-promo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.service-details .service-sidebar .gadgets-promo-card p strong {
  color: #f4ac0a;
  font-size: 1rem;
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-details .service-sidebar .gadgets-promo-card .gadgets-features i {
  color: #f4ac0a;
  font-size: 0.8rem;
}

.service-details .service-sidebar .gadgets-promo-card .btn-gadgets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f4ac0a, #ffd700);
  color: #000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}

.service-details .service-sidebar .gadgets-promo-card .btn-gadgets:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.5);
  gap: 15px;
}

.service-details .service-sidebar .gadgets-promo-card .btn-gadgets i {
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .gadgets-promo-card .btn-gadgets:hover i {
  transform: translateX(5px);
}



.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent-color); /* podkreślenie jak w innych h4 */
  color: var(--heading-color);
  text-align: center;
}

.service-details .service-sidebar .contact-info p {
  margin-bottom: 25px;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* Siatka dla dwóch kafelków */
.service-details .service-sidebar .contact-info .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Kafelki kontaktowe podobne do feature-card */
.contact-card {
  display: block;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card i {
  font-size: 32px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
}

/* Efekty hover */
.contact-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.contact-card:hover i {
  transform: scale(1.2);
}

.contact-card:hover h5 {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action2 {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.call-to-action2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  transform: rotate(-15deg);
  z-index: 1;
}

.call-to-action2 .container {
  position: relative;
  z-index: 2;
}

.call-to-action2 .image-wrapper {
  position: relative;
}

.call-to-action2 .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

.call-to-action2 .image-wrapper .main-image:hover {
  transform: translateY(-5px);
}

.call-to-action2 .image-wrapper .floating-card {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 280px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 3;
}

.call-to-action2 .image-wrapper .floating-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.call-to-action2 .image-wrapper .floating-card h4 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.call-to-action2 .image-wrapper .floating-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .call-to-action2 .image-wrapper .floating-card {
    right: auto;
    left: 20px;
    transform: translateY(-30%);
    max-width: 260px;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .call-to-action2 .image-wrapper .floating-card {
    left: 10px;
    max-width: 240px;
    padding: 20px;
  }

  .call-to-action2 .image-wrapper .floating-card h4 {
    font-size: 1rem;
  }

  .call-to-action2 .image-wrapper .floating-card p {
    font-size: 0.85rem;
  }
}

.call-to-action2 .content-area {
  padding-left: 0;
}

.call-to-action2 .content-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .call-to-action2 .content-area h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .call-to-action2 .content-area h2 {
    font-size: 1.75rem;
  }
}

.call-to-action2 .content-area>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action2 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.call-to-action2 .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.call-to-action2 .feature-list li:last-child {
  margin-bottom: 0;
}

.call-to-action2 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action2 .feature-list li span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--default-color);
}

.call-to-action2 .cta-wrapper {
  margin-top: 35px;
}

.call-to-action2 .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action2 .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action2 .btn-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 991px) {
  .call-to-action2 .content-area {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .call-to-action2 {
    padding: 40px 0;
  }

  .call-to-action2 .image-wrapper .floating-card {
    position: relative;
    right: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* Stylizacja dla sekcji technologii */
.tech-item {
  background: var(--surface-color);
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-item i {
  font-size: 2rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
}

.tech-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Stylizacja dla price-tag */
.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 15px 0;
}

/* Responsywność */
@media (max-width: 768px) {
  .tech-item {
    padding: 12px 8px;
  }
  
  .tech-item i {
    font-size: 1.5rem;
  }
  
  .tech-item span {
    font-size: 0.8rem;
  }
}


/* Sekcja Gadżety Reklamowe */
.gadgets-hero-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 20%) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gadgets-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.1) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
}

.gadgets-content .gadgets-badge {
  background: linear-gradient(45deg, #f4ac0a, #ffd166);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.gadgets-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.2;
}

.gadgets-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.gadgets-features {
  margin-bottom: 40px;
}

.gadgets-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.gadgets-features .feature-item i {
  color: #f4ac0a;
  font-size: 1.3rem;
  background: rgba(244, 172, 10, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gadgets-features .feature-item span {
  color: var(--default-color);
  font-weight: 500;
}

.gadgets-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gadgets-cta .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gadgets-cta .btn-primary {
  background: linear-gradient(135deg, #f4ac0a, #ffd700);
  color: #000;
  border: none;
  box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}

.gadgets-cta .btn-outline {
  border: 2px solid #f4ac0a;
  color: #f4ac0a;
  background: transparent;
}

.gadgets-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 172, 10, 0.4);
}

/* Grid gadżetów */
.gadgets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.gadget-item {
  background: var(--surface-color);
  border: 2px solid rgba(244, 172, 10, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.gadget-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #f4ac0a;
  box-shadow: 0 15px 30px rgba(244, 172, 10, 0.2);
  text-decoration: none;
  color: inherit;
}

.gadget-item i {
  font-size: 2.5rem;
  color: #f4ac0a;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
}

.gadget-item:hover i {
  transform: scale(1.2);
  color: #ffd166;
}

.gadget-item span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
  .gadgets-content h2 {
    font-size: 2.2rem;
  }
  
  .gadgets-cta {
    flex-direction: column;
  }
  
  .gadgets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .gadget-item {
    padding: 20px 15px;
  }
  
  .gadget-item i {
    font-size: 2rem;
  }
  
  .gadgets-features .feature-item {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gadgets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Sekcja Dlaczego wybrać nas */
#why-choose-us {
background: var(--background-color);
  padding: 80px 0;
  position: relative;
}

.feature-card-2 {
  background: var(--surface-color);  
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 172, 10, 0.1);
}

.feature-card-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(244, 172, 10, 0.15);
  border-color: #f4ac0a;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card-2:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(244, 172, 10, 0.2) !important;
}

.feature-icon i {
  font-size: 2rem;
}

.feature-card-2 h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card-2 p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--background-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 172, 10, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #f4ac0a;
  box-shadow: 0 10px 25px rgba(244, 172, 10, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 500;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f4ac0a;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
}

.btn-cta:hover {
  background: #e69c00;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 172, 10, 0.4);
  color: #fff;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .feature-card-2 {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 1.7rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .btn-cta {
    padding: 14px 30px;
    font-size: 1rem;
  }
}
/* UPROSZCZONE style - tylko efekty które działają */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(244, 172, 10, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
    }
}

.btn-cta {
    animation: pulse-gold 3s infinite;
}

/* Typing cursor effect */
.typing-cursor::after {
    display: none !important;

}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Smooth hover transitions */
.feature-card-2, .stat-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.gradient-text-container {
  position: relative;
  padding: 30px;
  background: linear-gradient(135deg, rgba(244, 172, 10, 0.1) 0%, rgba(244, 172, 10, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(244, 172, 10, 0.3);
}

.gradient-text-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f4ac0a, transparent, #f4ac0a);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
}

.gradient-header-line {
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(244, 172, 10, 0.3) 20%, 
    rgba(244, 172, 10, 0.6) 50%, 
    rgba(244, 172, 10, 0.3) 80%, 
    transparent 100%);
  margin-bottom: 40px;
  border-radius: 2px;
}

.gradient-text-container {
  position: relative;
  padding: 40px 50px;
  background: linear-gradient(135deg, 
    rgba(244, 172, 10, 0.08) 0%, 
    rgba(244, 172, 10, 0.04) 50%,
    rgba(255, 209, 102, 0.06) 100%);
  border-radius: 20px;
  border: 1px solid rgba(244, 172, 10, 0.15);
  margin-top: 20px;
  backdrop-filter: blur(5px);
}

.gradient-text-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, 
    rgba(244, 172, 10, 0.2), 
    transparent, 
    rgba(255, 209, 102, 0.2));
  border-radius: 21px;
  z-index: -1;
  opacity: 0.5;
}

.gradient-text-container h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
}

.gradient-text-container .lead {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--default-color);
  position: relative;
  z-index: 2;
}

/* Subtelny efekt hover */
.gradient-text-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, 
    rgba(244, 172, 10, 0.1) 0%, 
    rgba(244, 172, 10, 0.05) 50%,
    rgba(255, 209, 102, 0.08) 100%);
}

/* Responsywność */
@media (max-width: 768px) {
  .gradient-text-container {
    padding: 30px 25px;
  }
  
  .gradient-text-container h2 {
    font-size: 1.8rem;
  }
  
  .gradient-text-container .lead {
    font-size: 1.1rem;
  }
  
  .gradient-header-line {
    margin-bottom: 30px;
  }
}



/* Sekcja Pakiet Promocyjny */
#promo-package {
  padding: 80px 0;
}

.promo-container-wrapper {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--background-color), transparent 10%));  border-radius: 30px;
  border: 2px solid rgba(244, 172, 10, 0.3);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.promo-container-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4ac0a, #ffd166, #f4ac0a);
}

.promo-content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.promo-description {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-top: 20px;
  line-height: 1.6;
}

.promo-features {
  padding-right: 20px;
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--background-color);
  border-radius: 12px;
  border: 1px solid rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.promo-feature-item:hover {
  transform: translateX(5px);
  border-color: #f4ac0a;
  box-shadow: 0 5px 15px rgba(244, 172, 10, 0.1);
  text-decoration: none;
  color: inherit;
}

.promo-feature-item i {
  font-size: 1.3rem;
  color: #f4ac0a;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.promo-feature-item span {
  font-weight: 500;
  color: var(--heading-color);
}

.promo-price-card {
  background: linear-gradient(135deg, rgba(244, 172, 10, 0.1), rgba(244, 172, 10, 0.05));
  border: 2px solid rgba(244, 172, 10, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4ac0a, #ffd166, #f4ac0a);
}

.price-comparison {
  margin-bottom: 25px;
}

.old-price {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(244, 172, 10, 0.2);
}

.old-price .label {
  display: block;
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 5px;
}

.old-price .amount {
  display: block;
  font-size: 1.5rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 500;
}

.new-price .label {
  display: block;
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 8px;
}

.new-price .amount {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #f4ac0a;
  line-height: 1;
}

.savings-badge {
  background: rgba(244, 172, 10, 0.15);
  color: #f4ac0a;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin: 25px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f4ac0a;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.3);
}

.promo-order-btn:hover {
  background: #e69c00;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 172, 10, 0.4);
  color: #fff;
}

.promo-order-btn i {
  transition: transform 0.3s ease;
}

.promo-order-btn:hover i {
  transform: translateX(5px);
}

.promo-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--default-color);
}

.promo-guarantee i {
  color: #f4ac0a;
}

/* Responsywność */
@media (max-width: 991px) {
  .promo-features {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .promo-feature-item {
    padding: 12px 15px;
  }
  
  .new-price .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .promo-container-wrapper {
    padding: 40px 0;
    border-radius: 20px;
  }
  
  .promo-price-card {
    padding: 30px 20px;
  }
  
  .promo-order-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .new-price .amount {
    font-size: 2.2rem;
  }
}

/* Przesunięcie tekstu w prawo */
.promo-container-wrapper .container.section-title {
  padding-left: 30px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.promo-container-wrapper .section-title h2,
.promo-container-wrapper .section-title div,
.promo-container-wrapper .promo-description {
  margin-left: 0;
  text-align: left;
}



/*--------------------------------------------------------------
# Dołącz do nas - Współpraca
--------------------------------------------------------------*/
.dolacz-do-nas {
  background: var(--background-color);
  color: var(--default-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dolacz-do-nas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/dots-pattern.png') repeat;
  opacity: 0.05;
  pointer-events: none;
}

/* Hero Section */
.dolacz-do-nas-hero {
  margin-bottom: 100px;
}

.dolacz-do-nas-hero-content {
  padding-right: 50px;
}

.dolacz-do-nas-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dolacz-do-nas-hero-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--default-color);
}

.dolacz-do-nas-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* Premium Badge Items */
.dolacz-do-nas-hero-badges.premium {
    gap: 15px;
}

.dolacz-do-nas-badge-item.premium {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dolacz-do-nas-badge-item.premium:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateY(-3px) translateX(5px);
    box-shadow: 
        0 8px 30px color-mix(in srgb, var(--accent-color), transparent 80%),
        0 2px 10px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.dolacz-do-nas-badge-item.premium i {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dolacz-do-nas-badge-item.premium:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}
.dolacz-do-nas-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.dolacz-do-nas-hero-image {
  position: relative;
}

.dolacz-do-nas-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Sekcje nagłówki */
.dolacz-do-nas-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.dolacz-do-nas-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.dolacz-do-nas-section-subtitle {
  font-size: 1.3rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

/* Dlaczego My - Kafelki korzyści */
.dolacz-do-nas-why {
  margin-bottom: 100px;
}

.dolacz-do-nas-feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dolacz-do-nas-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.6s ease;
}

.dolacz-do-nas-feature-card:hover::before {
  left: 100%;
}

.dolacz-do-nas-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.dolacz-do-nas-feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.dolacz-do-nas-feature-card:hover .dolacz-do-nas-feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.dolacz-do-nas-feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.dolacz-do-nas-feature-text {
  color: var(--default-color);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Sekcja Promocyjna - Duży kafelek */
.dolacz-do-nas-promo {
  margin-bottom: 100px;
}

.dolacz-do-nas-promo-banner {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--surface-color), transparent 5%),
    color-mix(in srgb, var(--background-color), transparent 10%)
  );
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dolacz-do-nas-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%), var(--accent-color));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

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

.dolacz-do-nas-promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%));
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.dolacz-do-nas-promo-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.dolacz-do-nas-promo-subtitle {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 40px;
  max-width: 800px;
}

/* Services Grid */
.dolacz-do-nas-services-grid {
  margin-bottom: 30px;
}

.dolacz-do-nas-service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.dolacz-do-nas-service-item:hover {
  background: color-mix(in srgb, var(--surface-color), white 5%);
  transform: translateX(10px);
  border-color: var(--accent-color);
  text-decoration: none;
  color: inherit;
}

.dolacz-do-nas-service-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 30px;
  transition: transform 0.3s ease;
}

.dolacz-do-nas-service-item:hover i {
  transform: scale(1.2);
}

.dolacz-do-nas-service-item span {
  font-weight: 600;
  color: var(--heading-color);
}

/* Pricing Card */
.dolacz-do-nas-pricing-card {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.dolacz-do-nas-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
}

.dolacz-do-nas-price-comparison {
  margin-bottom: 30px;
}

.dolacz-do-nas-old-price {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.dolacz-do-nas-price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.dolacz-do-nas-price-amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.dolacz-do-nas-old-price .dolacz-do-nas-price-amount {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.dolacz-do-nas-new-price .dolacz-do-nas-price-amount {
  font-size: 3rem;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 0 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.dolacz-do-nas-savings {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.dolacz-do-nas-savings:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.dolacz-do-nas-savings i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dolacz-do-nas-savings:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.dolacz-do-nas-savings strong {
  font-size: 1em;
  color: color-mix(in srgb, var(--accent-color), black 20%);
}.dolacz-do-nas-savings {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.dolacz-do-nas-savings:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.dolacz-do-nas-savings i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dolacz-do-nas-savings:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.dolacz-do-nas-savings strong {
  font-size: 1em;
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.dolacz-do-nas-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%));
  color: #000;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
  width: 100%;
}

.dolacz-do-nas-cta-btn:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), black 10%), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: #000;
}

.dolacz-do-nas-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.dolacz-do-nas-guarantee i {
  color: var(--accent-color);
}

/* Zasięg */
.dolacz-do-nas-coverage {
  margin-bottom: 100px;
}

.dolacz-do-nas-coverage-content {
  padding-left: 50px;
}

.dolacz-do-nas-coverage-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.dolacz-do-nas-coverage-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 40px;
}

.dolacz-do-nas-coverage-stats {
  display: flex;
  gap: 30px;
}

.dolacz-do-nas-stat-item {
  text-align: center;
  flex: 1;
}

.dolacz-do-nas-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.dolacz-do-nas-stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Proces */
.dolacz-do-nas-process {
  margin-bottom: 100px;
}

.dolacz-do-nas-process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.dolacz-do-nas-process-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dolacz-do-nas-process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.6s ease;
}

.dolacz-do-nas-process-item:hover::before {
  left: 100%;
}

.dolacz-do-nas-process-item:hover {
  background: color-mix(in srgb, var(--surface-color), white 3%);
  transform: translateX(10px);
}

.dolacz-do-nas-process-number {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.dolacz-do-nas-process-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.dolacz-do-nas-process-text {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Referencje */
.dolacz-do-nas-testimonials {
  margin-bottom: 100px;
}

.dolacz-do-nas-testimonial-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dolacz-do-nas-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.6s ease;
}

.dolacz-do-nas-testimonial-card:hover::before {
  left: 100%;
}

.dolacz-do-nas-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dolacz-do-nas-testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.dolacz-do-nas-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.dolacz-do-nas-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
}

.dolacz-do-nas-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dolacz-do-nas-author-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.dolacz-do-nas-author-info span {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
}

/* Formularz CTA */
.dolacz-do-nas-cta {
  margin-bottom: 100px;
}

.dolacz-do-nas-cta-container {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--surface-color), transparent 5%),
    color-mix(in srgb, var(--background-color), transparent 10%)
  );
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dolacz-do-nas-cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%), var(--accent-color));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.dolacz-do-nas-cta-content {
  padding-right: 50px;
}

.dolacz-do-nas-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.dolacz-do-nas-cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 30px;
}

.dolacz-do-nas-cta-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dolacz-do-nas-cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
}

/* Formularz */
.dolacz-do-nas-form-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.dolacz-do-nas-form-input,
.dolacz-do-nas-form-textarea {
  width: 100%;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.dolacz-do-nas-form-input::placeholder,
.dolacz-do-nas-form-textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.dolacz-do-nas-form-input:focus,
.dolacz-do-nas-form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.dolacz-do-nas-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.dolacz-do-nas-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ffd166 50%));
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.dolacz-do-nas-submit-btn:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), black 10%), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* FAQ */
.dolacz-do-nas-faq {
  margin-bottom: 50px;
}

.dolacz-do-nas-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.dolacz-do-nas-faq-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dolacz-do-nas-faq-item:hover {
  border-color: var(--accent-color);
}

.dolacz-do-nas-faq-question {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--surface-color);
  transition: all 0.3s ease;
}

.dolacz-do-nas-faq-question:hover {
  background: color-mix(in srgb, var(--surface-color), white 2%);
}

.dolacz-do-nas-faq-question h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
}

.dolacz-do-nas-faq-toggle {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dolacz-do-nas-faq-answer {
  padding: 0 30px 25px;
  color: var(--default-color);
  line-height: 1.6;
  display: none;
}

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

.dolacz-do-nas-faq-item.active .dolacz-do-nas-faq-toggle {
  transform: rotate(180deg);
}

/* Komunikaty formularza */
.dolacz-do-nas-form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.dolacz-do-nas-form-message.success {
  background: color-mix(in srgb, #4caf50, transparent 90%);
  border: 1px solid #4caf50;
  color: #4caf50;
  display: block;
}

.dolacz-do-nas-form-message.error {
  background: color-mix(in srgb, #f44336, transparent 90%);
  border: 1px solid #f44336;
  color: #f44336;
  display: block;
}

.dolacz-do-nas-form-message.sending {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  display: block;
}

/* Responsywność */
@media (max-width: 768px) {
  .dolacz-do-nas-main-title {
    font-size: 2.5rem;
  }
  
  .dolacz-do-nas-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .dolacz-do-nas-coverage-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .dolacz-do-nas-coverage-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .dolacz-do-nas-process-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .dolacz-do-nas-cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .dolacz-do-nas-promo-banner {
    padding: 30px 20px;
  }
  
  .dolacz-do-nas-cta-container {
    padding: 30px 20px;
  }
  
  .dolacz-do-nas-section-title {
    font-size: 2.2rem;
  }
}

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

.dolacz-do-nas *[data-aos] {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.dolacz-do-nas *[data-aos="fade-up"] {
  animation-name: fadeInUp;
}



/* Sekcja Pakiet Kompleksowy */
.promocje-s4u .pakiet-kompleksowy {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 20%) 100%);
    padding: 100px 0;
}

.promocje-s4u .pakiet-kompleksowy .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.promocje-s4u .pakiet-kompleksowy h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.2;
}

.promocje-s4u .pakiet-kompleksowy .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 45px;
    color: var(--default-color);
}

.promocje-s4u .promo-features-grid .promo-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--background-color);
    border: 1px solid rgba(244, 172, 10, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.promocje-s4u .promo-features-grid .promo-feature-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    text-decoration: none;
    color: var(--heading-color);
}

.promocje-s4u .promo-features-grid .promo-feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.promocje-s4u .promo-features-grid .promo-feature-item:hover i {
    transform: scale(1.1);
}

.promocje-s4u .promo-pricing-card {
    background: linear-gradient(135deg, rgba(244, 172, 10, 0.1), rgba(244, 172, 10, 0.05));
    border: 2px solid rgba(244, 172, 10, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promocje-s4u .promo-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd166, var(--accent-color));
}

.promocje-s4u .price-comparison {
    margin-bottom: 25px;
}

.promocje-s4u .old-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 172, 10, 0.2);
}

.promocje-s4u .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--default-color);
    margin-bottom: 8px;
}

.promocje-s4u .old-price .price-amount {
    display: block;
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.promocje-s4u .new-price .price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 0 10px rgba(244, 172, 10, 0.3);
}

.promocje-s4u .savings-badge {
    background: rgba(244, 172, 10, 0.15);
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promocje-s4u .promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
    position: relative;
    overflow: hidden;
}

.promocje-s4u .promo-cta-btn::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;
}

.promocje-s4u .promo-cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 172, 10, 0.4);
    color: var(--contrast-color);
}

.promocje-s4u .promo-cta-btn:hover::before {
    left: 100%;
}

.promocje-s4u .guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--default-color);
}

.promocje-s4u .guarantee i {
    color: var(--accent-color);
}

/* Sekcja Strona + Social GRATIS */
.promocje-s4u .strona-social-promo {
    padding: 80px 0;
    background: var(--surface-color);
}

.promocje-s4u .strona-social-promo .promo-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promocje-s4u .strona-social-promo .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.promocje-s4u .strona-social-promo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.3;
}

.promocje-s4u .strona-social-promo .promo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--default-color);
}

.promocje-s4u .promo-includes .include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--default-color);
}

.promocje-s4u .promo-includes .include-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.promocje-s4u .promo-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.promocje-s4u .promo-actions .btn {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.promocje-s4u .promo-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.promocje-s4u .promo-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
    color: var(--contrast-color);
}

.promocje-s4u .promo-actions .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.promocje-s4u .promo-actions .btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}

/* Sekcja Projekt GRATIS */
.promocje-s4u .projekt-gratis-promo {
    padding: 80px 0;
    background: var(--background-color);
}

.promocje-s4u .projekt-gratis-promo .promo-card-left,
.promocje-s4u .projekt-gratis-promo .promo-card-right {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(244, 172, 10, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.promocje-s4u .projekt-gratis-promo .promo-card-left::before,
.promocje-s4u .projekt-gratis-promo .promo-card-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 15px 15px 0 0;
}

.promocje-s4u .projekt-gratis-promo .promo-card-left:hover,
.promocje-s4u .projekt-gratis-promo .promo-card-right:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(244, 172, 10, 0.15);
}

.promocje-s4u .projekt-gratis-promo .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 172, 10, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promocje-s4u .projekt-gratis-promo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 25px 0 20px;
    color: var(--heading-color);
    line-height: 1.3;
}

.promocje-s4u .projekt-gratis-promo p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.promocje-s4u .promo-details .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--default-color);
}

.promocje-s4u .promo-details .detail-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.promocje-s4u .promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.promocje-s4u .promo-link:hover {
    color: color-mix(in srgb, var(--accent-color), #000 20%);
    gap: 12px;
}

.promocje-s4u .promo-link i {
    transition: transform 0.3s ease;
}

.promocje-s4u .promo-link:hover i {
    transform: translateX(3px);
}

/* Responsywność */
@media (max-width: 768px) {
    .promocje-s4u .pakiet-kompleksowy {
        padding: 60px 0;
    }
    
    .promocje-s4u .pakiet-kompleksowy h1 {
        font-size: 2rem;
    }
    
    .promocje-s4u .strona-social-promo h2 {
        font-size: 1.7rem;
    }
    
    .promocje-s4u .promo-actions {
        flex-direction: column;
    }
    
    .promocje-s4u .new-price .price-amount {
        font-size: 2.5rem;
    }
    
    .promocje-s4u .promo-actions .btn {
        width: 100%;
        justify-content: center;
    }
}




/* Sekcja Pakiet Kompleksowy */
.promocje-s4u .pakiet-kompleksowy {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 20%) 100%);
    padding: 100px 0;
}

.promocje-s4u .pakiet-kompleksowy .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.promocje-s4u .pakiet-kompleksowy h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.2;
}

.promocje-s4u .pakiet-kompleksowy .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 45px;
    color: var(--default-color);
}

.promocje-s4u .promo-features-grid .promo-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--background-color);
    border: 1px solid rgba(244, 172, 10, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.promocje-s4u .promo-features-grid .promo-feature-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    text-decoration: none;
    color: var(--heading-color);
}

.promocje-s4u .promo-features-grid .promo-feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.promocje-s4u .promo-features-grid .promo-feature-item:hover i {
    transform: scale(1.1);
}

.promocje-s4u .promo-pricing-card {
    background: linear-gradient(135deg, rgba(244, 172, 10, 0.1), rgba(244, 172, 10, 0.05));
    border: 2px solid rgba(244, 172, 10, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promocje-s4u .promo-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffd166, var(--accent-color));
}

.promocje-s4u .price-comparison {
    margin-bottom: 25px;
}

.promocje-s4u .old-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 172, 10, 0.2);
}

.promocje-s4u .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--default-color);
    margin-bottom: 8px;
}

.promocje-s4u .old-price .price-amount {
    display: block;
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.promocje-s4u .new-price .price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 0 10px rgba(244, 172, 10, 0.3);
}

.promocje-s4u .savings-badge {
    background: rgba(244, 172, 10, 0.15);
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promocje-s4u .promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
    position: relative;
    overflow: hidden;
}

.promocje-s4u .promo-cta-btn::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;
}

.promocje-s4u .promo-cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 172, 10, 0.4);
    color: var(--contrast-color);
}

.promocje-s4u .promo-cta-btn:hover::before {
    left: 100%;
}

.promocje-s4u .guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--default-color);
}

.promocje-s4u .guarantee i {
    color: var(--accent-color);
}

/* Sekcja Strona + Social GRATIS */
.promocje-s4u .strona-social-promo {
    padding: 80px 0;
    background: var(--surface-color);
}

.promocje-s4u .strona-social-promo .promo-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promocje-s4u .strona-social-promo .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.promocje-s4u .strona-social-promo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.3;
}

.promocje-s4u .strona-social-promo .promo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--default-color);
}

.promocje-s4u .promo-includes .include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--default-color);
}

.promocje-s4u .promo-includes .include-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.promocje-s4u .promo-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.promocje-s4u .promo-actions .btn {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.promocje-s4u .promo-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.promocje-s4u .promo-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
    color: var(--contrast-color);
}

.promocje-s4u .promo-actions .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.promocje-s4u .promo-actions .btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 172, 10, 0.3);
}
/* Sekcja Projekt GRATIS - SKROMNA WERSJA */
.promocje-s4u .projekt-gratis-promo {
    padding: 60px 0;
    background: var(--background-color);
}

.promocje-s4u .projekt-gratis-promo .promo-card-left,
.promocje-s4u .projekt-gratis-promo .promo-card-right {
    background: var(--surface-color);
    border-radius: 10px;
    padding: 30px 25px;
    height: 100%;
    border: 1px solid rgba(244, 172, 10, 0.2);
    transition: all 0.3s ease;
}

.promocje-s4u .projekt-gratis-promo .promo-card-left:hover,
.promocje-s4u .projekt-gratis-promo .promo-card-right:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.promocje-s4u .projekt-gratis-promo .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 172, 10, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promocje-s4u .projekt-gratis-promo h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: var(--heading-color);
}

.promocje-s4u .projekt-gratis-promo p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Proste kafelki */
.promocje-s4u .projekt-gratis-features {
    display: grid;
    gap: 10px;
    margin-bottom: 25px;
}

.promocje-s4u .projekt-feature-card {
    background: rgba(244, 172, 10, 0.05);
    border: 1px solid rgba(244, 172, 10, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.promocje-s4u .projekt-feature-card:hover {
    background: rgba(244, 172, 10, 0.1);
    border-color: var(--accent-color);
}

.promocje-s4u .projekt-feature-card .feature-text {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

/* Proste przyciski */
.promocje-s4u .projekt-gratis-actions {
    text-align: center;
    margin-top: 20px;
}

.promocje-s4u .projekt-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
}

.promocje-s4u .projekt-action-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

.promocje-s4u .projekt-action-btn i {
    transition: transform 0.3s ease;
}

.promocje-s4u .projekt-action-btn:hover i {
    transform: translateX(3px);
}






/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding: 80px 0;
}

.blog-post-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-post-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.05);
}

.blog-post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-title {
  margin-bottom: 15px;
}

.blog-post-title a {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--accent-color);
}

.blog-post-excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--heading-color);
}

.blog-post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  background-color: var(--accent-color);
  color: #000;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding: 40px 0;
}

.blog-pagination-nav {
  display: flex;
  justify-content: center;
}

.blog-pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-item {
  margin: 0;
}

.blog-pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  color: var(--default-color);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.blog-pagination-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.blog-pagination-active {
  background-color: var(--accent-color);
  color: #000 !important;
  border-color: var(--accent-color);
}

.blog-pagination-prev,
.blog-pagination-next {
  gap: 8px;
  padding: 0 20px;
}

.blog-pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination-text {
  font-size: 14px;
}

@media (max-width: 768px) {
  .blog-pagination-list {
    gap: 4px;
  }
  
  .blog-pagination-link {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
  
  .blog-pagination-prev,
  .blog-pagination-next {
    padding: 0 16px;
  }
  
  .blog-pagination-text {
    display: none;
  }
}








/*--------------------------------------------------------------
# Blog Content Section
--------------------------------------------------------------*/
.blog-content {
  padding: 60px 0;
}

.blog-main-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-article-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-article-date,
.blog-article-category,
.blog-article-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.blog-featured-image {
  margin-bottom: 40px;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-article-body {
  line-height: 1.7;
}

.blog-article-intro {
  font-size: 1.1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 40px;
}

.blog-article-section {
  margin-bottom: 50px;
}

.blog-article-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.blog-article-section p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-service-box {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.blog-service-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-service-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.blog-service-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.blog-service-text p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-service-text a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

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

.blog-article-summary {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 4px solid var(--accent-color);
}

.blog-article-summary h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.blog-article-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 50px;
}

.blog-cta-content h4 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-cta-content p {
  color: #000;
  margin-bottom: 20px;
  opacity: 0.9;
}

.blog-cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .blog-article-header h1 {
    font-size: 2rem;
  }
  
  .blog-article-meta {
    gap: 15px;
  }
  
  .blog-service-box {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-article-cta {
    padding: 30px 20px;
  }
}






/*--------------------------------------------------------------
# Gadzety Reklamowe Hero Section
--------------------------------------------------------------*/
.gadzety-reklamowe-hero-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gadzety-reklamowe-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.15) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.gadzety-reklamowe-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.1) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.gadzety-reklamowe-header {
  position: relative;
  z-index: 2;
}

.gadzety-reklamowe-badge {
  background: linear-gradient(45deg, #f4ac0a, #ffd166, #f4ac0a);
  background-size: 200% 200%;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 25px;
  animation: gadzety-reklamowe-shimmer 3s ease infinite;
  box-shadow: 0 4px 15px rgba(244, 172, 10, 0.3);
}

@keyframes gadzety-reklamowe-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gadzety-reklamowe-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--heading-color) 0%, color-mix(in srgb, var(--heading-color), var(--accent-color) 30%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gadzety-reklamowe-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Styles */
.gadzety-reklamowe-content {
  position: relative;
  z-index: 2;
}

.gadzety-reklamowe-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gadzety-reklamowe-main-image img {
  transition: transform 0.5s ease;
}

.gadzety-reklamowe-main-image:hover img {
  transform: scale(1.03);
}

.gadzety-reklamowe-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent-color);
}

/* Why Section */
.gadzety-reklamowe-why-section {
  margin: 50px 0;
}

.gadzety-reklamowe-reason-card {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 16px;
  border: 2px solid rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.gadzety-reklamowe-reason-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(244, 172, 10, 0.15);
}

.gadzety-reklamowe-reason-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.gadzety-reklamowe-reason-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.gadzety-reklamowe-reason-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

/* Products Section */
.gadzety-reklamowe-products-section {
  margin: 50px 0;
}

.gadzety-reklamowe-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gadzety-reklamowe-product-category {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
}

.gadzety-reklamowe-product-category:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.gadzety-reklamowe-product-category i {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.gadzety-reklamowe-product-category h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.gadzety-reklamowe-product-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gadzety-reklamowe-product-category li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  padding-left: 20px;
}

.gadzety-reklamowe-product-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Sidebar Styles */
.gadzety-reklamowe-sidebar {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Form Container */
.gadzety-reklamowe-form-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(244, 172, 10, 0.2);
  position: relative;
  overflow: hidden;
}

.gadzety-reklamowe-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4ac0a, #ffd166, #f4ac0a);
  background-size: 200% 100%;
  animation: gadzety-reklamowe-shimmer 3s ease infinite;
}

.gadzety-reklamowe-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.gadzety-reklamowe-form-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.gadzety-reklamowe-form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

/* Form Styles */
.gadzety-reklamowe-contact-form .form-floating {
  margin-bottom: 20px;
}

.gadzety-reklamowe-contact-form .form-control,
.gadzety-reklamowe-contact-form .form-select {
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 16px 20px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
  font-size: 15px;
}

.gadzety-reklamowe-contact-form .form-control:focus,
.gadzety-reklamowe-contact-form .form-select:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.gadzety-reklamowe-contact-form label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

/* Form Features */
.gadzety-reklamowe-form-features {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  border: 1px solid rgba(244, 172, 10, 0.2);
}

.gadzety-reklamowe-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.gadzety-reklamowe-feature i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Submit Button */
.gadzety-reklamowe-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #f4ac0a, #ffd166);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.3);
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.gadzety-reklamowe-submit-btn:hover {
  background: linear-gradient(135deg, #e69c00, #f4ac0a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 172, 10, 0.4);
  color: #000;
}

.gadzety-reklamowe-submit-btn i {
  transition: transform 0.3s ease;
}

.gadzety-reklamowe-submit-btn:hover i {
  transform: translateX(5px);
}

/* Stats */
.gadzety-reklamowe-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid rgba(244, 172, 10, 0.1);
}

.gadzety-reklamowe-stat-item {
  text-align: center;
}

.gadzety-reklamowe-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.gadzety-reklamowe-stat-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Promo Box */
.gadzety-reklamowe-promo {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 16px;
  color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gadzety-reklamowe-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.gadzety-reklamowe-promo-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.gadzety-reklamowe-promo-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gadzety-reklamowe-promo-content p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.gadzety-reklamowe-promo-content small {
  opacity: 0.8;
  font-size: 0.8rem;
}

/* Responsywność */
@media (max-width: 1199px) {
  .gadzety-reklamowe-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .gadzety-reklamowe-hero-section {
    padding: 60px 0;
  }
  
  .gadzety-reklamowe-title {
    font-size: 2.5rem;
  }
  
  .gadzety-reklamowe-content {
    margin-bottom: 50px;
  }
  
  .gadzety-reklamowe-products-grid {
    grid-template-columns: 1fr;
  }
  
  .gadzety-reklamowe-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gadzety-reklamowe-title {
    font-size: 2.2rem;
  }
  
  .gadzety-reklamowe-subtitle {
    font-size: 1.1rem;
  }
  
  .gadzety-reklamowe-form-container {
    padding: 30px 25px;
  }
  
  .gadzety-reklamowe-form-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .gadzety-reklamowe-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gadzety-reklamowe-title {
    font-size: 1.8rem;
  }
  
  .gadzety-reklamowe-badge {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  
  .gadzety-reklamowe-reason-card {
    padding: 25px 20px;
  }
  
  .gadzety-reklamowe-product-category {
    padding: 25px 20px;
  }
}














/*--------------------------------------------------------------
# Projekt Druk Hero Section
--------------------------------------------------------------*/
.projekt-druk-hero-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.projekt-druk-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.15) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.projekt-druk-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.1) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.projekt-druk-header {
  position: relative;
  z-index: 2;
}

.projekt-druk-badge {
  background: linear-gradient(45deg, #f4ac0a, #ffc107, #f4ac0a);
  background-size: 200% 200%;
  color: #031119;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 25px;
  animation: projekt-druk-shimmer 3s ease infinite;
  box-shadow: 0 4px 15px rgba(244, 172, 10, 0.3);
}

@keyframes projekt-druk-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.projekt-druk-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--heading-color) 0%, color-mix(in srgb, var(--heading-color), #f4ac0a 30%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projekt-druk-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Styles */
.projekt-druk-content {
  position: relative;
  z-index: 2;
}

/* Categories */
.projekt-druk-categories {
  margin-top: 40px;
}

.projekt-druk-category-group {
  margin-bottom: 50px;
}

.projekt-druk-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  padding-bottom: 10px;
  border-bottom: 3px solid #f4ac0a;
}

.projekt-druk-category-card {
  background: var(--surface-color);
  padding: 25px 20px;
  border-radius: 16px;
  border: 2px solid rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.projekt-druk-category-card:hover {
  transform: translateY(-8px);
  border-color: #f4ac0a;
  box-shadow: 0 15px 40px rgba(244, 172, 10, 0.15);
}

.projekt-druk-category-card i {
  font-size: 2.2rem;
  color: #f4ac0a;
  margin-bottom: 15px;
  display: block;
}

.projekt-druk-category-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.projekt-druk-category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.projekt-druk-category-card li {
  padding: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Sidebar Styles */
.projekt-druk-sidebar {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Form Container */
.projekt-druk-form-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(244, 172, 10, 0.2);
  position: relative;
  overflow: hidden;
}

.projekt-druk-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4ac0a, #ffc107, #f4ac0a);
  background-size: 200% 100%;
  animation: projekt-druk-shimmer 3s ease infinite;
}

.projekt-druk-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.projekt-druk-form-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.projekt-druk-form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

/* Form Styles */
.projekt-druk-contact-form .form-floating {
  margin-bottom: 20px;
}

.projekt-druk-contact-form .form-control,
.projekt-druk-contact-form .form-select {
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 16px 20px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
  font-size: 15px;
}

.projekt-druk-contact-form .form-control:focus,
.projekt-druk-contact-form .form-select:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, #f4ac0a, transparent 85%);
  border-color: color-mix(in srgb, #f4ac0a, transparent 40%);
  background-color: var(--surface-color);
}

.projekt-druk-contact-form label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

/* Form Features */
.projekt-druk-form-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
  padding: 20px;
  background: color-mix(in srgb, #f4ac0a, transparent 95%);
  border-radius: 12px;
  border: 1px solid rgba(244, 172, 10, 0.2);
}

.projekt-druk-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.projekt-druk-feature i {
  color: #f4ac0a;
  font-size: 1rem;
}

/* Submit Button */
.projekt-druk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #f4ac0a, #ffc107);
  color: #031119;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.3);
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.projekt-druk-submit-btn:hover {
  background: linear-gradient(135deg, #e09b09, #f4ac0a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 172, 10, 0.4);
  color: #031119;
}

.projekt-druk-submit-btn i {
  transition: transform 0.3s ease;
}

.projekt-druk-submit-btn:hover i {
  transform: translateX(5px);
}

/* Promo Box */
.projekt-druk-promo {
  background: linear-gradient(135deg, #f4ac0a, #ffc107);
  padding: 30px;
  border-radius: 16px;
  color: #031119;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projekt-druk-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.projekt-druk-promo-content i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.projekt-druk-promo-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.projekt-druk-promo-content p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.projekt-druk-promo-content small {
  opacity: 0.9;
  font-size: 0.8rem;
}

/* Responsywność */
@media (max-width: 1199px) {
  .projekt-druk-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .projekt-druk-hero-section {
    padding: 60px 0;
  }
  
  .projekt-druk-title {
    font-size: 2.5rem;
  }
  
  .projekt-druk-content {
    margin-bottom: 50px;
  }
  
  .projekt-druk-form-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .projekt-druk-title {
    font-size: 2.2rem;
  }
  
  .projekt-druk-subtitle {
    font-size: 1.1rem;
  }
  
  .projekt-druk-form-container {
    padding: 30px 25px;
  }
  
  .projekt-druk-category-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .projekt-druk-title {
    font-size: 1.8rem;
  }
  
  .projekt-druk-badge {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  
  .projekt-druk-category-card {
    padding: 20px 15px;
  }
  
  .projekt-druk-category-card i {
    font-size: 1.8rem;
  }
}








/*--------------------------------------------------------------
# Druk Hero Section
--------------------------------------------------------------*/
.druk-hero-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 5%) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.druk-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.1) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.druk-hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 172, 10, 0.05) 0%, rgba(244, 172, 10, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.druk-hero-badge {
  background: linear-gradient(45deg, #f4ac0a, #ffc107, #f4ac0a);
  background-size: 200% 200%;
  color: #031119;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-block;
  margin-bottom: 25px;
  animation: druk-hero-shimmer 3s ease infinite;
  box-shadow: 0 4px 15px rgba(244, 172, 10, 0.3);
}

@keyframes druk-hero-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.druk-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--heading-color) 0%, color-mix(in srgb, var(--heading-color), #f4ac0a 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.druk-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Features */
.druk-hero-features {
  margin-bottom: 40px;
}

.druk-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), white 3%);
  border-radius: 12px;
  border: 1px solid rgba(244, 172, 10, 0.1);
  transition: all 0.3s ease;
}

.druk-hero-feature:hover {
  transform: translateX(5px);
  border-color: rgba(244, 172, 10, 0.3);
  box-shadow: 0 5px 20px rgba(244, 172, 10, 0.1);
}

.druk-hero-feature i {
  font-size: 1.5rem;
  color: #f4ac0a;
  margin-top: 2px;
  flex-shrink: 0;
}

.druk-hero-feature h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.druk-hero-feature p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

/* CTA Buttons */
.druk-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.druk-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.druk-hero-btn-primary {
  background: linear-gradient(135deg, #f4ac0a, #ffc107);
  color: #031119;
  box-shadow: 0 5px 20px rgba(244, 172, 10, 0.3);
}

.druk-hero-btn-primary:hover {
  background: linear-gradient(135deg, #e09b09, #f4ac0a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 172, 10, 0.4);
  color: #031119;
}

.druk-hero-btn-secondary {
  background: transparent;
  color: var(--default-color);
  border-color: rgba(244, 172, 10, 0.5);
}

.druk-hero-btn-secondary:hover {
  background: rgba(244, 172, 10, 0.1);
  border-color: #f4ac0a;
  transform: translateY(-2px);
  color: var(--heading-color);
}

/* Image Section */
.druk-hero-image {
  position: relative;
  z-index: 2;
}

.druk-hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(244, 172, 10, 0.2);
}

.druk-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.druk-hero-image-container:hover .druk-hero-img {
  transform: scale(1.05);
}

.druk-hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(3, 17, 25, 0.9) 100%);
  padding: 30px 25px;
}

.druk-hero-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.druk-hero-stat {
  text-align: center;
}

.druk-hero-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #f4ac0a;
  margin-bottom: 5px;
}

.druk-hero-stat-text {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsywność */
@media (max-width: 1199px) {
  .druk-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .druk-hero-section {
    padding: 80px 0 60px;
  }
  
  .druk-hero-title {
    font-size: 2.4rem;
  }
  
  .druk-hero-content {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .druk-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .druk-hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .druk-hero-title {
    font-size: 2rem;
  }
  
  .druk-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .druk-hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .druk-hero-stat-number {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .druk-hero-title {
    font-size: 1.8rem;
  }
  
  .druk-hero-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  
  .druk-hero-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .druk-hero-feature {
    padding: 15px;
  }
}






/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}