/**
* Template Name: Passion
* Template URL: https://bootstrapmade.com/passion-bootstrap-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
: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: "Barlow",  sans-serif;
  --nav-font: "Inter",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #14201c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a3223; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5170ff; /* 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: #ffffff; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #5170ff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #14201c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5170ff; /* 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: #f4f9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

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

  .call-button {
    position: fixed;
    bottom: 60px;
    right: 15px;
    background-color: #5170ff;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
  }

  .call-button:hover {
    background-color: #3a56cc;
  }

/*--------------------------------------------------------------
# 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(0, 0, 0, 0);
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.085);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(7, 12, 16, 0.8);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--default-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    margin: 0;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}
/* Ulepszony Footer CSS */
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), black 20%) 100%);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

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

.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.footer .footer-about p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

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

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

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li::before {
  content: '▸';
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 12px;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1.2;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

/* Styl dla kontaktów w stopce */
.footer .footer-contact .contact-info {
  margin-bottom: 20px;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px 0;
}

.footer .contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer .contact-item div {
  flex: 1;
}

.footer .contact-item strong {
  display: block;
  font-size: 13px;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.footer .contact-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .contact-item a:hover {
  color: var(--accent-color);
}

/* Przyciski CTA w stopce */
.footer .footer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .btn-call,
.footer .btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}

.footer .btn-call {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.footer .btn-call:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.footer .btn-email {
  background: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .btn-email:hover {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Copyright section */
.footer .copyright {
  padding: 25px 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .copyright a {
  color: var(--accent-color);
  text-decoration: none;
}

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

.footer .footer-logo {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer .footer-logo:hover {
  opacity: 1;
}

/* Responsywność */
@media (max-width: 768px) {
  .footer .footer-top {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 30px;
  }
  
  .footer .footer-cta {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer .btn-call,
  .footer .btn-email {
    flex: 1;
    margin: 0 5px;
  }
  
  .footer .copyright .row {
    text-align: center;
  }
  
  .footer .copyright .col-lg-4 {
    margin-bottom: 15px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

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



.hero .hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  z-index: 2;
}
.hero .hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  font-size: 29px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: calc(50% - 10px);
}

.hero .feature-card:hover {
  transform: translateY(-5px);
}

.hero .feature-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .feature-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
  }

  .hero .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    padding: 16px;
  }

  .hero .feature-card i {
    font-size: 24px;
  }

  .hero .feature-card span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero .hero-visual {
    margin-top: 40px;
  }

  .hero .feature-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero .feature-card span {
    font-size: 11px;
  }
}

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

.about .content {
  padding-right: 20px;
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about .content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .stats-container {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .about .stat-item {
    margin-bottom: 2rem;
  }

  .about .stat-item .number {
    font-size: 2rem;
  }
}

.about .cta-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 576px) {
  .about .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.about .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.about .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.about .image-wrapper {
  position: relative;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.about .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 2rem;
  }
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .image-wrapper .floating-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .image-wrapper .floating-card .card-content .text h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.about .image-wrapper .floating-card .card-content .text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  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: 20px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  position: relative;
}

.featured-services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .featured-services .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .featured-services .services-content h2 {
    font-size: 28px;
  }
}

.featured-services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.featured-services .services-content .btn-consultation span {
  margin-right: 8px;
}

.featured-services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.featured-services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.featured-services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.featured-services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.featured-services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.featured-services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.featured-services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .featured-services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.featured-services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.featured-services .services-slider .swiper-wrapper {
  height: auto !important;
}

.featured-services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.featured-services .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.featured-services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.featured-services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.featured-services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.featured-services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.featured-services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.featured-services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

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

.featured-services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

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

.featured-services .service-card:hover .content p {
  color: var(--contrast-color);
}

.featured-services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.featured-services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.featured-services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.featured-services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.featured-services .swiper-navigation button:last-child {
  margin-right: 0;
}

.featured-services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .how-we-work .steps-grid {
    gap: 1.5rem;
  }
}

.how-we-work .step-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.how-we-work .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.how-we-work .step-card:hover .step-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.how-we-work .step-card:hover .step-arrow {
  transform: translateX(5px);
}

.how-we-work .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.how-we-work .step-card .step-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 0.5rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;

}

.how-we-work .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .how-we-work .step-card h3 {
    font-size: 1.2rem;
  }
}

.how-we-work .step-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.how-we-work .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

@media (max-width: 991px) {
  .how-we-work .step-card .step-arrow {
    display: none;
  }
}

.how-we-work .step-card:last-child .step-arrow {
  display: none;
}

@media (max-width: 991px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-we-work .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-we-work .step-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.features .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.features .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.features .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features .tab-pane {
  transition: all 0.4s ease;
}

.features .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features .nav-tabs {
    margin-bottom: 30px;
  }

  .features .nav-tabs .nav-link {
    padding: 15px;
  }

  .features .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features .tab-content .content-box {
    padding: 30px;
  }

  .features .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features .tab-content .content-box {
    padding: 25px;
  }

  .features .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

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

.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services .service-card.featured .service-icon i {
  font-size: 40px;
}

.services .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services .service-card.featured .service-meta {
  margin: 25px 0;
}

.services .service-card.compact {
  padding: 30px 25px;
}

.services .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services .service-card.compact .service-icon i {
  font-size: 28px;
}

.services .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

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

.services .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

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

.services .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #5170ff, #5170ff);
}

.services .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services .stats-highlight2 {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services .stats-highlight2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services .stats-highlight2 .row {
  position: relative;
  z-index: 2;
}

.services .stats-highlight2 .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services .stats-highlight2 .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services .stats-highlight2 .stat-item .stat-number {
    font-size: 36px;
  }
}

.services .stats-highlight2 .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services .stats-highlight2 .stat-item .stat-label {
    font-size: 14px;
  }
}

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

  .services .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

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

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

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

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

  .services .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
}

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

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

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

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing .pricing-item .btn-pricing:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .pricing-item.featured .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

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

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.call-to-action .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.call-to-action .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.call-to-action .benefits-row {
  margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.call-to-action .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.call-to-action .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

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

.call-to-action .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.call-to-action .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.call-to-action .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

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

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

@keyframes float2 {

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

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

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

  .call-to-action .row {
    flex-direction: column-reverse;
  }

  .call-to-action .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .call-to-action .cta-image-container .floating-element.element-1 {
    top: 15%;
    left: 10%;
  }

  .call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 15%;
    right: 10%;
  }

  .call-to-action .cta-content {
    padding: 2rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action .action-buttons .btn {
    width: 100%;
  }

  .call-to-action .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action .cta-content {
    padding: 1.5rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.75rem;
  }

  .call-to-action .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-image-container {
    min-height: 300px;
  }

  .call-to-action .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .call-to-action .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .call-to-action .shape {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
  position: relative;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

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

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

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

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --card-border-radius: 12px;
  --content-spacing: 4rem;
}

.portfolio-details .project-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-header .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
  color: inherit;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-meta .meta-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.portfolio-details .project-header .project-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transform: scale(1.05);
}

.portfolio-details .media-showcase {
  margin-bottom: var(--content-spacing);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .media-showcase .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .media-showcase .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .media-showcase .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
  margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.portfolio-details .project-content .description-box p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
  background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
  color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-details .project-content .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-details .project-content .project-gallery {
  margin: 3rem 0;
}

.portfolio-details .project-content .project-gallery h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
  margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
  transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 8px 16px;
  border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
  transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
  margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-details .project-header .technologies {
    margin-top: 2rem;
  }

  .portfolio-details .project-header .technologies .tech-title,
  .portfolio-details .project-header .technologies .tech-badges {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header .project-title {
    font-size: 2.2rem;
  }

  .portfolio-details .project-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .portfolio-details .project-navigation a.all-projects {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-stats {
    grid-template-columns: 1fr !important;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process h4 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.service-details .service-process .process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  border: 1px solid rgba(10, 50, 35, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-details .service-process .process-steps .process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 50, 35, 0.12);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
  flex-shrink: 0;
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-family: var(--heading-font);
  align-self: flex-start;
}

.service-details .service-process .process-steps .process-step .step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--default-color);
  font-family: var(--default-font);
  flex: 1;
}

/* Responsywność */
@media (max-width: 992px) {
  .service-details .service-process .process-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .service-details .service-process .process-steps .process-step {
    padding: 20px;
    text-align: left;
  }
  
  .service-details .service-process .process-steps .process-step .step-number {
    align-self: center;
    margin-bottom: 15px;
  }
  
  .service-details .service-process .process-steps .process-step .step-content h5 {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .service-details .service-process .process-steps .process-step .step-content p {
    font-size: 0.95rem;
    text-align: center;
  }
}



.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

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

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}






/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.blog-comment-form {
  max-width: 900px;
  margin: 40px auto;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-comment-form .input-with-icon {
  position: relative;
  margin-bottom: 1rem;
}

.blog-comment-form .input-with-icon i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
}

.blog-comment-form .input-with-icon input,
.blog-comment-form .input-with-icon textarea {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 40px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-with-icon input:focus,
.blog-comment-form .input-with-icon textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
.blog-comment-form .input-with-icon input::placeholder,
.blog-comment-form .input-with-icon textarea::placeholder {
  color: #111; /* Biały kolor placeholdera */
  opacity: 1;      /* Pełna widoczność */
  font-style: italic;
}
@media (max-width: 768px) {
  .blog-comment-form form {
    padding: 1.5rem;
  }
  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }
  .blog-comment-form .btn-primary {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-posts article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* obrazek z kategorią */
.blog-posts .post-img {
  position: relative;
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog-posts .post-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/* kafelek na obrazie */
.blog-posts .post-category {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6); /* półprzezroczyste tło */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.blog-posts article:hover .post-category {
  background: rgba(229, 183, 35, 0.9); /* zmienia się na accent-color przy hover */
  color: #000;
}

/* tytuł */
.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 15px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
  text-decoration: none;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  background: rgba(229, 183, 35, 0.1); /* delikatne tło accent-color */
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-posts .read-more::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-posts .read-more:hover {
  background: var(--accent-color);
  color: #000;
}

.blog-posts .read-more:hover::after {
  transform: translateX(4px); /* strzałka przesuwa się w prawo */
}


/* autor */
.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}





/* Style dla drugiego popupu */
.consultation-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 90%;
  max-width: 400px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  display: none;
}

.consultation-popup.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.consultation-popup-content {
  padding: 0;
}

.consultation-popup-header {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px 0 0;
}

.consultation-popup-close {
  cursor: pointer;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.consultation-popup-close:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.consultation-popup-body {
  padding: 20px 25px;
  text-align: center;
}

.consultation-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 32px;
  margin: 0 auto 20px;
}

.consultation-message h3 {
  color: var(--default-color);
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.consultation-message p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin: 0;
  font-size: 15px;
}

.consultation-popup-footer {
  padding: 20px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.consultation-call-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.consultation-later-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 60%);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.consultation-later-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Animacja pulsowania dla drugiego popupu */
@keyframes consultationPulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 50%);
  }
  70% {
    box-shadow: 0 0 0 15px color-mix(in srgb, var(--accent-color), transparent 0%);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 0%);
  }
}

.consultation-popup.show .consultation-avatar {
  animation: consultationPulse 2s infinite;
}

/* Responsywność */
@media (max-width: 768px) {
  .consultation-popup {
    width: 85%;
  }
  
  .consultation-popup-body {
    padding: 15px 20px;
  }
  
  .consultation-popup-footer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .consultation-popup {
    width: 90%;
  }
  
  .consultation-avatar {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .consultation-message h3 {
    font-size: 18px;
  }
  
  .consultation-message p {
    font-size: 14px;
  }
}

/* Tło przyciemniające dla popupu konsultacji */
.consultation-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}

.consultation-popup.show + .consultation-popup-backdrop {
  display: block;
}













/* Notification Popup Styles */
.notification-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateX(-400px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
}

.notification-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.popup-content {
  padding: 0;
}

.popup-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 15px 0 0;
}

.popup-close {
  cursor: pointer;
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.popup-body {
  display: flex;
  align-items: flex-start;
  padding: 0 20px 15px;
  gap: 15px;
}

.avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 24px;
}

.message {
  flex: 1;
}

.message p {
  margin: 0;
  line-height: 1.4;
}

.message p:first-child {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.message .call-cta {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.popup-footer {
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.popup-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.popup-call-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

/* Animacja pulsowania */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 50%);
  }
  70% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent-color), transparent 0%);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 0%);
  }
}

.notification-popup.show .avatar {
  animation: pulse 2s infinite;
}

/* Responsywność */
@media (max-width: 768px) {
  .notification-popup {
    width: 300px;
    left: 10px;
    bottom: 10px;
  }
  
  .popup-body {
    padding: 0 15px 10px;
  }
  
  .popup-footer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .notification-popup {
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
  }
}
/* Dodaj na początku stylów dla popupu */
.notification-popup {
  /* ... pozostałe style ... */
  display: none; /* Dodaj tę linię */
}

.notification-popup.show {
  display: block; /* Dodaj tę linię */
  transform: translateX(0);
  opacity: 1;
}








/* Materials & Technology Section */
.materials-tech {
  position: relative;
  overflow: hidden;
}

.materials-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/abstract-bg-2.webp') center/cover;
  opacity: 0.02;
  z-index: 1;
}

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

/* Material Cards Grid - użyj Bootstrap gap zamiast custom */
.materials-grid {
  margin-bottom: 60px;
}

.material-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px 25px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 0;
}

.material-card::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), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.material-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--contrast-color);
  font-size: 28px;
  transition: all 0.3s ease;
}

.material-card:hover .material-icon {
  transform: scale(1.08) rotate(3deg);
}

.material-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
}

.material-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.material-badge.premium {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
}

.material-badge.popular {
  background: linear-gradient(135deg, #5170ff, #5170ff);
  color: var(--contrast-color);
}

.material-badge.standard {
  background: linear-gradient(135deg, #6c757d, #adb5bd);
  color: var(--contrast-color);
}

.material-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin-bottom: 18px;
  font-size: 14px;
  min-height: 65px;
}

.material-specs {
  margin-bottom: 18px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}

.spec-item i {
  color: var(--accent-color);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
}

.material-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.material-card:hover .brand-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.material-brand span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  line-height: 1.3;
}

/* Quality Guarantee Section */
.quality-guarantee {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 20px;
  padding: 40px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.quality-guarantee::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

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

.quality-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
}

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

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.quality-item i {
  width: 38px;
  height: 38px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.quality-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
  font-size: 14px;
}

.certificate-badge {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.certificate-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--contrast-color);
  font-size: 32px;
}

.certificate-badge h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.certificate-badge p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Responsywność */
@media (max-width: 1200px) {
  .material-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .material-card {
    padding: 20px 15px;
  }
  
  .quality-guarantee {
    padding: 30px 25px;
  }
  
  .quality-content h3 {
    font-size: 22px;
  }
  
  .certificate-badge {
    padding: 20px 15px;
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .material-card {
    padding: 18px 12px;
  }
  
  .material-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .material-card h3 {
    font-size: 18px;
  }
  
  .quality-guarantee {
    padding: 25px 20px;
  }
}


/* Coverage Area Section */
.coverage-area {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  position: relative;
}

/* Map Container */
.map-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.map-wrapper {
  position: relative;
  border-radius: 15px;
  height: 500px;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Overlay text na mapie */
.map-overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 10;
  max-width: 300px;
}

.map-overlay-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.map-overlay-text p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.4;
}

/* Map Legend */
.map-legend {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.legend-item i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Coverage Content */
.coverage-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

.coverage-content h3 strong {
  color: var(--accent-color);
}

.coverage-content .lead {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

/* Cities List */
.cities-list {
  margin-bottom: 0;
}

.cities-list h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.city-group h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding-bottom: 6px;
}

.city-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-group li {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 6px;
  padding-left: 5px;
  position: relative;
}

.city-group li strong {
  color: var(--heading-color);
}

/* Coverage Features */
.coverage-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.feature-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.feature-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Coverage Note */
.coverage-note {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%));
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 20px;
}

.note-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

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

.note-content strong {
  color: var(--accent-color);
}

/* SEO Keywords */
.seo-keywords {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 35px 30px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.seo-keywords h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.keywords-subtitle {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.keyword-badge {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.keyword-badge:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Responsywność */
@media (max-width: 1200px) {
  .map-wrapper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .map-wrapper {
    height: 400px;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .coverage-content h3 {
    font-size: 24px;
  }
  
  .cities-list {
    margin-top: 30px;
  }

  .map-overlay-text {
    max-width: 250px;
  }

  .map-overlay-text h3 {
    font-size: 14px;
  }

  .map-overlay-text p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .map-container {
    padding: 20px;
  }
  
  .map-wrapper {
    height: 350px;
  }

  .map-overlay-text {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .map-legend {
    gap: 15px;
  }

  .legend-item {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .seo-keywords {
    padding: 25px 20px;
  }
  
  .keywords-list {
    gap: 8px;
  }
  
  .keyword-badge {
    font-size: 12px;
    padding: 7px 14px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
  }
  
  .coverage-content h3 {
    font-size: 22px;
  }
  
  .cities-list h4 {
    font-size: 18px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 20px;
  }

  .coverage-note {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .note-icon {
    align-self: center;
  }
  
  .seo-keywords {
    padding: 20px 15px;
  }
  
  .keyword-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}


/* Process Steps Section */
.process-steps {
  position: relative;
  overflow: hidden;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/pattern-construction.webp') center/cover;
  opacity: 0.02;
  z-index: 1;
}

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

/* Process Rows */
.process-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 0 20px;
}

.first-row {
  margin-bottom: 80px;
}

.second-row {
  justify-content: center;
  gap: 60px;
}

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

/* Process Lines */
.process-line {
  position: absolute;
  top: 60px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 2px;
  z-index: 1;
}

.second-row .process-line {
  left: 15%;
  right: 15%;
}

.third-row .process-line {
  left: 35%;
  right: 35%;
}

.line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 2px;
  transition: width 2s ease-in-out;
  animation: lineFill 3s ease-in-out forwards;
}

@keyframes lineFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Process Steps */
.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 15px;
  transition: all 0.3s ease;
  max-width: 280px;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--contrast-color);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
  border: 4px solid var(--surface-color);
  position: relative;
  z-index: 3;
}

.step-content {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.process-step:hover .step-content {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--accent-color);
  font-size: 36px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  transform: scale(1.15) rotate(5deg);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  line-height: 1.3;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-description p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  display: inline-block;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.step-arrow {
  position: absolute;
  top: 30px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 4;
  transition: all 0.3s ease;
}

.process-step:hover .step-arrow {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.2);
}

/* Ukryj strzałkę dla ostatniego kroku w każdym rzędzie */
.process-step:last-child .step-arrow {
  display: none !important;
}

/* USUNIĘTE: Specjalna strzałka dla 4 kroku (przejście do drugiego rzędu) */
/* .process-step:nth-child(4) .step-arrow i {
  transform: rotate(45deg);
} */

/* Dla trzeciego rzędu - ukryj strzałkę przy 8 kroku */
.third-row .process-step:nth-child(1) .step-arrow {
  display: none;
}

/* Connector between rows */
.row-connector {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -20px;
  z-index: 5;
}

.connector-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  margin: 0 auto 10px;
  border-radius: 1px;
}

.connector-arrow {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 auto;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Process Info Cards */
.process-info {
  margin-top: 60px;
}

.info-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  transform: scale(1.15);
}

.info-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
}

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

.info-card strong {
  color: var(--accent-color);
}

/* Animacje dla kroków */
.process-step {
  opacity: 0;
  transform: translateY(30px);
  animation: stepAppear 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }
.process-step:nth-child(5) { animation-delay: 0.9s; }
.process-step:nth-child(6) { animation-delay: 1.1s; }
.process-step:nth-child(7) { animation-delay: 1.3s; }
.process-step:nth-child(8) { animation-delay: 1.5s; }

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

/* Responsywność */
@media (max-width: 1200px) {
  .process-row {
    padding: 0 10px;
  }
  
  .step-content {
    padding: 30px 20px;
  }
  
  .step-content h3 {
    font-size: 18px;
    min-height: 54px;
  }
  
  .second-row .process-line {
    left: 10%;
    right: 10%;
  }
  
  .third-row .process-line {
    left: 30%;
    right: 30%;
  }
}

@media (max-width: 992px) {
  .process-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .first-row {
    margin-bottom: 30px;
  }
  
  .process-line {
    display: none;
  }
  
  .step-arrow {
    display: none !important;
  }
  
  .row-connector {
    display: none;
  }
  
  .process-step {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .second-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .process-step {
    padding: 0 10px;
  }
  
  .step-content {
    padding: 25px 20px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .step-content h3 {
    font-size: 18px;
    min-height: auto;
  }
  
  .info-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .process-row {
    padding: 0 5px;
  }
  
  .step-content {
    padding: 20px 15px;
  }
  
  .step-content h3 {
    font-size: 17px;
  }
  
  .step-description p {
    font-size: 13px;
  }
  
  .feature-tag {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .info-card h4 {
    font-size: 18px;
  }
  
  .info-card p {
    font-size: 14px;
  }
}

/* Quick Navigation Section 2 */
.quick-navigation-2 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

.nav-card-2 {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.nav-card-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.nav-icon-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.nav-card-2:hover .nav-icon-2 {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  transform: scale(1.1);
}

.nav-card-2 h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.nav-card-2 p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 36px;
}

.nav-link-2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.nav-link-2:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(3px);
}

.nav-link-2 i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-link-2:hover i {
  transform: translateX(3px);
}

/* Responsywność */
@media (max-width: 768px) {
  .nav-card-2 {
    padding: 20px 15px;
  }
  
  .nav-icon-2 {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .nav-card-2 h4 {
    font-size: 15px;
  }
  
  .nav-card-2 p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .quick-navigation-2 .row {
    margin: 0 -5px;
  }
  
  .nav-card-2 {
    padding: 18px 12px;
    margin: 0 5px;
  }
}

/* === GARAŻE - DOSTOSOWANE DO TWOJEJ KOLORYSTYKI === */
.garage-hero-section {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.garage-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/patterns/dots.png') repeat;
  opacity: 0.1;
}

.garage-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.garage-hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.garage-hero-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.garage-hero-breadcrumb span {
  color: var(--contrast-color);
  font-weight: 600;
}

.garage-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.garage-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--contrast-color);
}

.garage-hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.garage-badge {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--contrast-color);
  font-family: var(--nav-font);
}

/* Main Section */
.garage-main-section {
  padding: 80px 0;
  background: var(--background-color);
}
/* Paleta Kolorów Mozaikowych */
.garage-main-section .paleta-kolorow {
    margin: 60px 0;
    padding: 40px 0;
    background: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.garage-main-section .paleta-kolorow h2 {
    color: var(--heading-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 700;
}

.garage-main-section .paleta-kolorow .section-lead {
    text-align: center;
    color: var(--default-color);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid z kolorami */
.garage-main-section .color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.garage-main-section .color-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.garage-main-section .color-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.garage-main-section .color-sample {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 3px solid var(--surface-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.garage-main-section .color-card:hover .color-sample {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.garage-main-section .color-info h5 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.garage-main-section .color-info span {
    color: var(--default-color);
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: var(--default-font);
}

/* Sekcja z pełną paletą zdjęciową */
.garage-main-section .full-palette-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.garage-main-section .full-palette-section h3 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 600;
}

.garage-main-section .palette-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.garage-main-section .palette-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.garage-main-section .palette-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.garage-main-section .palette-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.garage-main-section .palette-wrap:hover img {
    transform: scale(1.02);
}

.garage-main-section .palette-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 25px;
    color: var(--contrast-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.garage-main-section .palette-wrap:hover .palette-info {
    opacity: 1;
    transform: translateY(0);
}

.garage-main-section .palette-links {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.garage-main-section .palette-wrap:hover .palette-links {
    opacity: 1;
    transform: translateY(0);
}

.garage-main-section .palette-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.garage-main-section .palette-links a:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Call to Action dla palety */
.garage-main-section .colors-cta {
    text-align: center;
    padding: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.garage-main-section .colors-cta p {
    color: var(--default-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--default-font);
}

.garage-main-section .colors-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.garage-main-section .colors-cta .btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 20%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* Mini paleta w sidebarze */
.garage-main-section .mini-color-palette {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.garage-main-section .mini-color {
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--surface-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.garage-main-section .mini-color:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Responsywność */
@media (max-width: 1200px) {
    .garage-main-section .color-palette-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .garage-main-section .paleta-kolorow {
        margin: 40px 0;
        padding: 30px 20px;
    }
    
    .garage-main-section .paleta-kolorow h2 {
        font-size: 1.8rem;
    }
    
    .garage-main-section .color-palette-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .garage-main-section .color-sample {
        height: 100px;
    }
    
    .garage-main-section .colors-cta {
        padding: 25px 20px;
    }
    
    .garage-main-section .mini-color-palette {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .garage-main-section .color-palette-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .garage-main-section .color-card {
        padding: 15px;
    }
    
    .garage-main-section .color-sample {
        height: 80px;
    }
    
    .garage-main-section .mini-color-palette {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Sekcja Palety Kolorów Tynków Dekoracyjnych */
.paleta-tynkow-dekoracyjnych {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.paleta-tynkow-dekoracyjnych::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/patterns/color-pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.paleta-tynkow-dekoracyjnych .container {
    position: relative;
    z-index: 2;
}

.paleta-tynkow-dekoracyjnych .paleta-header {
    text-align: center;
    margin-bottom: 50px;
}

.paleta-tynkow-dekoracyjnych .paleta-header h2 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-weight: 700;
}

.paleta-tynkow-dekoracyjnych .paleta-subtitle {
    color: var(--default-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Grid z kolorami - rozbudowana wersja */
.paleta-tynkow-dekoracyjnych .color-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.paleta-tynkow-dekoracyjnych .color-card-advanced {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.paleta-tynkow-dekoracyjnych .color-card-advanced::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), transparent 50%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.paleta-tynkow-dekoracyjnych .color-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.paleta-tynkow-dekoracyjnych .color-card-advanced:hover::before {
    transform: scaleX(1);
}

.paleta-tynkow-dekoracyjnych .color-sample-advanced {
    width: 100%;
    height: 140px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 4px solid var(--surface-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.paleta-tynkow-dekoracyjnych .color-card-advanced:hover .color-sample-advanced {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.paleta-tynkow-dekoracyjnych .color-sample-advanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.paleta-tynkow-dekoracyjnych .color-card-advanced:hover .color-sample-advanced::after {
    opacity: 1;
}

.paleta-tynkow-dekoracyjnych .color-info-advanced h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    font-weight: 700;
}

.paleta-tynkow-dekoracyjnych .color-info-advanced .color-code {
    color: var(--default-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
    font-family: var(--default-font);
}

.paleta-tynkow-dekoracyjnych .color-info-advanced .color-type {
    display: inline-block;
    padding: 6px 15px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--nav-font);
}

/* Sekcja z przykładowymi realizacjami */
.paleta-tynkow-dekoracyjnych .realizacje-section {
    margin: 60px 0 40px;
    padding-top: 40px;
    border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.paleta-tynkow-dekoracyjnych .realizacje-section h3 {
    color: var(--heading-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 600;
}

.paleta-tynkow-dekoracyjnych .realizacje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.paleta-tynkow-dekoracyjnych .realizacja-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.paleta-tynkow-dekoracyjnych .realizacja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.paleta-tynkow-dekoracyjnych .realizacja-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.paleta-tynkow-dekoracyjnych .realizacja-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.paleta-tynkow-dekoracyjnych .realizacja-card:hover .realizacja-image img {
    transform: scale(1.1);
}

.paleta-tynkow-dekoracyjnych .realizacja-info {
    padding: 25px;
}

.paleta-tynkow-dekoracyjnych .realizacja-info h5 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.paleta-tynkow-dekoracyjnych .realizacja-info p {
    color: var(--default-color);
    margin-bottom: 15px;
    line-height: 1.5;
    font-family: var(--default-font);
}

.paleta-tynkow-dekoracyjnych .realizacja-color {
    display: flex;
    align-items: center;
    gap: 10px;
}

.paleta-tynkow-dekoracyjnych .color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.paleta-tynkow-dekoracyjnych .color-name {
    font-size: 0.9rem;
    color: var(--default-color);
    font-weight: 500;
    font-family: var(--nav-font);
}

/* Rozbudowany CTA */
.paleta-tynkow-dekoracyjnych .paleta-cta-advanced {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
}

.paleta-tynkow-dekoracyjnych .paleta-cta-advanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.paleta-tynkow-dekoracyjnych .cta-content {
    position: relative;
    z-index: 2;
}

.paleta-tynkow-dekoracyjnych .cta-content h3 {
    color: var(--contrast-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-weight: 700;
}

.paleta-tynkow-dekoracyjnych .cta-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: var(--default-font);
}

.paleta-tynkow-dekoracyjnych .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.paleta-tynkow-dekoracyjnych .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--contrast-color);
    color: var(--heading-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.paleta-tynkow-dekoracyjnych .cta-btn-primary:hover {
    background: color-mix(in srgb, var(--contrast-color), black 10%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--heading-color);
}

.paleta-tynkow-dekoracyjnych .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--contrast-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--contrast-color);
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.paleta-tynkow-dekoracyjnych .cta-btn-secondary:hover {
    background: var(--contrast-color);
    color: var(--heading-color);
    transform: translateY(-3px);
}

/* Responsywność */
@media (max-width: 1200px) {
    .paleta-tynkow-dekoracyjnych .color-grid-advanced {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .paleta-tynkow-dekoracyjnych {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .paleta-tynkow-dekoracyjnych .paleta-header h2 {
        font-size: 2rem;
    }
    
    .paleta-tynkow-dekoracyjnych .color-grid-advanced {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 20px;
    }
    
    .paleta-tynkow-dekoracyjnych .color-card-advanced {
        padding: 20px;
    }
    
    .paleta-tynkow-dekoracyjnych .color-sample-advanced {
        height: 120px;
    }
    
    .paleta-tynkow-dekoracyjnych .realizacje-grid {
        grid-template-columns: 1fr;
    }
    
    .paleta-tynkow-dekoracyjnych .paleta-cta-advanced {
        padding: 40px 30px;
    }
    
    .paleta-tynkow-dekoracyjnych .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .paleta-tynkow-dekoracyjnych .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .paleta-tynkow-dekoracyjnych .cta-btn-primary,
    .paleta-tynkow-dekoracyjnych .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .paleta-tynkow-dekoracyjnych .color-grid-advanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paleta-tynkow-dekoracyjnych .color-card-advanced {
        padding: 15px;
    }
    
    .paleta-tynkow-dekoracyjnych .color-sample-advanced {
        height: 100px;
    }
    
    .paleta-tynkow-dekoracyjnych .paleta-cta-advanced {
        padding: 30px 20px;
    }
    
    .paleta-tynkow-dekoracyjnych .cta-content h3 {
        font-size: 1.6rem;
    }
}

/* Gallery */
.garage-gallery-section {
  margin-bottom: 60px;
}
.garage-gallery-grid {
  display: grid;
  grid-template-columns: 1fr; /* Zmiana z 1fr 1fr na 1fr */
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(10, 50, 35, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 400px; /* Możesz zwiększyć wysokość dla lepszego efektu */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03); /* Mniejszy efekt hover dla większego zdjęcia */
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 50, 35, 0.9));
  color: var(--contrast-color);
  padding: 20px 25px;
  font-weight: 600;
  font-family: var(--nav-font);
  font-size: 1.1rem;
  text-align: center;
}
/* Description */
.garage-description-section {
  margin-bottom: 60px;
}

.garage-description-section h2 {
  color: var(--heading-color);
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.garage-lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 40px;
  font-family: var(--default-font);
}

.garage-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 50, 35, 0.1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(10, 50, 35, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.benefit-card h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  font-weight: 600;
}

.benefit-card p {
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: var(--default-font);
}

/* Process - NOWA LEPsZA WERSJA */
.garage-process-section {
  margin-bottom: 60px;
}

.garage-process-section h2 {
  color: var(--heading-color);
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 700;
}

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.process-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
  position: relative;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 50, 35, 0.12);
}

.process-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
  font-family: var(--heading-font);
}

.process-step-title {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
}

.process-card-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  font-family: var(--default-font);
}
/* Materials Section - 4 kafelki w 2 rzędach */
.garage-materials-section .container {
  max-width: 1200px;
}

.garage-materials-section .row {
  margin: 0 -15px;
}

.garage-materials-section .col-lg-6 {
  padding: 0 15px;
}

.material-card {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 50, 35, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.material-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(10, 50, 35, 0.15);
}

.material-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.material-card h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

.material-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-family: var(--default-font);
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .garage-materials-section .col-lg-6 {
    margin-bottom: 20px;
  }
  
  .material-card {
    padding: 25px 20px;
  }
  
  .material-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .material-card h4 {
    font-size: 1.2rem;
  }
}

/* Styl dla ikon PNG w menu */
.nav-icon-png {
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  padding: 5px;
  flex-shrink: 0;
}

.nav-icon-png img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Zmienia ikonę na białą */
  object-fit: contain;
}

.nav-icon-png .bi {
  font-size: 1.1rem;
  color: var(--contrast-color);
}

/* Hover effect dla ikon PNG */
.service-nav-item:hover .nav-icon-png {
  background: var(--contrast-color);
  transform: scale(1.1);
}

.service-nav-item:hover .nav-icon-png img {
  filter: brightness(0) invert(0); /* Ikona staje się ciemna na hover */
}

.service-nav-item:hover .nav-icon-png .bi {
  color: var(--accent-color);
}

/* Active state */
.service-nav-item.active .nav-icon-png {
  background: var(--contrast-color);
}

.service-nav-item.active .nav-icon-png img {
  filter: brightness(0) invert(0);
}

.service-nav-item.active .nav-icon-png .bi {
  color: var(--accent-color);
}
/* Sidebar */
.modern-service-sidebar {
  position: sticky;
  top: 100px;
}

.service-navigation-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  margin-bottom: 25px;
  border: 1px solid rgba(10, 50, 35, 0.1);
}

.nav-card-title {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
}

.service-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-nav-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: var(--background-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-family: var(--nav-font);
}

.service-nav-item:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(3px);
}

.service-nav-item.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-left-color: var(--heading-color);
}

.nav-icon {
  font-size: 1.1rem;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.nav-text {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--contrast-color);
}

.service-nav-item:hover .nav-arrow {
  opacity: 1;
}

/* Contact Widget */
.contact-widget-card {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(10, 50, 35, 0.2);
}

.contact-header h3 {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-family: var(--heading-font);
}

.contact-header p {
  opacity: 0.9;
  margin-bottom: 20px;
  font-family: var(--default-font);
}

.contact-features {
  margin-bottom: 20px;
}

.contact-feature {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
  font-family: var(--nav-font);
}

.feature-icon {
  font-size: 1.1rem;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

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

.feature-text strong {
  font-size: 0.85rem;
  opacity: 0.8;
}

.feature-text span {
  font-weight: 600;
  font-size: 1rem;
}

.contact-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--nav-font);
}

.contact-cta-button:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Quick Quote */
.quick-quote-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  text-align: center;
  border: 2px solid var(--accent-color);
}

.quote-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.quick-quote-card h4 {
  color: var(--heading-color);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  font-weight: 600;
}

.quick-quote-card p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: var(--default-font);
  font-size: 0.95rem;
}

.quote-features {
  margin-bottom: 20px;
}

.quote-feature {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-family: var(--nav-font);
}

.quote-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-family: var(--nav-font);
}

.quote-button:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
}

/* Stats */
.stats-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  text-align: center;
  border: 1px solid rgba(10, 50, 35, 0.1);
}

.stats-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  font-weight: 600;
}

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

.stat-item {
  padding: 15px;
  background: var(--background-color);
  border-radius: 8px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.stat-label {
  color: var(--default-color);
  font-size: 0.85rem;
  font-family: var(--nav-font);
}

/* CTA Section */
.garage-cta-section {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--default-font);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--nav-font);
}

.cta-btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--contrast-color);
  transition: all 0.3s ease;
  font-family: var(--nav-font);
}

.cta-btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(10, 50, 35, 0.08);
  border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
  color: var(--heading-color);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-family: var(--heading-font);
  font-weight: 600;
}

.faq-item p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
  font-family: var(--default-font);
}

/* Promo Card */
.promo-card {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: var(--contrast-color);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
}

.promo-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.promo-card h4 {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.promo-card p {
  margin-bottom: 15px;
  opacity: 0.9;
  font-family: var(--default-font);
}

/* Responsive */
@media (max-width: 768px) {
  .garage-main-title {
    font-size: 2.2rem;
  }
  
  .garage-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .garage-hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .garage-badge {
    width: fit-content;
  }
}
/* Benefit Icons */
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

/* Material Icons */
.material-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* Process Icons */
.process-card-icon {
  font-size: 1.8rem;
  margin-right: 15px;
  color: var(--accent-color);
}

/* Contact Icons */
.contact-feature .bi {
  font-size: 1.2rem;
  margin-right: 12px;
  color: var(--accent-color);
}

/* Quote Icon */
.quote-icon .bi {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}










/* Calculator Section Styles */
.calculator-section {
  padding: 80px 0;
}

.calculator-section .calculator-card, 
.calculator-section .results-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.calculator-section .calculator-card h2 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.calculator-section .calculator-subtitle {
  color: var(--default-color);
  margin-bottom: 30px;
  opacity: 0.8;
}

.calculator-section .disclaimer-banner {
  background: color-mix(in srgb, #ffc107, transparent 90%);
  border: 1px solid color-mix(in srgb, #ffc107, transparent 50%);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #856404;
}

.calculator-section .disclaimer-banner i {
  color: #856404;
  flex-shrink: 0;
}

.calculator-section .form-group {
  margin-bottom: 25px;
}

.calculator-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.calculator-section .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.calculator-section .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.calculator-section .range-container {
  margin-top: 10px;
}

.calculator-section .form-range {
  width: 100%;
  margin: 10px 0;
}

.calculator-section .range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
}

.calculator-section .calculator-btn {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--heading-font);
}

.calculator-section .calculator-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

/* Results Styles */
.calculator-section .results-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.calculator-section .results-header h2 {
  color: var(--heading-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.calculator-section .results-header p {
  color: var(--default-color);
  opacity: 0.8;
}

.calculator-section .results-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: var(--default-color);
  opacity: 0.7;
}

.calculator-section .results-placeholder i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.calculator-section .result-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  background: var(--background-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.calculator-section .result-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;
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.calculator-section .result-text h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.calculator-section .result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.calculator-section .result-value.savings {
  color: #5170ff;
}

.calculator-section .result-note {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.calculator-section .chart-container {
  margin: 30px 0;
  padding: 20px;
  background: var(--background-color);
  border-radius: 10px;
  position: relative;
  height: 300px; /* Dodaj stałą wysokość */
}

.calculator-section .chart-container h4 {
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.calculator-section .chart {
  width: 100%;
  height: 100%;
  margin-top: 40px; /* Miejsce na tytuł */
}

.calculator-section .calculation-note {
  display: flex;
  align-items: flex-start;
  background: color-mix(in srgb, #ffc107, transparent 90%);
  border: 1px solid color-mix(in srgb, #ffc107, transparent 50%);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
}

.calculator-section .note-icon {
  color: #856404;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.calculator-section .note-content h5 {
  color: #856404;
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-family: var(--heading-font);
}

.calculator-section .note-content p {
  color: #856404;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.calculator-section .benefits-list {
  margin: 25px 0;
}

.calculator-section .benefits-list h4 {
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.calculator-section .benefits-list ul {
  list-style: none;
  padding: 0;
}

.calculator-section .benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--default-color);
}

.calculator-section .benefits-list i {
  color: #5170ff;
  margin-right: 10px;
}

.calculator-section .results-cta {
  text-align: center;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  margin-top: 25px;
}

.calculator-section .cta-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 5px 0 15px 0;
}

.calculator-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.calculator-section .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.calculator-section .calculator-faq {
  background: var(--light-background);
}

.calculator-section .calculator-faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.calculator-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.calculator-section .faq-item {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.calculator-section .faq-item h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.calculator-section .faq-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
  .calculator-section .calculator-card, 
  .calculator-section .results-card {
    padding: 20px;
  }
  
  .calculator-section .result-item {
    flex-direction: column;
    text-align: center;
  }
  
  .calculator-section .result-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .calculator-section .calculation-note {
    flex-direction: column;
    text-align: center;
  }
  
  .calculator-section .note-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}





/* Sekcja SEO Lokalne */
.footer-seo-section {
  border-top: 2px solid #34495e;
  border-bottom: 2px solid #34495e;
  padding: 30px 0;
  margin: 20px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.seo-local-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-main-title {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.seo-districts-row {
  margin-bottom: 20px;
}

.district-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.district-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.08);
}

.district-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.district-pin {
  font-size: 1.2rem;
  margin-right: 10px;
}

.district-header h5 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

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

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

.district-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.district-links a:hover {
  color: #fff;
  border-left-color: #3498db;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 12px;
}

.seo-cta {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 20px;
}

.seo-cta p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.seo-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5170ff;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.seo-call-btn:hover {
  background: #c0392b;
  transform: scale(1.05);
  color: white;
}

/* Responsywność */
@media (max-width: 768px) {
  .seo-district {
    margin-bottom: 20px;
  }
  
  .district-card {
    padding: 15px;
  }
  
  .seo-main-title {
    font-size: 1.2rem;
  }
}





.calculator-cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
}

.calculator-cta-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calculator-cta-card h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.calculator-cta-card p {
    color: var(--default-color);
    opacity: 0.8;
}

.calculator-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.calculator-cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 20%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .calculator-cta-card {
        text-align: center;
        padding: 25px 20px;
    }
    
    .calculator-cta-btn {
        margin-top: 15px;
    }
}







/* Hero Section - Poprawiony z kolorem #5170ff i naprawionym marginesem */
.colors-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  color: white;
  margin-top: 0 !important; /* USUŃ MARGINES */
  position: relative;
  overflow: hidden;
}

/* Jeśli navbar ma fixed-top, dodaj padding dla body */
body {
  padding-top: 80px; /* Wysokość twojego navbaru */
}

/* Albo jeśli chcesz to naprawić bez zmiany body */
.colors-hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 !important;
}

/* Sprawdź czy header ma fixed-top */
.header.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Jeśli header jest fixed, hero musi mieć margin-top: 0 */
.colors-hero-section {
  margin-top: 0;
  padding-top: 140px; /* Zwiększ padding zamiast margin */
}

.colors-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/img/color-pattern.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
}

.colors-breadcrumb {
  margin-bottom: 30px;
}

.colors-breadcrumb .breadcrumb {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 12px 20px;
  margin: 0;
}

.colors-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
}

.colors-breadcrumb .breadcrumb-item.active {
  color: white;
  font-weight: 600;
}

.colors-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

.colors-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.colors-hero-text {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
}

.colors-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.color-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.2);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 500;
  transition: all 0.3s ease;
}

.color-feature-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.color-feature-item i {
  font-size: 1.3rem;
  color: #FFD700;
}

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

.btn-scroll {
  background: rgba(255,255,255,0.25);
  border: 2px solid white;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-scroll:hover {
  background: white;
  color: #5170ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: white;
  color: #5170ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.colors-hero-visual {
  position: relative;
  text-align: center;
}

.hero-main-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border: 3px solid white;
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.02);
}

.color-swatches-floating {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(81, 112, 255, 0.3);
  border: 2px solid #e6ecff;
}

.color-swatch-large {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(81, 112, 255, 0.2);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5px;
  transition: transform 0.3s ease;
}

.color-swatch-large:hover {
  transform: scale(1.1);
}

.color-swatch-large span {
  background: rgba(81, 112, 255, 0.9);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* RESPONSYWNOŚĆ I NAPRAWA MARGINESÓW */
@media (max-width: 768px) {
  .colors-hero-section {
    padding: 100px 0 60px; /* Zmniejsz padding na mobile */
    margin-top: 0 !important;
  }
  
  .colors-main-title {
    font-size: 2.5rem;
  }
  
  .colors-hero-text {
    font-size: 1.1rem;
  }
  
  .colors-hero-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .colors-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .color-swatches-floating {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .colors-hero-section {
    padding: 80px 0 40px; /* Jeszcze mniejszy padding na małych ekranach */
  }
  
  .colors-main-title {
    font-size: 2rem;
  }
  
  .colors-hero-text {
    font-size: 1rem;
  }
  
  .btn-scroll,
  .btn-outline {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .color-swatch-large {
    width: 50px;
    height: 50px;
  }
}

/* DODATKOWE NAPRAWY DLA NAVBARU */
/* Jeśli navbar jest fixed, dodaj to: */
body {
  scroll-padding-top: 80px; /* Zapobiega przeskakiwaniu przy anchor links */
}

/* Resetuj wszelkie możliwe marginesy */
.colors-hero-section {
  margin: 0 !important;
  padding-top: 140px !important;
}

/* Jeśli problem nadal występuje, sprawdź te elementy: */
* {
  box-sizing: border-box;
}

/* Reset domyślnych marginesów przeglądarki */
body, html {
  margin: 0;
  padding: 0;
}


/* Sekcja Zalety Ceresit */
.ceresit-advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #edf1ff 100%);
}

.ceresit-advantages-section .section-title {
  margin-bottom: 60px;
}

.ceresit-advantages-section .section-title h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.ceresit-advantages-section .section-title p {
  color: #6c757d;
  font-size: 1.2rem;
  margin: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(81, 112, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e6ecff;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(81, 112, 255, 0.2);
  border-color: #5170ff;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.advantage-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.ceresit-certificate {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(81, 112, 255, 0.1);
  border: 2px solid #e6ecff;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ceresit-certificate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
}

.certificate-content {
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
}

.certificate-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.certificate-text h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.certificate-text p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Responsywność */
@media (max-width: 768px) {
  .ceresit-advantages-section {
    padding: 60px 0;
  }
  
  .ceresit-advantages-section .section-title h2 {
    font-size: 2rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
  
  .certificate-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .certificate-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 25px 15px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .advantage-card h3 {
    font-size: 1.2rem;
  }
}
/* Responsywność */
@media (max-width: 768px) {
  .ceresit-advantages-section {
    padding: 60px 0;
  }
  
  .ceresit-advantages-section .section-title h2 {
    font-size: 2rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
  
  .certificate-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .certificate-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card {
    padding: 25px 15px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .advantage-card h3 {
    font-size: 1.2rem;
  }
}



/* Sekcja Palety Kolorów */
.color-palette-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.color-palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.color-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.color-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.color-swatch {
  height: 120px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 15px;
}

.color-name {
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-info {
  padding: 20px;
}

.color-info h5 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.color-code {
  color: #6c757d;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.color-hex {
  color: #667eea;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Courier New', monospace;
}
.full-palette-cta {
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 15px 40px rgba(81, 112, 255, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.full-palette-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.full-palette-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.full-palette-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* GŁÓWNY przycisk - bardziej widoczny */
.btn-primary-cta {
  padding: 18px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFC400 100%);
  border: 2px solid #FFD700;
  color: #2c3e50;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #FFC400 0%, #FFB300 100%);
  border-color: #FFC400;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

/* DRUGI przycisk - outline z białym tłem */
.btn-secondary-cta {
  padding: 18px 40px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid white;
  color: #5170ff;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
  background: white;
  border-color: white;
  color: #3a56e8;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Sekcja Porady */
.color-advice-section {
  padding: 100px 0;
  background: #f8faff;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.advice-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(81, 112, 255, 0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e6ecff;
}

.advice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(81, 112, 255, 0.15);
  border-color: #5170ff;
}

.advice-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(81, 112, 255, 0.4);
}

.advice-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.advice-card:hover .advice-icon {
  transform: scale(1.1) rotate(5deg);
}

.advice-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.3rem;
}

.advice-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.consultation-banner {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(81, 112, 255, 0.1);
  border-left: 5px solid #5170ff;
  border: 1px solid #e6ecff;
}

.consultation-banner h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.consultation-banner .btn-primary {
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.consultation-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(81, 112, 255, 0.3);
  background: linear-gradient(135deg, #3a56e8 0%, #2a46d8 100%);
}

/* Responsywność dla przycisków */
@media (max-width: 768px) {
  .full-palette-cta {
    padding: 40px 25px;
  }
  
  .full-palette-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 16px 35px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .full-palette-cta {
    padding: 30px 20px;
  }
  
  .full-palette-cta h3 {
    font-size: 1.5rem;
  }
  
  .full-palette-cta p {
    font-size: 1rem;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}
/* Sekcja Realizacje */
.color-projects-section {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(81, 112, 255, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e6ecff;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(81, 112, 255, 0.15);
  border-color: #5170ff;
}

.project-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.project-info {
  padding: 25px;
}

.project-info h5 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-info p {
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.5;
}

.project-color {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 2px solid #e6ecff;
  box-shadow: 0 2px 8px rgba(81, 112, 255, 0.1);
}

/* Certyfikat Ceresit */
.ceresit-certificate {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(81, 112, 255, 0.08);
  margin-top: 50px;
  text-align: center;
  border: 1px solid #e6ecff;
  position: relative;
  overflow: hidden;
}

.ceresit-certificate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #5170ff 0%, #3a56e8 100%);
}

.certificate-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ceresit-logo {
  height: 80px;
}

.certificate-text h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.certificate-text p {
  color: #6c757d;
  margin: 0;
  max-width: 500px;
}

/* Przyciski outline */
.btn-outline {
  background: transparent;
  border: 2px solid #5170ff;
  color: #5170ff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: #5170ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(81, 112, 255, 0.2);
}

/* Responsywność */
@media (max-width: 768px) {
  .full-palette-cta {
    padding: 40px 25px;
  }
  
  .full-palette-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .advice-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .advice-card {
    padding: 30px 20px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .consultation-banner .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }
  
  .certificate-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .full-palette-cta {
    padding: 30px 20px;
  }
  
  .full-palette-cta h3 {
    font-size: 1.5rem;
  }
  
  .full-palette-cta p {
    font-size: 1rem;
  }
  
  .advice-card {
    padding: 25px 15px;
  }
  
  .advice-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .project-info {
    padding: 20px;
  }
}










/* Sekcja technologii */
.technology-section {
  margin: 60px 0;
}

.tech-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-3px);
}

.tech-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-card h4 i {
  color: #667eea;
  font-size: 1.2rem;
}

.tech-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Galeria widget */
.gallery-widget-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-header h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-header p {
  color: #6c757d;
  margin: 0;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  border-radius: 8px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

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

.gallery-item span {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}

.gallery-button {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-button:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  color: white;
  transform: translateY(-2px);
}

/* Przyciski CTA */
.cta-btn-secondary {
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cta-btn-secondary:hover {
  background: white;
  color: #667eea;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}