/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --heading-font: "Segoe UI", sans-serif;
  --nav-font: "Segoe UI", sans-serif;
}
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #1E5FD9; /* niebieski z logo Valda */
  --accent-color: #12294B; /* granat z logo Valda */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
:root {
  --nav-color: #12294B; /* header jasny -> tekst ciemny */
  --nav-hover-color: #1E5FD9;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #1E5FD9;
}
.light-background {
  --background-color: #f4f7fc;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #12294B;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1E5FD9;
  --contrast-color: #ffffff;
}
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
.rounded-30 {
  border-radius: 30px
}
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);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  font-weight: 600;
}
.header .header-container {
  background: #ffffff;
  box-shadow: 0 5px 25px rgba(18, 41, 75, 0.08);
  padding: 5px 25px;
  border-radius: 15px;
}
.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}
.header .logo {
  line-height: 1;
  padding-left: 5px;
}
.header .logo img {
  max-height: 90px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--heading-color), transparent 10%);
}
@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
  .header .logo {
    order: 1;
  }
  .header .logo img {
    max-width: 90px;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    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(255, 255, 255, 0.97);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .copyright {
  padding: 25px 0;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.pricing-box {
  padding: 30px;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.hero {
  position: relative;
  padding-top: 60px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .hero {
    background: linear-gradient(135deg, color-mix(in srgb, #ffffff, transparent 0%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}
.hero .company-badge i {
  font-size: 1.25rem;
}
.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}
.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero .hero-image img {
  max-width: 100%;
  height: auto;
}
/*--------------------------------------------------------------
# Paralax Section
--------------------------------------------------------------*/
.paralax {
  width: 100%;
  position: relative;
  padding: 150px 0 150px 0;
  display: flex;
  align-items: center;
  background: url(https://media.parkflow.io/tenants/9e65e59c-909b-4168-9f87-94edb2a72bb6/fotov2/paralax.jpg) center no-repeat;
  background-size: cover;
}
.paralax h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
}
.paralax p {
  color: #f0f2fd;
  margin: 10px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}
.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}
/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}
.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}
.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}
.features-cards .feature-box.orange { background-color: #fff3e2; }
.features-cards .feature-box.orange i { color: #edb86e; }
.features-cards .feature-box.blue { background-color: #deedfd; }
.features-cards .feature-box.blue i { color: #20a5f8; }
.features-cards .feature-box.green { background-color: #d5f1e4; }
.features-cards .feature-box.green i { color: #48c88a; }
.features-cards .feature-box.red { background-color: #fdeded; }
.features-cards .feature-box.red i { color: #f28484; }
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}
.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}
.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}
.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}
.call-to-action .shape { position: absolute; pointer-events: none; z-index: 1; }
.call-to-action .shape svg { width: 100%; height: 100%; }
.call-to-action .shape svg path { fill: color-mix(in srgb, var(--contrast-color) 50%, transparent); }
.call-to-action .shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; opacity: 0.1; transform: rotate(45deg); animation: shapes-float 3s ease-in-out infinite; }
.call-to-action .shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; opacity: 0.15; transform: rotate(-15deg); animation: shapes-float 4s ease-in-out infinite; }
.call-to-action .shape-3 { width: 150px; height: 150px; top: 20%; right: 15%; opacity: 0.08; transform: rotate(15deg); }
.call-to-action .dots { position: absolute; pointer-events: none; z-index: 1; color: var(--contrast-color); }
.call-to-action .dots svg { width: 100%; height: 100%; }
.call-to-action .dots-1 { width: 200px; height: 200px; top: -30px; left: 10%; opacity: 0.1; transform: rotate(15deg); animation: shapes-float 4s ease-in-out infinite; }
.call-to-action .dots-2 { width: 150px; height: 150px; bottom: 20px; right: 15%; opacity: 0.15; transform: rotate(-10deg); }
@keyframes shapes-float {
  0%, 100% { transform: scale(0.8) rotate(45deg) translateY(0); }
  50% { transform: scale(0.8) rotate(45deg) translateY(-20px); }
}
@media (max-width: 992px) {
  .call-to-action .container { padding: 3rem 1.5rem; }
  .call-to-action .shape-1 { width: 200px; height: 200px; }
  .call-to-action .shape-2 { width: 150px; height: 150px; }
  .call-to-action .shape-3 { width: 100px; height: 100px; }
  .call-to-action .dots-1 { width: 150px; height: 150px; }
  .call-to-action .dots-2 { width: 120px; height: 120px; }
}
@media (max-width: 575px) {
  .call-to-action .container { border-radius: 0; }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}
.services .service-card h3, .services .service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.services .service-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}
.contact .info-box h3 { color: var(--contrast-color); font-size: 2rem; margin-bottom: 1rem; }
.contact .info-box p { opacity: 0.8; margin-bottom: 2rem; }
.contact .info-box a { color: var(--contrast-color); }
@media (max-width: 992px) { .contact .info-box { padding: 1.5rem; } }
.contact .info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact .info-item:last-child { margin-bottom: 0; }
.contact .info-item .icon-box {
  width: 3.5rem; height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: 0.3s;
}
.contact .info-item .icon-box i { font-size: 1.5rem; color: var(--contrast-color); }
.contact .info-item:hover .icon-box { background-color: color-mix(in srgb, var(--contrast-color), transparent 70%); }
.contact .info-item .content h4 { color: var(--contrast-color); font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 700; }
.contact .info-item .content p { margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px) { .contact .contact-form { padding: 1.5rem; } }
.contact .contact-form h3 { font-size: 2rem; margin-bottom: 1rem; }
.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}
/*--------------------------------------------------------------
# Valda House Section
--------------------------------------------------------------*/
.house-gallery-placeholder {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 1rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}
.house-amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface-color);
  border-radius: 0.75rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.house-amenity i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.house-amenity span {
  font-size: 0.95rem;
  font-weight: 500;
}