/********** Template CSS **********/
:root {
    --primary: #AB7442;
    --light: #F5F5F5;
    --dark: #353535;
}


.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

/* Modern Minimal Hero */
.minimal-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f3f0; /* Delikatne neutralne tło */
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('img/your-image.webp') center/cover no-repeat;
    z-index: 0;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(171, 116, 66, 0.1); /* Subtelny odcień Twojego koloru brandowego */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.name-divider {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.name {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #AB7442;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.name:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #AB7442;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #353535;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.btn-call, .btn-book {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-call {
    background: #AB7442;
    color: white;
}

.btn-book {
    background: white;
    color: #353535;
    border-color: #ddd;
}

.btn-call:hover, .btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-text {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #AB7442;
    animation: scrollBounce 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-hero {
        min-height: 500px;
        height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn-call, .btn-book {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn-call, .btn-book {
        width: 100%;
        justify-content: center;
    }
}

/* Universal Approach Section */
.universal-approach {
    padding: 100px 0;
    background-color: #f9f9f7;
    position: relative;
}

.universal-approach .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.universal-approach .section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.universal-approach .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #353535;
    margin-bottom: 20px;
}

.universal-approach .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.universal-approach .approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.universal-approach .approach-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    z-index: 1;
}

.universal-approach .approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(171, 116, 66, 0.1);
}

.universal-approach .card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.universal-approach .card-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(171, 116, 66, 0.1);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.universal-approach .approach-card:hover .card-icon-bg {
    transform: scale(1.1);
}

.universal-approach .card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    fill: #AB7442;
    z-index: 2;
}

.universal-approach .card-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 15px;
}

.universal-approach .card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.universal-approach .card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #AB7442, #d4a276);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.universal-approach .approach-card:hover .card-hover-effect {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .universal-approach {
        padding: 70px 0;
    }
    
    .universal-approach .approach-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .universal-approach .approach-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .universal-approach .section-subtitle {
        font-size: 0.8rem;
    }
    
    .universal-approach .section-title {
        font-size: 1.8rem;
    }
    
    .universal-approach .section-description {
        font-size: 1rem;
    }
}

/* Modern About Section - Improved */
.about-section {
    padding: 60px 0 40px;
    background-color: #fff;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-content {
    padding: 20px 0;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.specializations h3 {
    font-size: 1.1rem;
    color: #353535;
    margin-bottom: 15px;
    font-weight: 600;
}

.specialization-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.specialization-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #555;
    flex: 1 1 40%;
}

.specialization-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #AB7442;
    border-radius: 50%;
}

.about-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: #AB7442;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.cta-button:hover {
    background-color: #8a5d36;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(171, 116, 66, 0.3);
}

.more-toggle {
    background: none;
    border: none;
    color: #AB7442;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.more-toggle:hover {
    color: #8a5d36;
}

.more-toggle i {
    transition: transform 0.3s ease;
}

.more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 10px;
}

.more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 0 10px;
}

.more-item h3 {
    font-size: 1.1rem;
    color: #353535;
    margin-bottom: 10px;
    font-weight: 600;
}

.more-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Active state */
.more-toggle.active i {
    transform: rotate(180deg);
}

.more-content.active {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        min-height: 300px;
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .more-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0 30px;
    }
    
    .specialization-list li {
        flex: 1 1 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-highlight p {
        font-size: 1rem;
    }
}

/* Why Choose Us - Modern Styles */
.trust-section {
    padding: 80px 0;
    background-color: #f9f9f7;
    position: relative;
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.trust-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(171,116,66,0.1) 100%);
}

.trust-content {
    padding: 40px;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trust-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.trust-lead:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #AB7442;
}

.trust-features {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(171, 116, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #AB7442;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: #353535;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background-color: #AB7442;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #8a5d36;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(171, 116, 66, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .trust-image {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-lead {
        font-size: 1rem;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .trust-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trust-features {
        gap: 20px;
    }
}

/* Modern Massage Section */
.massage-section {
    padding: 100px 0;
    background-color: #f9f9f7;
    position: relative;
}

.massage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.3;
    color: #353535;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.massage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.massage-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.massage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(171,116,66,0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.massage-card:hover .card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefits-list li {
    background: rgba(171,116,66,0.1);
    color: #AB7442;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #AB7442;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button svg {
    width: 18px;
    height: 18px;
    fill: #AB7442;
    transition: transform 0.3s ease;
}

.card-button:hover {
    color: #8a5d36;
}

.card-button:hover svg {
    transform: translateX(5px);
    fill: #8a5d36;
}

/* Responsive */
@media (max-width: 768px) {
    .massage-section {
        padding: 70px 0;
    }
    
    .massage-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* Modern Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(171,116,66,0.1);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-style: italic;
}

.testimonial-content p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(171,116,66,0.2);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(171,116,66,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
    fill: #AB7442;
}

.author-info h4 {
    font-size: 1rem;
    color: #353535;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: #777;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: #AB7442;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.cta-button:hover {
    background-color: #8a5d36;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(171,116,66,0.3);
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
}

/* Elegant Team Section - Fixed Image Crop */
.team-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #353535;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(171,116,66,0.1);
}

.member-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 30%);
}

.member-details {
    padding: 30px;
    text-align: center;
}

.member-details h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 10px;
}

.member-specialty {
    margin-bottom: 15px;
}

.member-specialty span {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(171,116,66,0.1);
    color: #AB7442;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-divider {
    width: 50px;
    height: 2px;
    background: #AB7442;
    margin: 20px auto;
    opacity: 0.3;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .member-image-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .member-image-container {
        height: 300px;
    }
    
    .member-details {
        padding: 25px 20px;
    }
}

/* Modern Footer Styles */
.site-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 60px 0 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-hours {
    margin-top: auto;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hours-item i {
    color: #AB7442;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #AB7442;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-menu a:hover {
    color: #AB7442;
    opacity: 1;
}

.contact-info {
    font-style: normal;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #AB7442;
    margin-top: 3px;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #AB7442;
}

.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #AB7442;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.booking-button:hover {
    background-color: #8a5d36;
    transform: translateY(-2px);
}

.certificates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificates-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.certificates-list i {
    color: #AB7442;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: #AB7442;
}

.legal-links span {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Modern Navbar Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    padding: 0;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #353535;
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #AB7442;
    text-transform: uppercase;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: #353535 !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: #AB7442;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(171, 116, 66, 0.1);
    color: #AB7442;
}

.btn-primary {
    background-color: #AB7442;
    border-color: #AB7442;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8a5d36;
    border-color: #8a5d36;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(171, 116, 66, 0.3);
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.3rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .dropdown-menu {
        box-shadow: none;
        padding-left: 1rem;
        background-color: rgba(249, 249, 247, 0.5);
    }
    
    .btn-primary {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}



/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/130_optimized.webp) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** O nas ***/
/* About Page Styles */
.about-hero {
    background-color: #f5f3f0; /* Delikatne neutralne tło */
    color: #353535;
    padding: 120px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-intro {
    padding: 80px 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.values-section {
    padding: 80px 0;
    background-color: #f9f9f7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #AB7442;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
}

.team-members {
    margin-top: 50px;
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: center;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
}

.member-info {
    flex: 1;
    min-width: 300px;
    padding: 0 40px;
}

.member-info h3 {
    color: #353535;
    margin-bottom: 10px;
}

.specialty {
    display: inline-block;
    background: rgba(171, 116, 66, 0.1);
    color: #AB7442;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.member-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    color: #AB7442;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #AB7442;
    color: white;
}

.certificates-section {
    padding: 80px 0;
    background-color: #f9f9f7;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certificate {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: translateY(-5px);
}

.certificate img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .team-member, .team-member:nth-child(even) {
        flex-direction: column;
    }
    
    .member-info {
        padding: 20px 0 0 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/* Modern CTA Styles */
.modern-cta {
    background-color: #f9f9f7;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #353535;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #AB7442;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(171, 116, 66, 0.3);
}

.cta-button:hover {
    background-color: #8a5d36;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 116, 66, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* Optional decorative elements */
.modern-cta::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(171, 116, 66, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.modern-cta::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(171, 116, 66, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
    }
}

/* Minimalist Features Section */
.minimal-features {
    padding: 5rem 0;
    background: #fff;
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #AB7442;
    margin-bottom: 1rem;
}

.minimal-features h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: #353535;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f9f9f7;
    transform: translateY(-0.25rem);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 116, 66, 0.08);
    border-radius: 50%;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #AB7442;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #353535;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-features h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}



/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}
