
.navigation {
    display: flex;
    align-items: center;
    gap: 60px;
    position: absolute;
    top: 28px;
    left: 564px;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    width: 136px;
    height: 43px;
}

.logo-z {
    width: 20px;
    height: 31px;
    background: #754f23;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 8px;
}

.logo-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    color: #754f23;
    font-weight: 400;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    color: #1d1d1d;
    font-weight: 200;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-item.active span {
    color: #754f23;
    font-weight: 400;
}

.nav-item:hover span {
    color: #754f23;
}

.nav-underline {
    height: 2px;
    background: transparent;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-item:nth-child(1) .nav-underline {
    width: 55px;
}

.nav-item:nth-child(2) .nav-underline {
    width: 120px;
}

.nav-item:nth-child(3) .nav-underline {
    width: 92px;
}

.nav-item:nth-child(4) .nav-underline {
    width: 92px;
}

.nav-item.active .nav-underline {
    background: #754f23;
}

/* CTA Containers and Cards */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.cta-card {
    background: #b79161;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: all 0.3s ease;
    max-width: 1300px;
    width: 100%;
    padding: 16px;
}

.cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 145, 97, 0.3);
}

.cta-card.cta-dark {
    background: #5a4328;
}

.cta-card.cta-dark:hover {
    box-shadow: 0 15px 40px rgba(90, 67, 40, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.48px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.48px;
    color: white;
    max-width: 600px;
    white-space: nowrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: #7f5f30;
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 300px;
    height: 60px;
    justify-content: center;
    flex-shrink: 0;
}

.cta-button:hover {
    background: #6a4f28;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 95, 48, 0.3);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* CTA Button Variants */
.cta-button.cta-medium {
    background: #ffeacb;
    color: #886634;
    min-width: 180px;
    height: 44px;
    padding: 0 20px;
}

.cta-button.cta-medium:hover {
    background: #f5ddb8;
    color: #754f23;
}

.cta-button.cta-dark {
    background: #ffeacb;
    color: #886634;
    min-width: 180px;
    height: 44px;
    padding: 0 20px;
}

.cta-button.cta-dark:hover {
    background: #f5ddb8;
    color: #754f23;
}

.cta-card.cta-dark .cta-button {
    align-self: flex-start;
    margin-top: 0px;
}

/* Procedure Cards */
.procedure-card {
    background: #fff5eb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.procedure-image {
    height: 380px;
    overflow: hidden;
}

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

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

.procedure-content {
    padding: 40px 24px 24px;
    text-align: center;
}

.procedure-content h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    color: #1d1d1d;
}

.procedure-content p {
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #1d1d1d;
}

.procedure-button {
    width: 100%;
    height: 52px;
    background: #f2dec1;
    border: none;
    border-radius: 999px;
    color: #886634;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    letter-spacing: 0.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 24px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.procedure-button:hover {
    background: #e9d0ad;
    transform: translateY(-2px);
}

.procedure-button svg {
    transition: transform 0.3s ease;
}

.procedure-button:hover svg {
    transform: translateX(3px);
}

/* Differential Cards */
.differential-card {
    background: #fff5eb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: #cfb191;
    border-radius: 13.83px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #886634;
    transition: all 0.3s ease;
}

.differential-card:hover .differential-icon {
    background: #b79161;
    transform: scale(1.1);
}

.differential-card h3 {
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
    color: #1d1d1d;
}

.differential-card p {
    font-size: 16px;
    letter-spacing: 1.28px;
    color: #1d1d1d;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff5eb;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h3 {
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.testimonial-content p {
    font-size: 16px;
    letter-spacing: 1.28px;
    color: #1d1d1d;
    font-style: italic;
}

/* Before After Cards */
.before-after-card {
    width: 412px;
    height: 515px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.split-view {
    display: flex;
    background: black;
}

.split-view .before-image,
.split-view .after-image {
    width: 50%;
    height: 100%;
    position: relative;
}

.split-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stacked-view {
    background: #dfceb9;
}

.stacked-view .top-image,
.stacked-view .bottom-image {
    width: 100%;
    height: 50%;
    position: relative;
    background: #dfceb9;
}

.stacked-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 9px;
}

.clinic-branded {
    background: #dfceb9;
    padding: 38px 0 0;
}

.clinic-logo {
    text-align: center;
    margin-bottom: 30px;
}

.clinic-logo .logo-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #433425;
    margin-bottom: 5px;
}

.clinic-logo span {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    color: #433425;
    font-size: 13px;
}

.comparison-images {
    display: flex;
    height: 391px;
}

.before-side,
.after-side {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.comparison-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dot {
    position: absolute;
    width: 27px;
    height: 27px;
    background: #dfceb9;
    border-radius: 50%;
}

.dot-1 {
    top: 150px;
    left: 216px;
}

.dot-2 {
    top: 150px;
    left: 106px;
}

.dot-3 {
    top: 153px;
    left: 189px;
}

.dot-4 {
    top: 153px;
    left: 86px;
}

.dot-5 {
    top: 143px;
    left: 130px;
}

.dot-6 {
    top: 143px;
    left: 47px;
}

.dot-7 {
    top: 144px;
    left: 51px;
}

.dot-8 {
    top: 144px;
    left: 136px;
}

.z-icon {
    position: absolute;
    bottom: 20px;
    right: 19px;
    width: 18px;
    height: 26px;
    background: #754f23;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 3px;
    font-size: 12px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #cbcbcb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
}

.carousel-dots .dot.active {
    background: #9e7d49;
}

.carousel-dots .dot:hover {
    background: #9e7d49;
    transform: scale(1.2);
}

/* FAQ Items */
.faq-section-centered {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #ffecda;
    padding: 16px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.92px;
    color: #1d1d1d;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #754f23;
}

.faq-question svg {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px;
}

.faq-answer p {
    font-size: 18px;
    letter-spacing: 0.36px;
    color: #1d1d1d;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Responsive Components */
@media (max-width: 1200px) {
    .navigation {
        left: 50%;
        transform: translateX(-50%);
        gap: 40px;
    }
    
    .nav-items {
        gap: 30px;
    }
    
    .before-after-card {
        width: 350px;
        height: 440px;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
    
    .cta-button {
        min-width: 280px;
        height: 55px;
        font-size: 18px;
    }
    
    .cta-button.cta-medium {
        min-width: 320px;
        height: 60px;
    }
    
    .cta-button.cta-dark {
        min-width: 360px;
        height: 65px;
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .cta-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navigation {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .procedure-button {
        height: 50px;
        font-size: 19px;
        margin: 0 20px 20px;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .before-after-card {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }
    
    .cta-card {
        padding: 24px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-button {
        min-width: 250px;
        height: 50px;
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .cta-button.cta-medium {
        min-width: 280px;
        height: 55px;
        font-size: 17px;
    }
    
    .cta-button.cta-dark {
        min-width: 300px;
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .procedure-content {
        padding: 20px 16px 16px;
    }
    
    .procedure-button {
        height: 48px;
        font-size: 18px;
        margin: 0 16px 16px;
        padding: 0 20px;
    }
    
    .differential-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .faq-question {
        font-size: 20px;
        padding: 12px;
    }
    
    .faq-answer {
        padding: 0 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .cta-card {
        padding: 20px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        min-width: 220px;
        height: 45px;
        font-size: 15px;
        padding: 12px 25px;
    }
    
    .cta-button.cta-medium {
        min-width: 240px;
        height: 50px;
        font-size: 16px;
    }
    
    .cta-button.cta-dark {
        min-width: 260px;
        height: 55px;
        font-size: 17px;
    }
}