.ascltr-wrap {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 40px;
}

.ascltr-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 95px;
}

.ascltr-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0;
}

.ascltr-hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ascltr-hero__inner {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.ascltr-hero__title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ascltr-hero__subtitle {
    font-size: 1rem;
    color: white;
    line-height: 1.7;
    background: rgba(42,85,66,0.95);
    padding: 2.5rem 3rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    text-align: justify;
}

.ascltr-section {
    padding: 80px 0;
}

.ascltr-section--light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ascltr-section--dark {
    background: #f8f9fa;
}

.ascltr-section__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2a5542;
    text-align: center;
    margin-bottom: 4rem !important;
    position: relative;
}

.ascltr-section__title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #eaaa00, #f4c430);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.ascltr-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ascltr-stat {
    background: #fff;
    border-radius: 6px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ascltr-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.ascltr-stat__number {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #eaaa00;
    line-height: 1;
    margin-bottom: 1rem;
}

.ascltr-stat__label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ascltr-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ascltr-value {
    background: #fff;
    border-radius: 6px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ascltr-value__icon i {
    font-size: 3.5rem;
    color: #eaaa00;
}

.ascltr-value__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a5542;
    margin-bottom: 1rem;
}

.ascltr-value__desc {
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.ascltr-story {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.ascltr-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ascltr-team__member {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ascltr-team__photo {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.ascltr-team__info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ascltr-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ascltr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.ascltr-card__image {
    height: 250px;
    background-size: cover !important;
    background-position: center !important;
    flex-shrink: 0;
}

.ascltr-card__content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .ascltr-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ascltr-wrap {
        padding: 0 20px;
    }
    
    .ascltr-section {
        padding: 60px 0;
    }
    
    .ascltr-section__title {
        margin-bottom: 3rem;
        font-size: 2rem;
    }
    
    .ascltr-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ascltr-values,
    .ascltr-team {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ascltr-hero {
        min-height: 60vh;
    }
    
    .ascltr-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ascltr-hero__subtitle {
        padding: 2rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .ascltr-section {
        padding: 40px 0;
    }
    
    .ascltr-stat,
    .ascltr-value {
        padding: 2rem 1.5rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0;
}

h1 { font-size: 3.2em; line-height: 1.2; }
h2 { font-size: 2.4em; line-height: 1.3; }
h3 { font-size: 2.0em; line-height: 1.3; }
h4 { font-size: 1.7em; line-height: 1.4; }
h5 { font-size: 1.5em; line-height: 1.4; }
h6 { font-size: 1.3em; line-height: 1.4; }

@media (max-width: 992px) {
    h1 { font-size: 2.6em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.7em; }
    h4 { font-size: 1.45em; }
    h5 { font-size: 1.3em; }
    h6 { font-size: 1.15em; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.1em; line-height: 1.25; }
    h2 { font-size: 1.7em; line-height: 1.3; }
    h3 { font-size: 1.45em; }
    h4 { font-size: 1.25em; }
    h5 { font-size: 1.15em; }
    h6 { font-size: 1.05em; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75em; }
    h2 { font-size: 1.45em; }
    h3 { font-size: 1.25em; }
    h4 { font-size: 1.1em; }
    h5 { font-size: 1em; }
    h6 { font-size: 0.95em; }
}

p, li, a, span {
    font-size: 1rem !important;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0;
}

ul, ol {
    padding-left: 1.4em !important;
    margin: 0.5em 0 !important;
    padding: 0;
}

ul li, ol li {
    margin-bottom: 0.3em !important;
    font-size: 1.15em;
}

ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
}

ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;
}

.ascltr-slide-image {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block;
}


.ascltr-contact-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 2.5rem;
}

.ascltr-contact-info,
.ascltr-contact-form {
  background: #fff;
  padding: 2rem 2.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.ascltr-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.ascltr-contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.ascltr-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(234,170,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ascltr-contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ascltr-contact-details h3 {
  font-size: 1.05rem;
  color: #2a5542;
  margin: 0 0 0.25rem 0;
  font-weight: 700;
}

.ascltr-contact-details a {
  font-size: 1.05rem;
  color: #eaaa00;
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.ascltr-contact-details a:hover {
  color: #d89900;
  text-decoration: underline;
}

.ascltr-social-links {
  display: flex;
  gap: 0.75rem;
}

.ascltr-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ascltr-social-link svg {
  width: 18px;
  height: 18px;
      fill: #fff;
}

.ascltr-social-link--fb {
  background: #1877f2;
}

.ascltr-social-link--ig {
background: #e1306c ;
}

.ascltr-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ascltr-contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.ascltr-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

ul li::marker {
    color: #eaaa00;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    text-align: center;
}

.cta-block{
margin-top: 1em;
}

.cta-block p{
text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #c8a265;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b08c4a;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-whatsapp img {
    width: 36px !important;
    height: 36px !important;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
    display: block;
}


@media (max-width: 768px) {
  .ascltr-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin: 2rem auto 0;
  }
  
  .ascltr-contact-info,
  .ascltr-contact-form {
    padding: 1.75rem;
  }
  
  .ascltr-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .ascltr-contact-icon {
    align-self: flex-start;
  }
  
  .ascltr-contact-map iframe {
    height: 300px;
  }
}

.ascltr-contact-grid ::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

.ascltr-contact-grid button, .ascltr-contact-grid input:not(.wpcf7-submit), .ascltr-contact-grid optgroup, .ascltr-contact-grid select, .ascltr-contact-grid textarea{
    border-bottom: 1px solid #b5b5b5;
    color: #666;
}

.ascltr-contact-social h3, .ascltr-contact-hours h3{
    color: #2a5542;
    font-size: 1.5em;
}

.ascltr-contact-wysiwyg {
    margin-top: 1em;
    color: #2a5542;
}

.ascltr-contact-hours-full {
  background: #fff;
  margin: 3rem auto 0;
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.ascltr-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.ascltr-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #eaaa00;
}

.ascltr-hour-item strong {
  color: #2a5542;
  font-weight: 600;
}

.ascltr-hour-times {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}

.ascltr-hour-times span {
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.hours-closed {
  color: #e74c3c !important;
  font-weight: 600;
}


.ascltr-cta-box {
  background: rgba(42,85,66,0.80);
  backdrop-filter: blur(12px);
  padding: 4rem 3rem;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
}

.ascltr-cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3.5rem;
  align-items: center;
}

.ascltr-cta-left h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem 0;
  line-height: 1.15;
}

.ascltr-cta-left p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

@media only screen and (max-width: 992px){
.ascltr-cta-left p {
text-align:center;

}
}

.ascltr-cta-button {
  background: linear-gradient(135deg, #eaaa00 0%, #f4c430 100%);
  color: #fff !important;
  padding: 1.5rem 3rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ascltr-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.ascltr-cta-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.4);
}

.ascltr-cta-button:hover::before {
  left: 100%;
}

.ascltr-cta-button:active {
  transform: translateY(-2px);
}


@media (max-width: 992px) {
  .ascltr-cta-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .ascltr-cta-left h2 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .ascltr-cta-section {
    padding: 80px 0;
  }
  
  .ascltr-cta-box {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }
  
  .ascltr-cta-button {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ascltr-cta-section {
    padding: 60px 0;
  }
  
  .ascltr-cta-box {
    padding: 2rem 1.5rem;
  }
}


@supports not (backdrop-filter: blur(12px)) {
  .ascltr-cta-box {
    background: rgba(0,0,0,0.4);
  }
}


.car-box {
  display: flex;
  flex-direction: column;
}

.car-box-content {
  display: flex;
  flex-wrap: wrap;
  background: #fffdf7;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.car-box-galery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #f9f7f2;
}

.image-item {
  flex: 1 1 33%;
  overflow: hidden;
  position: relative;
}

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

.image-item.large-item {
  flex: 1 1 100%;
}


.car-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fffdf8;
}

.car-deta {
  padding: 32px;
}

.car-title {
  font-size: 28px;
  font-weight: 600;
  color: #2d2c2a;
  margin-bottom: 24px;
}

.car-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b4a47;
}


.car-table {
      padding-top: 40px;
    padding-bottom: 78px !important;
  background-color: #f5f0e4;
  color: #2c2b29;
  padding-left: 30px;
  padding-right: 30px;
}

.car-deta{
  background: #eaaa00;
}

.car-table .row.flex {
  display: flex;
  justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #eaaa00;
}

.car-table .label {
  font-weight: 500;
}


@media (max-width: 768px) {
  .car-box-content {
    flex-direction: column;
  }
  
  .car-deta, .car-table {
    width: 100%;
    padding: 20px;
  }
}

.royals-panel .wrap .label.border {
    padding: 25px 0;
    border-bottom: 1px solid #eaaa00;
}
.bg-brown, .bg-yellow h3 {
    color: #eaaa00;
}

.royals-panel .wrap .table .row {
    padding: 25px 0;
    border-bottom: 1px solid #eaaa00;
}

@media screen and (min-width: 770px) {
    .royals-panel .wrap {
        padding: 75px 14%;
    }
}

.royals-panel .wrap .table .row .price {
    margin-left: auto;
}

.royals-panel {
    width: 100%;
    position: relative;
    z-index: 102;
    text-align: center;
    background: #eaaa00;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.royals-panel h3 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
    font-style: normal;
}

.page-template-page-oferta .ascltr-section--light{
  padding-bottom: 0;
}

.page-template-page-oferta .ascltr-section--light .ascltr-wrap{
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.swiper-container-wrapper {
  position: relative;
  overflow: visible;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  padding: 0 40px;
}

.ascltr-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ascltr-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.ascltr-swiper-button-prev,
.ascltr-swiper-button-next {
  color: #2a5542;
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 20 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0;
}

.ascltr-swiper-button-prev {
  left: 0 !important;
}

.ascltr-swiper-button-next {
  right: 0 !important;
}

.ascltr-swiper-button-prev::after,
.ascltr-swiper-button-next::after {
  font-size: 55px !important;
  font-weight: bold !important;
  color: #2a5542 !important;
  font-family: 'Swiper', sans-serif !important;
  text-shadow: none;
}

.ascltr-swiper-button-prev::after {
  content: '‹';
}

.ascltr-swiper-button-next::after {
  content: '›';
}

.ascltr-swiper .swiper-wrapper:not(.swiper-wrapper--multiple) .ascltr-swiper-button-prev,
.ascltr-swiper .swiper-wrapper:not(.swiper-wrapper--multiple) .ascltr-swiper-button-next {
  display: none !important;
}

@media (max-width: 768px) {
  .swiper-container-wrapper {
    padding: 0 20px;
  }
  
  .ascltr-swiper-button-prev,
  .ascltr-swiper-button-next {
    width: 44px;
    height: 44px;
  }
}

.page-template-page-atrakcje .ascltr-story {
    margin-top: 4rem;
}

@media screen and (min-width: 970px) {
    header {
        z-index: 999999;
    }
}