
: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: "Mulish",  sans-serif;
  --nav-font: "Ubuntu",  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: #55514f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #211c18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1a61b8; /* 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: #55514f;  /* The default color of the main navmenu links */
  --nav-hover-color: #1a61b8; /* 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: #55514f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1a61b8; /* 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: #f3f3f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #322f2d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4a4643;
  --contrast-color: #ffffff;
}

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

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

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: #f3f3f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

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

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

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

  .header .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0.4);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #f3f3f3;
  --default-color: #444444;
  --heading-color: #282828;
  --nav-color: #5b5b5b;
}

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 17px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    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: -27px;
    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: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    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: 14px;
    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: 0;
    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: 12px 24px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--nav-dropdown-hover-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;
  }
}

/*--------------------------------------------------------------
# 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: 0;
  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 {
  text-align: center;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# 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: 57px;
  }
}

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

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.section-title p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

.hero .swiper-wrapper {
  height: auto !important;
}

.hero .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 600px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

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

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

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

  .hero .content-inner p {
    font-size: 16px;
  }

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero .content-inner {
    max-width: 100%;
  }

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    min-height: 460px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# POPRAWKI DLA SLAJDÓW - TŁO POD TEKST
--------------------------------------------------------------*/

/* Tło pod całą zawartość slidera */
.hero .content-inner {
  max-width: 650px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 40px 48px;
  border-radius: 24px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.4s ease;
}

/* Responsywność */
@media (max-width: 992px) {
  .hero .content-inner {
    padding: 30px 32px;
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  .hero .content-inner {
    padding: 24px 28px;
    max-width: 100%;
    backdrop-filter: blur(6px);
  }
}

@media (max-width: 576px) {
  .hero .content-inner {
    padding: 20px 24px;
  }
}

/* Style dla elementów wewnątrz slidera */
.hero .slide-features span,
.hero .slide-details span,
.hero .slide-contact div,
.hero .slide-hours,
.hero .slide-rating,
.hero .slide-price {
  color: #ffffff;
}

/* Kafelki udogodnień w slajdzie 1 */
.hero .slide-features span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

/* Grid z parametrami apartamentów */
.hero .slide-details {
  background: rgba(0, 0, 0, 0.35);
  padding: 16px 20px;
  border-radius: 16px;
  margin: 20px 0 !important;
}

.hero .slide-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero .slide-details span i {
  color: var(--accent-color);
  font-size: 16px;
  width: 24px;
}

/* Cena */
.hero .slide-price {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 40px;
}

/* Kontakt w slajdzie 4 */
.hero .slide-contact div {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero .slide-contact div:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.hero .slide-contact i {
  color: var(--accent-color);
}

/* Godziny kontaktu */
.hero .slide-hours {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 40px;
  display: inline-block;
  width: auto;
}

/* Ocena Booking */
.hero .slide-rating {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 14px;
}

/* Przycisk - trochę jaśniejszy na hover */
.hero .refined-btn {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Tag label i nagłówek - bez zmian bo są jasne */
.hero .tag-label {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .content-inner h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .content-inner p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}











/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .content-block {
  padding-right: 24px;
}

.about .content-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about .content-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
}

.about .stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about .stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.about .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .stat-divider {
  width: 1px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.about .cta-link:hover {
  gap: 14px;
  color: var(--accent-color);
}

.about .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about .cta-link:hover i {
  transform: translateX(4px);
}

.about .image-block {
  height: 100%;
}

.about .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about .features-block {
  padding-left: 16px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .feature-entry {
  margin-bottom: 40px;
}

.about .feature-entry i {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.about .feature-entry h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .feature-entry p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .minimal-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about .minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .minimal-list li:last-child {
  margin-bottom: 0;
}

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

  .about .features-block {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .about .image-block img {
    max-height: 420px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 64px 0;
  }

  .about .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

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

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

.services .intro-block {
  padding-bottom: 24px;
}

.services .intro-block .label-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.services .intro-block h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.services .intro-block p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .intro-block .btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
}

.services .intro-block .btn-outline-cta:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.services .item-card {
  padding: 48px 36px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.services .item-card .step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.services .item-card .icon-wrap {
  margin-bottom: 28px;
}

.services .item-card .icon-wrap i {
  font-size: 28px;
  color: var(--accent-color);
}

.services .item-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services .item-card h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services .item-card p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .item-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.3s;
}

.services .item-card .read-link:hover {
  gap: 10px;
}

.services .item-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.services .item-card:hover h4 a {
  color: var(--accent-color);
}

.services .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.services .slider-controls .divider-line {
  width: 48px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: transparent;
  color: var(--default-color);
  font-size: 18px;
  transition: border-color 0.3s, color 0.3s;
}

.services .slider-controls button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

.call-to-action .cta-header {
  margin-bottom: 64px;
}

.call-to-action .cta-header .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action .cta-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .call-to-action .cta-header h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .cta-header .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 560px;
  margin: 0 auto;
}

.call-to-action .highlights {
  margin-bottom: 64px;
}

.call-to-action .highlights .highlight-card {
  padding: 32px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  transition: border-color 0.3s ease;
}

.call-to-action .highlights .highlight-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .highlights .highlight-card i {
  display: block;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.call-to-action .highlights .highlight-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 576px) {
  .call-to-action .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .cta-actions .btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-actions .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-ghost:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.call-to-action .cta-actions .btn.btn-solid:hover {
  opacity: 0.85;
}

.call-to-action .social-proof .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.call-to-action .social-proof .stars i {
  font-size: 14px;
  color: var(--accent-color);
}

.call-to-action .social-proof span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.features .feature-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .feature-item:hover i {
  color: var(--accent-color);
}

.features .feature-item i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.features .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.features .feature-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.7;
  margin-bottom: 0;
}

.features .highlight-block {
  padding: 32px 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  max-width: 780px;
  transition: border-color 0.3s ease;
}

.features .highlight-block:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .features .highlight-block {
    text-align: center;
  }

  .features .highlight-block .row {
    flex-direction: column;
    gap: 1rem;
  }
}

.features .highlight-block i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.features .highlight-block h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.features .highlight-block p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.features .cta-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 80px 0;
}

.clients .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  margin: -0.5px;
  transition: border-color 0.3s;
}

.clients .logo-item img {
  max-width: 120px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.clients .logo-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

@media (max-width: 576px) {
  .clients .logo-item {
    padding: 32px 20px;
  }

  .clients .logo-item img {
    max-width: 90px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 64px;
  padding: 0;
  list-style: none;
}

.portfolio .filter-bar li {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
}

.portfolio .filter-bar li:hover {
  color: var(--default-color);
}

.portfolio .filter-bar li.filter-active {
  color: var(--default-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .work-entry {
  margin-bottom: 16px;
}

.portfolio .work-entry .work-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 2px;
}

.portfolio .work-entry .work-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-thumb:hover img {
  opacity: 0.85;
}

.portfolio .work-entry .work-thumb:hover .work-actions {
  opacity: 1;
}

.portfolio .work-entry .work-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.portfolio .work-entry .work-meta .work-category {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio .work-entry .work-meta .work-divider {
  width: 12px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .work-entry .work-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio .work-entry .work-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-title a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
  padding: 12px 0;
  border-bottom: 2px solid var(--default-color);
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.portfolio .view-all-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease;
}

.portfolio .view-all-link:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .plan-card {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

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

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

.pricing .popular-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.pricing .plan-header {
  margin-bottom: 40px;
}

.pricing .plan-header .plan-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.pricing .plan-header .plan-price {
  font-size: 56px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing .plan-header .plan-price .currency {
  font-size: 24px;
  font-weight: 400;
  vertical-align: super;
}

.pricing .plan-header .plan-price .period {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .plan-header .plan-desc {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .plan-features {
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing .plan-features .feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.pricing .plan-features .feature-row:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.pricing .plan-features .feature-row i {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-btn {
  display: inline-block;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 2px;
  color: var(--default-color);
  background: transparent;
  transition: all 0.3s ease;
}

.pricing .plan-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.pricing .plan-btn.solid {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .plan-btn.solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 768px) {
  .pricing .plan-card {
    padding: 36px 28px;
  }

  .pricing .plan-header {
    margin-bottom: 32px;
  }

  .pricing .plan-header .plan-price {
    font-size: 44px;
  }

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

  .pricing .plan-features {
    margin-bottom: 36px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .category-nav {
  position: sticky;
  top: 120px;
}

.faq .category-nav .nav {
  gap: 0;
}

.faq .category-nav .nav .nav-item .nav-link {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: none;
  border: none;
  border-left: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  text-align: left;
  padding-left: 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.faq .category-nav .nav .nav-item .nav-link:hover {
  color: var(--default-color);
}

.faq .category-nav .nav .nav-item .nav-link.active {
  color: var(--default-color);
  font-weight: 600;
  border-left-color: var(--accent-color);
  background: none;
}

@media (max-width: 992px) {
  .faq .category-nav {
    position: static;
    margin-bottom: 48px;
  }

  .faq .category-nav .nav {
    flex-direction: row !important;
    gap: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .faq .category-nav .nav .nav-item .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    text-align: center;
  }

  .faq .category-nav .nav .nav-item .nav-link.active {
    border-bottom-color: var(--accent-color);
    border-left: none;
  }
}

.faq .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
}

.faq .faq-list .faq-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
  padding-right: 16px;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  flex-shrink: 0;
}

.faq .faq-list .faq-item .faq-content {
  display: none;
  padding-bottom: 24px;
}

.faq .faq-list .faq-item .faq-content p {
  margin: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.faq .faq-list .faq-item .faq-content p+p {
  margin-top: 12px;
}

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

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  padding: 64px 0 0;
}

.faq .faq-cta p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.faq .faq-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.faq .faq-cta .cta-link:hover {
  opacity: 0.7;
}

.faq .faq-cta .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq .faq-cta .cta-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 20px 0;
    font-size: 0.95rem;
  }

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  background: var(--surface-color);
  gap: 32px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

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

.team .avatar-col {
  flex-shrink: 0;
}

.team .avatar-col img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.member-card:hover .team .avatar-col img {
  filter: grayscale(0%);
}

.team .info-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .info-col .role {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team .info-col p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .social-row {
  display: flex;
  gap: 16px;
}

.team .social-row a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
  transition: color 0.3s ease;
}

.team .social-row a:hover {
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .team .member-card {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .team .social-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .info-row {
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item {
  text-align: center;
  padding: 32px 16px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 16px;
}

.contact .info-item h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .form-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.contact .form-wrapper>p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact .php-email-form .form-group {
  margin-bottom: 24px;
}

.contact .php-email-form label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
}

.contact .php-email-form .form-control {
  height: auto;
  padding: 12px 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact .php-email-form .form-control:focus {
  background-color: transparent;
  border-color: var(--accent-color);
  box-shadow: none;
}

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

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

.contact .php-email-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

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

.contact .php-email-form button[type=submit] {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 10px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact .php-email-form button[type=submit]:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.contact .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0;
  color: var(--default-color);
  font-size: 14px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact .php-email-form .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.contact .map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact .map-container iframe:hover {
  filter: grayscale(0%) contrast(1);
}

@media (max-width: 992px) {
  .contact .map-container {
    min-height: 300px;
  }

  .contact .map-container iframe {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .slider-area {
  margin-bottom: 64px;
}

.portfolio-details .slider-area .details-slider {
  overflow: hidden;
}

.portfolio-details .slider-area .details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .slider-area .details-slider .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portfolio-details .slider-area .details-slider .swiper-pagination {
  bottom: 16px;
}

.portfolio-details .slider-area .details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--default-color);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.portfolio-details .slider-area .details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .portfolio-details .slider-area {
    margin-bottom: 48px;
  }

  .portfolio-details .slider-area .details-slider .swiper-slide img {
    height: 240px;
  }
}

.portfolio-details .meta-bar {
  padding: 32px 0;
  margin-bottom: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .meta-bar .meta-item .meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 4px;
}

.portfolio-details .meta-bar .meta-item .meta-value {
  display: block;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.portfolio-details .meta-bar .meta-item .meta-value a {
  color: var(--accent-color);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.portfolio-details .meta-bar .meta-item .meta-value a:hover {
  opacity: 0.7;
}

.portfolio-details .meta-bar .meta-item .meta-value a i {
  font-size: 12px;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .portfolio-details .meta-bar {
    padding: 24px 0;
    margin-bottom: 48px;
  }

  .portfolio-details .meta-bar .meta-item {
    margin-bottom: 16px;
  }
}

.portfolio-details .overview-block {
  margin-bottom: 80px;
  text-align: center;
}

.portfolio-details .overview-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.portfolio-details .overview-block p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .overview-block {
    margin-bottom: 56px;
  }

  .portfolio-details .overview-block h2 {
    font-size: 26px;
  }
}

.portfolio-details .impact-row {
  margin-bottom: 80px;
  padding: 48px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .impact-row .impact-item {
  text-align: center;
}

.portfolio-details .impact-row .impact-item .impact-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.portfolio-details .impact-row .impact-item .impact-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .portfolio-details .impact-row {
    margin-bottom: 56px;
    padding: 32px 0;
  }

  .portfolio-details .impact-row .impact-item {
    margin-bottom: 24px;
  }

  .portfolio-details .impact-row .impact-item:last-child {
    margin-bottom: 0;
  }

  .portfolio-details .impact-row .impact-item .impact-number {
    font-size: 32px;
  }
}

.portfolio-details .capabilities-block {
  margin-bottom: 80px;
}

.portfolio-details .capabilities-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .capabilities-block .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.portfolio-details .capabilities-block .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .capabilities-block .capability-card i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.portfolio-details .capabilities-block .capability-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.portfolio-details .capabilities-block .capability-card p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .capabilities-block {
    margin-bottom: 56px;
  }

  .portfolio-details .capabilities-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .capabilities-block .capability-card {
    padding: 32px 24px;
  }
}

.portfolio-details .tech-block {
  margin-bottom: 64px;
  text-align: center;
}

.portfolio-details .tech-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.portfolio-details .tech-block .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.portfolio-details .tech-block .tech-list .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  padding: 8px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.portfolio-details .tech-block .tech-list .tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .portfolio-details .tech-block {
    margin-bottom: 48px;
  }

  .portfolio-details .tech-block h3 {
    font-size: 20px;
  }

  .portfolio-details .tech-block .tech-list .tag {
    padding: 6px 16px;
    font-size: 12px;
  }
}

.portfolio-details .actions-block {
  margin-bottom: 80px;
}

.portfolio-details .actions-block .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 0 8px;
}

.portfolio-details .actions-block .action-btn.primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.portfolio-details .actions-block .action-btn.primary-action:hover {
  opacity: 0.85;
}

.portfolio-details .actions-block .action-btn.outline-action {
  background: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .actions-block .action-btn.outline-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .portfolio-details .actions-block .action-btn {
    display: flex;
    justify-content: center;
    margin: 0 0 12px 0;
  }

  .portfolio-details .actions-block .action-btn:last-child {
    margin-bottom: 0;
  }
}

.portfolio-details .related-block {
  padding-top: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .related-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .related-block .related-card {
  display: block;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.portfolio-details .related-block .related-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.portfolio-details .related-block .related-card:hover .view-link {
  color: var(--accent-color);
}

.portfolio-details .related-block .related-card:hover .view-link i {
  transform: translateX(3px);
}

.portfolio-details .related-block .related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-details .related-block .related-card .related-info {
  padding: 28px;
}

.portfolio-details .related-block .related-card .related-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.portfolio-details .related-block .related-card .related-info p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.portfolio-details .related-block .related-card .related-info .view-link {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.portfolio-details .related-block .related-card .related-info .view-link i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .portfolio-details .related-block {
    padding-top: 48px;
  }

  .portfolio-details .related-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .related-block .related-card img {
    height: 160px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .hero-image img {
  width: 100%;
  display: block;
}

.service-details .intro-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.service-details .intro-content .lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.service-details .intro-content p {
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-details .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-top: 24px;
}

.service-details .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .overview-details .detail-row:last-child {
  border-bottom: none;
}

.service-details .overview-details .detail-row .detail-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .overview-details .detail-row .detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .section-label {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.service-details .capabilities-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .capabilities-section .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-details .capabilities-section .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .capabilities-section .capability-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.service-details .capabilities-section .capability-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .capabilities-section .capability-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .workflow-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .workflow-section .workflow-step {
  padding: 40px 32px;
  height: 100%;
}

.service-details .workflow-section .workflow-step .step-num {
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.service-details .workflow-section .workflow-step h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .workflow-section .workflow-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .bottom-section {
  padding-top: 80px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .testimonial-block {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .testimonial-block i.bi-quote {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
}

.service-details .testimonial-block p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--default-color);
}

.service-details .testimonial-block .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details .testimonial-block .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .testimonial-block .author h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--heading-color);
}

.service-details .testimonial-block .author span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block {
  padding: 48px;
  text-align: center;
}

.service-details .cta-block h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.service-details .cta-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .cta-block .cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.service-details .cta-block .cta-contacts span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block .cta-contacts span i {
  color: var(--accent-color);
  margin-right: 8px;
}

@media (max-width: 992px) {
  .service-details .intro-content h2 {
    font-size: 1.8rem;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 60px 0;
  }

  .service-details .bottom-section {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .service-details .intro-content {
    margin-top: 32px;
  }

  .service-details .intro-content h2 {
    font-size: 1.6rem;
  }

  .service-details .section-label {
    margin-bottom: 32px;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 48px 0;
  }

  .service-details .testimonial-block,
  .service-details .cta-block {
    padding: 32px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# PREMIUM APARTAMENTY CHORZELÓW - BAJERANCKIE STYLE
--------------------------------------------------------------*/

/* Sekcja apartamentów - premium */
.apartments-premium {
  padding: 100px 0;
  position: relative;
}

.apartment-premium-card {
  background: var(--surface-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 100%;
  position: relative;
}

.apartment-premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 50px -20px rgba(0, 0, 0, 0.2);
}

.apartment-premium-card .apartment-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.apartment-premium-card .apartment-img {
  height: 280px;
  overflow: hidden;
}

.apartment-premium-card .apartment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.apartment-premium-card:hover .apartment-img img {
  transform: scale(1.08);
}

.apartment-premium-card .apartment-content {
  padding: 32px;
}

.apartment-premium-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.apartment-premium-card .apartment-subtitle {
  color: var(--accent-color);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.apartment-premium-card .premium-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.apartment-premium-card .premium-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.apartment-premium-card .premium-details li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 24px;
}

.apartment-premium-card .price-tag {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 20px 0;
}

.apartment-premium-card .price-tag span {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-premium:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  gap: 15px;
  color: white;
}
/*--------------------------------------------------------------
# GALERIA ZDJĘĆ W APARTAMENCIE - 6 ZDJĘĆ, RÓWNE MARGINESY
--------------------------------------------------------------*/

.apartment-gallery {
  margin-top: 20px;
  padding: 0 20px 20px 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  justify-content: center;
}

/* Układ dla 6 zdjęć - równe odstępy */
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  overflow-x: visible;
}

@media (max-width: 768px) {
  .gallery-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.thumbnail-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail-item:hover {
  opacity: 1;
  transform: scale(1.03);
}

.thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(8, 159, 95, 0.3);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--accent-color);
}

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

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: -40px;
  }
  .lightbox-next {
    right: -40px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}


/*--------------------------------------------------------------
# SEKCJA ATRAKCJE - ZACHĘTA DO ODWIEDZIN
--------------------------------------------------------------*/

.attractions-teaser {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 5%) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.attractions-teaser::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" opacity="0.03"><path fill="%23089f5f" d="M50,0 L61.8,35.4 L100,35.4 L70,57.4 L81.8,92.8 L50,70.8 L18.2,92.8 L30,57.4 L0,35.4 L38.2,35.4 Z"/></svg>');
  background-repeat: repeat;
  background-size: 60px;
  pointer-events: none;
}

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

.attractions-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.attractions-teaser h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.attractions-teaser h2 span {
  color: var(--accent-color);
}

.attractions-teaser .section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.attraction-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--surface-color);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.attraction-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.attraction-card:hover .attraction-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.attraction-card:hover .attraction-icon i {
  color: white;
}

.attraction-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.attraction-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.attraction-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

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

.attractions-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -8px rgba(8, 159, 95, 0.3);
}

.attractions-btn:hover {
  gap: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -12px rgba(8, 159, 95, 0.4);
  color: white;
}

.attractions-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.attractions-btn:hover i {
  transform: translateX(5px);
}



/* Sekcja O NAS - premium */
.about-premium {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 5%) 0%, var(--background-color) 100%);
}

.about-premium .about-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.about-premium h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-premium .about-lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.about-premium .about-text {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 40px;
}

.about-premium .signature-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-premium .signature {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--heading-color);
}

.about-premium .about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-premium .stat-premium {
  text-align: center;
}

.about-premium .stat-premium .number {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.about-premium .stat-premium .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-premium .about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.2);
}

.about-premium .about-image-wrapper img {
  width: 100%;
  height: auto;
}

.about-premium .about-image-wrapper .image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* Sekcja statystyk premium */
.stats-premium-section {
  padding: 80px 0;
  background: var(--accent-color);
  color: white;
}

.stats-premium-section .stat-premium-card {
  text-align: center;
}

.stats-premium-section .stat-premium-card .stat-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.stats-premium-section .stat-premium-card .stat-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Udogodnienia premium */
.amenities-premium {
  padding: 100px 0;
}

.amenity-premium-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.amenity-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.amenity-premium-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.amenity-premium-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.amenity-premium-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

/* Galeria premium */
.gallery-premium {
  padding: 100px 0;
  background: color-mix(in srgb, var(--background-color), transparent 3%);
}

.gallery-premium .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .gallery-premium .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-premium .gallery-item-premium {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

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

.gallery-premium .gallery-item-premium:hover img {
  transform: scale(1.08);
}

.gallery-premium .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-premium .gallery-item-premium:hover .gallery-overlay {
  opacity: 1;
}

.gallery-premium .gallery-overlay i {
  font-size: 48px;
  color: white;
}

/* Opinie premium */
.reviews-premium {
  padding: 100px 0;
}

.review-premium-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.review-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.1);
}

.review-premium-card .review-stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 18px;
}

.review-premium-card .review-text {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--default-color);
}

.review-premium-card .review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-premium-card .review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-premium-card .review-author h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.review-premium-card .review-author span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.booking-rating-premium {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  border-radius: 30px;
  color: white;
}

.booking-rating-premium .score {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.booking-rating-premium .stars {
  font-size: 20px;
  margin: 15px 0;
}

/* Sekcja lokalizacji */
.location-premium {
  padding: 100px 0;
}

.location-premium .map-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.location-premium .info-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.location-premium .info-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Sekcja CTA */
.cta-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--heading-color) 0%, #000000 100%);
  color: white;
  text-align: center;
}

.cta-premium h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-premium .btn-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.cta-premium .btn-cta-premium:hover {
  gap: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: white;
}
/*--------------------------------------------------------------
# BAJERANCKA SEKCJA KONTAKTU
--------------------------------------------------------------*/
.contact-premium {
  padding: 100px 0;
  position: relative;
}

.contact-premium .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--surface-color);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .contact-premium .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-premium .contact-info-premium {
  background: var(--accent-color);
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-premium .contact-info-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-premium .contact-info-premium h3 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-premium .contact-info-premium p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-premium .info-details {
  margin-bottom: 40px;
}

.contact-premium .info-details .detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-premium .info-details .detail-item i {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-premium .info-details .detail-item:hover i {
  background: white;
  color: var(--accent-color);
  transform: scale(1.05);
}

.contact-premium .info-details .detail-item span {
  font-size: 16px;
}

.contact-premium .social-premium {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.contact-premium .social-premium a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-premium .social-premium a:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-5px);
}

.contact-premium .contact-form-premium {
  padding: 50px;
}

.contact-premium .contact-form-premium h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-premium .contact-form-premium .form-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 32px;
}

.contact-premium .contact-form-premium .form-group {
  margin-bottom: 24px;
}

.contact-premium .contact-form-premium input,
.contact-premium .contact-form-premium textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: transparent;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact-premium .contact-form-premium input:focus,
.contact-premium .contact-form-premium textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.contact-premium .contact-form-premium button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-premium .contact-form-premium button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

/* Mapa */
.map-premium {
  margin-top: 60px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.map-premium:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
}

.map-premium iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-premium:hover iframe {
  filter: grayscale(0) contrast(1.1);
}

/* CTA Premium - poprawione (jasne tło, ciemne napisy) */
.cta-premium {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
  border-radius: 60px;
  margin: 40px 0;
}

.cta-premium h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.cta-premium p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.cta-premium .btn-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
}

.cta-premium .btn-cta-premium:hover {
  gap: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
}

/* Stopka rozbudowana */
.footer-premium {
  background: #111;
  color: #888;
  padding: 70px 0 30px;
  margin-top: 60px;
}

.footer-premium h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-premium .footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-premium .footer-contact i {
  width: 30px;
  color: var(--accent-color);
}

.footer-premium .footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}

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

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

.footer-premium .social-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-premium .social-footer a {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-premium .social-footer a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# SEKCJA DLACZEGO WARTO NAS ODWIEDZIĆ
--------------------------------------------------------------*/

.why-visit {
  padding: 100px 0;
  background: var(--surface-color);
  position: relative;
}

.why-visit-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.why-visit h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-visit h2 span {
  color: var(--accent-color);
}

.why-visit .section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Atuty - grid 3 kolumny */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.advantage-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--background-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.advantage-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
}

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

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

.advantage-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

/* Sekcja atrakcji w okolicy */
.attractions-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .attractions-grid-full {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.attraction-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--background-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.attraction-item:hover {
  transform: translateX(8px);
  border-color: var(--accent-color);
}

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

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

.attraction-item-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.attraction-item-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

.attraction-item-content .distance {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

/* Sekcja lokalizacji */
.location-highlight {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, var(--background-color) 100%);
  border-radius: 24px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.location-highlight i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.location-highlight h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.location-highlight p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}


/*--------------------------------------------------------------
# SEKCJA REZERWACJA - BOOKING (SPÓJNA STYLISTYKA)
--------------------------------------------------------------*/

.booking-section {
  padding: 100px 0;
  background: var(--background-color);
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.booking-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.booking-section h2 span {
  color: var(--accent-color);
}

.booking-section .section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .booking-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.booking-card {
  background: var(--surface-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.booking-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.12);
}

.booking-card-img {
  height: 260px;
  overflow: hidden;
}

.booking-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

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

.booking-card-content {
  padding: 28px;
}

.booking-card-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.booking-card-content .booking-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 15px 0;
}

.booking-card-content .booking-price span {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.booking-card-content .booking-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.booking-card-content .booking-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.booking-card-content .booking-features li i {
  color: var(--accent-color);
  font-size: 14px;
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-booking:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  gap: 18px;
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.btn-booking i {
  font-size: 14px;
}

.booking-note {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking-note p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.booking-note i {
  color: var(--accent-color);
  margin-right: 8px;
}



/*--------------------------------------------------------------
# FOOTER V3 - NOWOCZESNY, BAJERANCKI, JASNY
--------------------------------------------------------------*/

.footer-v3 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
  color: #4a4a4a;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dekoracyjne kropki w tle */
.footer-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(8, 159, 95, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Główna treść footer */
.footer-v3-content {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-v3 .logo-footer {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-v3 .logo-footer img {
  max-height: 55px;
  transition: transform 0.3s ease;
}

.footer-v3 .logo-footer:hover img {
  transform: scale(1.02);
}

.footer-v3 .footer-about p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  max-width: 320px;
}

/* Social media - kółka z gradientem */
.footer-v3 .social-links-footer {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-v3 .social-links-footer a {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.footer-v3 .social-links-footer a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(8, 159, 95, 0.2);
}

/* Nagłówki kolumn */
.footer-v3 h4 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.footer-v3 h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, rgba(8, 159, 95, 0.3) 100%);
  border-radius: 3px;
}

/* Linki w kolumnach */
.footer-v3 .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-v3 .footer-links li {
  margin-bottom: 14px;
}

.footer-v3 .footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-v3 .footer-links a i {
  font-size: 12px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

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

.footer-v3 .footer-links a:hover i {
  transform: translateX(3px);
}

/* Kontakt */
.footer-v3 .contact-info-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-v3 .contact-info-footer li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
}

.footer-v3 .contact-info-footer li:hover {
  transform: translateX(5px);
  color: var(--accent-color);
}

.footer-v3 .contact-info-footer li i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.footer-v3 .contact-info-footer li:hover i {
  background: var(--accent-color);
  color: white;
}

/* Newsletter */
.footer-v3 .newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-v3 .newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 13px;
  background: white;
  transition: all 0.3s ease;
}

.footer-v3 .newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(8, 159, 95, 0.1);
}

.footer-v3 .newsletter-form button {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-v3 .newsletter-form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: rotate(90deg);
}

/* Dolna stopka */
.footer-v3-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
  background: rgba(255, 255, 255, 0.5);
}

.footer-v3-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.footer-v3-bottom .heart {
  color: #ff4444;
  display: inline-block;
  animation: heartbeat 1.5s ease infinite;
}

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

/* Responsywność */
@media (max-width: 992px) {
  .footer-v3-content {
    padding: 60px 0 30px;
  }
  
  .footer-v3 .col-lg-3, 
  .footer-v3 .col-lg-4 {
    margin-bottom: 45px;
  }
  
  .footer-v3 .footer-about p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-v3 .footer-about {
    text-align: center;
  }
  
  .footer-v3 .social-links-footer {
    justify-content: center;
  }
  
  .footer-v3 h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-v3 h4 {
    text-align: center;
  }
  
  .footer-v3 .footer-links {
    text-align: center;
  }
  
  .footer-v3 .footer-links a {
    justify-content: center;
  }
  
  .footer-v3 .contact-info-footer li {
    justify-content: center;
  }
  
  .footer-v3 .newsletter-form {
    max-width: 300px;
    margin: 15px auto 0;
  }
}

/*--------------------------------------------------------------
# WIDGET POWIADOMIENIE - TELEFON
--------------------------------------------------------------*/

.notification-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.notification-widget.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.notification-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  width: 320px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(8, 159, 95, 0.2);
  transition: all 0.3s ease;
}

.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -18px rgba(0, 0, 0, 0.25);
}

/* Pasek akcentu na górze */
.notification-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 15%) 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-header .notification-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.notification-header .notification-icon i {
  font-size: 20px;
  animation: ring 1.5s ease infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

.notification-header .notification-icon span {
  font-weight: 600;
  font-size: 14px;
}

.notification-header .close-widget {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.notification-header .close-widget:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Treść powiadomienia */
.notification-body {
  padding: 20px;
}

.notification-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.notification-body p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Przycisk telefonu */
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 10%) 100%);
  color: white;  /* ← BIAŁY TEKST */
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-call:hover {
  gap: 15px;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(8, 159, 95, 0.3);
  color: white;  /* ← BIAŁY TEKST RÓWNIEŻ NA HOVER */
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, var(--accent-color) 100%);
}

.btn-call i {
  font-size: 16px;
  color: white;  /* ← BIAŁA IKONKA */
}

.btn-call:hover i {
  color: white;  /* ← BIAŁA IKONKA NA HOVER */
}

/* Numer telefonu */
.phone-number {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.phone-number a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

/* Responsywność */
@media (max-width: 576px) {
  .notification-widget {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  
  .notification-card {
    width: auto;
    max-width: 320px;
  }
}