html,body {
    overflow-x: hidden;
  }
  
/* Image Protection - Disable right-click, drag, select */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Re-enable pointer events for images that need interaction */
.nav-logo {
    pointer-events: auto;
    -webkit-user-drag: auto;
    -khtml-user-drag: auto;
    -moz-user-drag: auto;
    -o-user-drag: auto;
}

body {
    width: 100%;
    overflow-x: hidden;
     margin: 0;
    padding: 0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#header{
    width: 100%;
    padding: 250px 0;
}

/* Main Page Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(97, 71, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Main Section */
#hero-main {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #8B6914;
    position: relative;
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(97, 71, 25, 0.8), rgba(139, 105, 20, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #614719;
}

.service-content {
    padding: 30px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #614719;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #614719;
}

.service-features .feature i {
    color: #8B6914;
    font-size: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 71, 25, 0.3);
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #614719, #8B6914);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.services-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.services-cta .cta-btn {
    background: white;
    color: #614719;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.services-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonials Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid #8B6914;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 2rem;
    color: #8B6914;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    color: #614719;
    margin-bottom: 5px;
}

.author-social {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.author-social i {
    color: #1877f2;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #614719;
}

.trust-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

/* Main CTA Section */
#cta-main {
    background: linear-gradient(135deg, #614719 0%, #8B6914 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="rgba(255,255,255,0.1)"><circle cx="20" cy="20" r="2"/></g></svg>');
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

#cta-main h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

#cta-main p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-btn {
    background: white;
    color: #614719;
}

.voucher-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.phone-btn:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

.voucher-btn:hover {
    background: white;
    color: #614719;
    transform: translateY(-3px);
}

/* Why Us Grid Styles */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.feature-showcase {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #614719;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

/* Responsive Design for Main Page */
@media screen and (max-width: 768px) {
    #feature {
        padding: 60px 20px;
    }
    
    .hero-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .welcome-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .floating-badge {
        position: relative !important;
        margin: 10px auto;
        display: inline-flex;
    }
    
    .main-nav {
        padding: 0 15px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .feature-stats {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        z-index: 10;
    }
    
    .feature-showcase {
        height: 350px;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(97, 71, 25, 0.2);
        backdrop-filter: blur(5px);
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    #cta-main h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    #hero-main {
        padding: 100px 0 60px;
    }
    
    .hero-main-container {
        padding: 0 15px;
    }
    
    .main-nav {
        padding: 0 15px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    .nav-link {
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(97, 71, 25, 0.1);
        justify-content: center;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }




/*--feature--*/

#feature{
    width: 100%;
    padding: 70px 0;
}
.text{
    font-size: 20px;
    text-align: center;
    padding-bottom: 70;
    font-family:'Poppins', sans-serif;
    font-weight: bold;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
    font-family:'Poppins', sans-serif;
    font-weight: bold;
}
.title-text p{
    font-family:'Poppins', sans-serif;
    margin: auto;
    font-size: 20px;
    color: #423318;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#423318, #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    

}

.title-text h1{
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
}

.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    font-family:'Poppins', sans-serif;
}

.features{
    flex-basis: 50%; /* Elements take up full width on small screens */

}

.features img{
    flex-basis: 50%;
    margin: auto;

}
.features-img img{
    width: 70%;
    border-radius:  40px;
    
}

.features h1{
text-align: left;
margin-bottom: 10px;
font-weight: 100;
color: #423318;
left: 20px;
font-weight: bold;
}

.features-desc{
    display:flex;
    align-items: center;
    margin-bottom: 40px;
    left: 20px;
    font-family: 'Poppins', sans-serif;
}   

.feature-icon{
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #423318;
    border: 2px solid #423318;
}
.feature-text p{
    padding: 0 20px;
    text-align: initial;
}

@media screen and (max-width: 770px){
    .title-text h1{
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;

    }
    .features-img img{
        width: 100%;
    }
}

/*--uslugi--*/


#uslugi{
    width: 100%;
    padding: 70px 0;
    background: #efefef;
}
#uslugi2{
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}
#uslugi3{
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    place-items: center;
}

.nice-line1-wrapper {
    background-color: #f0f0f0; /* Kolor tła */
    padding: 20px 50px; /* Dopasuj padding do marginesów */
}

.nice-line1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #000000, transparent); /* Gradient */
}



.uslugi-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.pojedyncza-usluga{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}


.pojedyncza-usluga img{
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    border-radius: 20px;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5), #423318);
    opacity: 0;
    transition: 1s;
}
.pojedyncza-usluga:hover .overlay{
    opacity: 1;
    
}

.usluga-opis{
    
    width: 80%;
    position: absolute;
    top: 30%;
    bottom: 0;
    opacity: 0;
    left: 50%;
    transform: translate(-50%);
    transition: 1s;
    font-family:'Poppins', sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .usluga-opis {
        /* Adjust styles as needed for small screens */
        /* For example, you might want to adjust width and font size */
        width: 85%; /* Increase width to take up more space on small screens *//* Decrease font size for better fit on small screens */
        top: 5%;
        position: center;
        flex-wrap: wrap;
        font-size: clamp(16px, 2vw, 24px); /* Adjust this as needed */

    }
}

hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;

}

.usluga-opis p{
    font-size: 14px;
    font-weight: bold;
    font-family:'Poppins', sans-serif;
}

.pojedyncza-usluga:hover .usluga-opis{
    bottom: 40%;
    opacity: 1;
}

@media screen and (max-width: 770px){
    .pojedyncza-usluga{
        flex-basis: 100%;
        margin-bottom: 30px;   
         
    }

    .usluga-opis p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .pojedyncza-usluga:hover .usluga-opis{
        bottom: 25% !important;
        
    }

}


/*--Opinie--*/


#opinie{
    width: 100%;
    padding: 70px 0;
}

.opinie-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;

    
}
.opinie-col{
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #38270214;
    cursor: pointer;
    transition: transform 0.5s;

    


}
.opinie-col p{
    font-size: 14px;
}
/* CSS for #opinie, .opinie-row, and .opinie-col on small screens */
@media screen and (max-width: 600px) {
    #opinie {
        padding: 30px 0; /* Reduce padding on small screens */
    }

    .opinie-row {
        width: 90%; /* Increase width to take up more space on small screens */
    }

    .opinie-col {
        flex-basis: 100%; /* Make each column take up the full width on small screens */
        margin-bottom: 20px; /* Adjust margin as needed */
    }
}

.user{
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.user img{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}

.user-info{
    margin-left: 10px;
    color: #534120;
    font-size: 20px;
}

.user-info .fa{
    margin-left:10px;
    color: #534120;
    font-size: 20px;

}

.opinie-col:hover{
    transform: translateY(7px);
}




/*--footer--*/

#footer{
    padding: 100px 0 20px; /* Zachowujemy górny i boczny padding, zmniejszamy dolny padding dla większych ekranów */
    background: #efefef;
    position: auto;
}




.footer-row{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    font-family: 'Poppins', sans-serif;
}

.footer-left,.footer-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}
.footer-right{
    text-align: right;
}

/* CSS for .footer-left and .footer-right on small screens */
@media screen and (max-width: 600px) {
    .footer-row {
        flex-direction: column; /* Change flex direction to column on small screens */
    }

    .footer-left, .footer-right {
        flex-basis: 100%; /* Make each column take up the full width on small screens */
        text-align: center; /* Center text on small screens */
    }

    .footer-right {
        margin-top: 20px; /* Adjust margin as needed */
    }

}

.footer-row h1{
    margin: 10px 0;

}

.footer-row p{
    line-height: 35px;
    
}
.footer-img {
    max-width: 250px;
    opacity: 0.2;
    position: relative;
    top: 20px;
    display: block; /* Blokowy, aby margin auto działał */
}

.social-links{
    text-align: center;
    font-size: 40px;
    cursor:pointer;
}
.social-links-container {
    width: 100%;
    text-align: center;
}

.social-links {
    display: inline-block;
    font-size: 0;
}

.social-icon-wrapper,
.social-icon-wrapper:visited,
.social-icon-wrapper:link,
.social-icon-wrapper:hover,
.social-icon-wrapper:active {
    display: inline-block;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0 10px;
    font-size: 40px; /* lub użyj klas fa-2x, fa-3x w HTML */
    vertical-align: middle;
    color: inherit; /* Dziedziczy kolor od rodzica */
}

.social-icon-wrapper i {
    display: block;
}
.nice-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    height: 1.5px;
    background: linear-gradient(to right,transparent, #999, transparent); /* Adjust colors as needed */
    margin: 20px 50px; /* Adjust margin as needed */
}
.opis-pakiety{
    margin-top: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.cena-pakiet{
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}
.pasek{
    margin-top: 35px;
    display: flex;
    font-weight: bold;
    font-family:'Poppins', sans-serif;
    justify-content: center;
    align-items: center;
}
  
  #tiles {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tile {
    display: grid;
    place-items: center;
    width: 38vmin;
    aspect-ratio: 1;
    background-color: rgb(94, 81, 27);
    border-radius: 6vmin;
    box-shadow: 0vmin 3vmin 6vmin rgb(0 0 0 / 25%),
      inset 0vmin 0.5vmin 1vmin rgb(255 255 255 / 15%);
    position: relative;
    overflow: hidden;
  }
  
  .tile:nth-child(1) {
    rotate: 3deg;
    z-index: 3;
  }
  
  .tile:nth-child(2) {
    rotate: -2deg;
    z-index: 2;
  }
  
  .tile:nth-child(3) {
    rotate: 5deg;
    z-index: 1;
  }
  
  .tile:is(:nth-child(2), :nth-child(3)) {
    margin-left: -10vmin;
  }
  
  .tile > i {
    font-size: 15vmin;
    color: rgb(255 255 255 / 10%);
  }
  
  .tile > img {
    height: 100%;
    aspect-ratio: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    opacity: var(--opacity);
    filter: blur(calc(var(--blur) * 10px));
  }
  .floating-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: hsl(44, 47%, 60%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }
  
  .floating-home i {
    font-size: 24px;
  }

/* Float */

.hvr-float {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
  }
  .hvr-float:hover,
  .hvr-float:focus,
  .hvr-float:active {
    transform: translateY(-8px);
  }


  /* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.1);
}

/* Voucher Page Styles */

/* Header Navigation */
#voucher-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(97, 71, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.voucher-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: hsl(44, 61%, 63%);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Hero Banner */
#voucher-banner {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

#voucher-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(97, 71, 25, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 105, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.voucher-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(97, 71, 25, 0.3);
    white-space: nowrap;
}

/* Welcome badge for main page */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(97, 71, 25, 0.1);
    color: #614719;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(97, 71, 25, 0.2);
    backdrop-filter: blur(10px);
}

.welcome-badge i {
    font-size: 1.2rem;
    color: #8B6914;
}

/* Welcome highlights for main page */
.welcome-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(97, 71, 25, 0.05), rgba(139, 105, 20, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(97, 71, 25, 0.1);
}

.highlight-item {
    text-align: center;
    padding: 15px;
}

.highlight-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #614719;
    line-height: 1;
}

.highlight-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

/* Floating badges for main page */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #614719;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(97, 71, 25, 0.2);
    z-index: 2;
}

.floating-badge i {
    color: #8B6914;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #614719;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    color: #614719;
    font-weight: 500;
    white-space: nowrap;
}

.feature-item i {
    font-size: 1.1rem;
    color: #8B6914;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(97, 71, 25, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(97, 71, 25, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #614719;
    padding: 15px 30px;
    border: 2px solid #614719;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #614719;
    color: white;
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.voucher-preview {
    transform: rotate(15deg);
}

.voucher-card {
    background: linear-gradient(135deg, #614719, #8B6914);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 200px;
}

.voucher-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.voucher-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.voucher-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .voucher-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .image-container img {
        height: 400px;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .voucher-nav {
        padding: 0 15px;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    .nav-link {
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(97, 71, 25, 0.1);
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Legacy styles cleanup */
.home-link {
    display: none;
}

.voucher-hero {
    display: none;
}

/* Voucher Why Section */
#voucher-why {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

#voucher-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(97, 71, 25, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 105, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.why-voucher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

/* Benefits Container */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(97, 71, 25, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #614719, #8B6914);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.benefit-card p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(97, 71, 25, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(97, 71, 25, 0.1);
}

.benefit-highlight i {
    color: #614719;
    font-size: 0.9rem;
}

.benefit-highlight span {
    font-family: 'Poppins', sans-serif;
    color: #614719;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Voucher Visual */
.voucher-visual {
    position: relative;
    height: 600px;
}

.voucher-showcase {
    position: relative;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.voucher-showcase:hover .showcase-image img {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(97, 71, 25, 0.3) 0%, rgba(139, 105, 20, 0.2) 100%);
}

.voucher-sample {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.sample-voucher {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.voucher-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #614719;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.voucher-type {
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.voucher-middle h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #614719;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 700;
}

.voucher-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.detail-item i {
    color: #8B6914;
    width: 16px;
}

.voucher-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(97, 71, 25, 0.3);
}

.voucher-code {
    font-family: 'Poppins', sans-serif;
    color: #614719;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #614719;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .why-voucher-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .voucher-visual {
        height: 400px;
        order: -1;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sample-voucher {
        padding: 20px;
    }
    
    .voucher-middle h4 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .feature-showcase {
        height: 320px;
    }
    
    .feature-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .stat-item {
        padding: 8px 4px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    #feature {
        padding: 60px 20px;
    }
    
    #voucher-why {
        padding: 60px 20px;
    }
    
    .benefits-container {
        gap: 20px;
        padding: 0 20px;
    }
    
    .benefit-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .benefit-highlight span {
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .voucher-sample {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .feature-showcase {
        height: 300px;
    }
    
    .feature-stats {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        grid-template-columns: 1fr;
        gap: 6px;
        z-index: 10;
    }
    
    .stat-item {
        padding: 10px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(97, 71, 25, 0.2);
        backdrop-filter: blur(5px);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* Voucher Types Section */
#voucher-types {
    padding: 100px 0;
    background: white;
    position: relative;
}

.voucher-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.voucher-type-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(97, 71, 25, 0.1);
}

.voucher-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.voucher-type-card.featured {
    transform: scale(1.05);
    border: 2px solid #614719;
    box-shadow: 0 20px 50px rgba(97, 71, 25, 0.2);
}

.voucher-type-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(97, 71, 25, 0.3);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.voucher-type-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(97, 71, 25, 0.7), rgba(139, 105, 20, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.voucher-type-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-content {
    padding: 30px;
}

.card-badge {
    display: inline-block;
    background: rgba(97, 71, 25, 0.1);
    color: #614719;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(97, 71, 25, 0.2);
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

.feature i {
    color: #614719;
    font-size: 0.9rem;
    width: 16px;
}

.feature span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.card-action {
    text-align: center;
}

.voucher-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(97, 71, 25, 0.3);
    white-space: nowrap;
}

.voucher-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 71, 25, 0.4);
    background: linear-gradient(45deg, #8B6914, #614719);
}

/* Voucher Info Section */
.voucher-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(97, 71, 25, 0.1);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-text p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .voucher-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    
    .voucher-type-card.featured {
        transform: none;
    }
    
    .voucher-type-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .voucher-info {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .info-card {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    #voucher-types {
        padding: 60px 0;
    }
    
    .voucher-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .voucher-info {
        padding: 25px;
        gap: 25px;
    }
}

/* Voucher Examples Section - Redesigned for Two-Sided Voucher */
#voucher-examples {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

#voucher-examples::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(97, 71, 25, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 105, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.voucher-showcase-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Voucher Display */
.voucher-display {
    position: relative;
}

.voucher-pages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    perspective: 1000px;
}

.voucher-page {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.voucher-page:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.front-page:hover {
    transform: translateY(-10px) rotateY(-5deg);
}

.page-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(97, 71, 25, 0.3);
}

.voucher-image {
    height: 400px;
    position: relative;
}

.voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

/* Image Protection */
.protected-image {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.image-protection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    pointer-events: auto;
    cursor: default;
}

.protected-image img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border: 2px dashed rgba(97, 71, 25, 0.2);
}

.placeholder-content {
    text-align: center;
    color: #999;
}

.placeholder-content i {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 15px;
    display: block;
}

.placeholder-content p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Voucher Description */
.voucher-description {
    padding: 40px 0;
}

.description-content {
    max-width: 100%;
}

.voucher-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(97, 71, 25, 0.3);
}

.description-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.description-content > p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.voucher-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

#voucher-examples .feature-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(97, 71, 25, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

#voucher-examples .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#voucher-examples .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

#voucher-examples .feature-icon i {
    font-size: 1.3rem;
    color: white;
}

#voucher-examples .feature-box h4 {
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

#voucher-examples .feature-box p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(97, 71, 25, 0.1);
}

.cta-section h3 {
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(97, 71, 25, 0.3);
    background: linear-gradient(45deg, #8B6914, #614719);
}

.cta-btn.secondary {
    background: white;
    color: #614719;
    border: 2px solid #614719;
}

.cta-btn.secondary:hover {
    background: #614719;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .voucher-showcase-container {
        gap: 60px;
    }
    
    .voucher-pages {
        gap: 20px;
    }
    
    .voucher-image {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .voucher-showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .voucher-pages {
        gap: 25px;
    }
    
    .voucher-image {
        height: auto;
    }
    
    .voucher-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .description-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .description-content h2 {
        font-size: 1.8rem;
    }
    
    .description-content > p {
        text-align: center;
        margin: 0 auto 40px;
        max-width: 100%;
    }
    
    .voucher-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    #voucher-examples {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .voucher-showcase-container {
        padding: 0 15px;
    }
    
    .voucher-pages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .voucher-page:hover {
        transform: translateY(-5px) rotateY(0deg);
    }
    
    .voucher-image {
        height: auto;
    }
    
    .voucher-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .description-content {
        padding: 0 15px;
        text-align: center;
    }
    
    .description-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .description-content > p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 30px;
        text-align: center;
    }
    
    .voucher-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    #voucher-examples .feature-box {
        padding: 20px;
        text-align: center;
    }
    
    .cta-section {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .cta-section h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

.voucher-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #614719;
    margin-bottom: 15px;
}

.benefit-item p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
}

#jak-kupic {
    background: #f9f9f9;
    padding: 80px 0;
}

.purchase-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.method-icon i {
    font-size: 2.5rem;
    color: white;
}

.method-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #614719;
    margin-bottom: 20px;
}

.method-card p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #614719;
    font-weight: bold;
    text-decoration: none;
    margin: 15px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-link:hover {
    color: #8B6914;
}

.address {
    font-weight: bold;
    color: #614719 !important;
}

#cta-voucher {
    background: linear-gradient(rgba(97, 71, 25, 0.9), rgba(97, 71, 25, 0.9)), url('images/banner.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: hsl(44, 61%, 63%);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.phone-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.email-btn {
    background: linear-gradient(45deg, #EA4335, #DB4437);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(45deg, #DB4437, #EA4335);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments for voucher page */
@media screen and (max-width: 770px) {
    .home-link {
        font-size: 3vw;
        top: 30px;
        left: 20px;
    }
    
    .voucher-hero h1 {
        font-size: 2.5rem;
    }
    
    .voucher-hero p {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .purchase-methods {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .voucher-benefits {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* Pricing Page Styles */
#pricing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(97, 71, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.pricing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#pricing-hero {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Pricing badge for pricing page */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #614719, #8B6914);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(97, 71, 25, 0.4);
    position: relative;
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8B6914, #614719);
    border-radius: 50px;
    z-index: -1;
}

.pricing-badge i {
    font-size: 1.2rem;
    color: #fff;
}

/* Pricing benefits pills */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 18px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #614719;
    border: 1px solid rgba(97, 71, 25, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-pill:hover {
    background: rgba(97, 71, 25, 0.1);
    transform: translateY(-2px);
}

.benefit-pill i {
    color: #8B6914;
    font-size: 1rem;
}

/* Pricing highlights in image overlay */
.pricing-highlights {
    position: relative;
    width: 100%;
    height: 100%;
}

.price-highlight {
    position: absolute;
}

.price-highlight.top {
    top: 15%;
    right: 10%;
}

.price-highlight.bottom {
    bottom: 20%;
    left: 10%;
}

.price-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.price-badge.special {
    border: 2px solid #8B6914;
    background: linear-gradient(135deg, rgba(97, 71, 25, 0.1), rgba(139, 105, 20, 0.1));
}

.price-badge .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #614719;
    display: block;
}

.price-badge .service {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.quality-badge {
    position: absolute;
    bottom: 10%;
    right: 15%;
    background: linear-gradient(135deg, #614719, #8B6914);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(97, 71, 25, 0.4);
}

.quality-badge i {
    color: #ffd700;
}

.pricing-preview {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card {
    text-align: center;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #614719;
    justify-content: center;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #614719;
    margin-bottom: 5px;
    white-space: nowrap;
}

.price-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #8B6914;
}

.pricing-card.premium {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fefefe 0%, #f9f7f0 100%);
}

.premium-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-content {
    padding: 30px;
}

.pricing-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #614719;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.pricing-details {
    margin-bottom: 25px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f6f0, #f0ede5);
    border-radius: 15px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #614719;
    white-space: nowrap;
}

.duration {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 71, 25, 0.3);
}

/* Small Pricing Cards */
.pricing-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.pricing-card-small {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.pricing-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image-small {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card-small:hover .service-image-small img {
    transform: scale(1.1);
}

.pricing-content-small {
    padding: 25px;
}

.pricing-content-small .service-badge {
    display: inline-block;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-content-small h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #614719;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-content-small p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.price-row .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #614719;
}

.price-row .duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.book-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.book-btn-small:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(97, 71, 25, 0.3);
}

/* Oils Grid */
.oils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.oil-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.oil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.oil-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.oil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.oil-card:hover .oil-image img {
    transform: scale(1.1);
}

.oil-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(97, 71, 25, 0.8), rgba(139, 105, 20, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oil-card:hover .oil-overlay {
    opacity: 1;
}

.oil-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #614719;
}

.oil-content {
    padding: 20px;
}

.oil-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #614719;
    margin-bottom: 10px;
    font-weight: 600;
}

.oil-content p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.oil-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oil-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #614719;
}

.oil-benefits i {
    color: #8B6914;
    font-size: 0.7rem;
}

/* Packages Styles */
.packages-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.packages-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.package-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-image:first-child {
    grid-column: 1 / -1;
    height: 200px;
}

.package-image:not(:first-child) {
    height: 120px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(97, 71, 25, 0.1);
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.package-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.package-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #614719;
    margin-bottom: 5px;
    font-weight: 600;
}

.package-info p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.package-price {
    text-align: center;
    margin: 0 20px;
}

.package-price .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #614719;
}

.package-price .duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #614719, #8B6914);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 71, 25, 0.3);
}

.package-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.package-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-benefits .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.package-benefits .benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #614719, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.package-benefits .benefit-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #614719;
    margin-bottom: 3px;
    font-size: 0.95rem;
    font-weight: 600;
}

.package-benefits .benefit-text p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

/* Pricing CTA */
#cta-pricing {
    background: linear-gradient(135deg, #614719 0%, #8B6914 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="rgba(255,255,255,0.1)"><circle cx="20" cy="20" r="2"/></g></svg>');
}

/* Responsive Design for Pricing Page */
@media screen and (max-width: 768px) {
    .pricing-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-pill {
        justify-content: center;
    }
    
    .price-highlight.top,
    .price-highlight.bottom,
    .quality-badge {
        position: relative !important;
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
    
    .pricing-nav {
        padding: 0 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-small {
        grid-template-columns: 1fr;
    }
    
    .oils-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .packages-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-images {
        grid-template-columns: 1fr;
    }
    
    .package-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .package-content {
        flex-direction: column;
        text-align: center;
    }
    
    .package-benefits {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    #pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-hero-container {
        padding: 0 15px;
    }
    
    .pricing-nav {
        padding: 0 15px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    .nav-link {
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(97, 71, 25, 0.1);
        justify-content: center;
    }
    
    .price-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .package-benefits .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
}

