.logo,
nav {
    -webkit-backdrop-filter: blur(10px);
}
.logo,
.tag-cloud a {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.treatments,
body,
header {
    background-color: #fff;
}
header,
nav {
    z-index: 1000;
}
.btn,
.hero,
.mobile-menu-btn,
body,
nav ul li a {
    color: var(--dark);
}
.hero,
.why-us {
    text-align: center;
}
.faq-content,
.faq-extra {
    max-height: 0;
    overflow: hidden;
}
.btn,
.tag-cloud a,
nav ul li a {
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* CSS Reset to normalize browser defaults */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #2a5bd7;
    --secondary: black;
    --accent: #4caf50;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

.container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 25px;
}
section {
    padding: 80px 0;
}
header {
    top: 0;
}
.header-container {
    background: 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo,
nav {
    background: rgba(255, 255, 255, 0.65);
}
.logo {
    position: absolute;
    border-radius: 35px;
    border: 1px solid #fff;
    top: 20px;
    left: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    z-index: 1100;
    backdrop-filter: blur(10px);
}
.hero,
footer {
    padding-bottom: 20px;
}
.my-logo {
    height: 40px;
}
nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.35s;
}
nav.active {
    transform: translateX(0);
}
nav ul {
    flex-direction: column;
    padding-top: 100px;
    gap: 25px;
    list-style: none;
}
nav ul li {
    padding: 10px 0;
    margin-left: 30px;
}
nav ul li a {
    transition: color 0.3s;
}
nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 7px;
}

.mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0;
}
.hero {
    padding-top: 150px;
    background: #fff;
}
.btn,
.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px;
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}
.contact-grid,
.hero-content {
    margin: 0 auto;
}
.hero-content p {
    border-left: #e30a17 3px solid;
    padding: 0 30px;
    text-align: left;
    margin-top: 30px;
    margin: 30px auto;
    max-width: 600px;
}
.hero-content p a {
    text-decoration: underline;
    text-underline-offset: 7px;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn {
    font-size: 1rem;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 35px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}
.back-to-top:hover,
.btn:hover,
.tag-cloud a:hover {
    border-color: #87aef7;
}
.btn .fa-arrow-down,
.btn .fa-plus,
.btn .fa-arrow-right,
.btn .fa-chevron-down,
.btn .fa-chevron-up {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 14px;
    background: var(--light);
    color: var(--dark);
}
.why-us {
    padding-top: 20px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fff;
}
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.benefit-card {
    flex: 0 0 calc(33.333% - 30px);
    text-align: left;
    color: var(--gray);
}
.benefit-card h3,
.process-step h3 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}
.process {
    background-color: #f5f7fa;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2
{
    font-weight: 600;
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.section-title p,
.treatment-header h3 {
    font-weight: 600;
    color: var(--secondary);
}
.section-title p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    flex: 0 0 calc(33.333% - 30px);
    text-align: left;
    padding: 30px;
    color: var(--gray);
    background-color: #fff;
    border-radius: 35px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
    will-change: transform, opacity;
}
.footer a:hover,
footer {
    color: #fff;
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}
.contact,
.faq,
footer {
    background-color: var(--light);
}
.faq-container,
.treatments-container {
    max-width: 950px;
    margin: 0 auto;
}
.faq-item,
.treatment {
    overflow: hidden;
}
.faq-header,
.treatment-header {
    -webkit-user-select: none;
    user-select: none;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#firstElement,
.faq-item:first-child .faq-header {
    border-top: none;
}
.treatment-header h3 {
    text-align: left;
}
.treatment-content {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    max-height: 0;
    transition: 0.35s ease-in-out;
}
.treatment.active .treatment-content {
    max-height: 1000px;
    padding: 20px;
    overflow-x: auto;
}
.contact .btn {
    font-size: 16px;
}
.contact-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 35px;
    font-size: 1rem;
    color: var(--gray);
    backdrop-filter: blur(10px);
}
.footer a {
    color: var(--light);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}
#ab_us {
    margin-left: 20px;
}
@media (max-width: 992px) {
    .benefit-card,
    .process-step {
        flex: 0 0 calc(50% - 30px);
    }
}
@media only screen and (max-width: 768px) {
    #ab_us {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .hero p {
        font-size: 1rem;
    }
    .section-title h2
    {
        font-size: 1.8rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .tag-cloud a p {
        display: none !important;
    }
}
.price-table {
    font-size: 14px;
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
}
.price-table td,
.price-table th {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.price-table th {
    font-weight: 600;
}
@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
    }
    .benefit-card,
    .process-step {
        flex: 60%;
    }
    .treatment-content {
        padding: 0 15px;
    }
    .treatment.active .treatment-content {
        padding: 15px;
    }
    .price-table {
        font-size: 12px;
        min-width: 500px;
    }
}
.gradient-text {
    background: linear-gradient(135deg, #e30a17 0, #ff5733 50%, #ff8c42 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.why-turkey {
    background-color: #fff;
    padding: 0px 25px 80px;
}
.why-turkey-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    place-items: center;
}
.why-turkey-content {
    border-radius: 35px;
    grid-area: 1/1/-1/-1;
    width: 100%;
    padding: clamp(40px, 8vw, 40px) clamp(30px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: var(--light);
    color: var(--dark);
}
.faq-header h3 {
    font-weight: 600;
    color: var(--secondary);
}
.faq-content {
    width: 100%;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
    padding: 0 20px;
    color: var(--dark);
    line-height: 1.6;
}
.faq-item.active .faq-content {
    max-height: 60rem;
    padding: 0 20px 20px;
}
.faq-extra:not(.show),
.faq-item:not(.active) .faq-content {
    padding-top: 0;
    padding-bottom: 0;
}
.faq-extra {
    transition: max-height 0.35s ease-in-out, padding-top 0.35s ease-in-out, padding-bottom 0.35s ease-in-out;
    border-top: 1px solid #ddd;
}
.back-to-top,
.tag-cloud a {
    color: var(--dark);
    display: flex;
    transition: 0.3s;
}
.faq-extra.show {
    max-height: 200rem;
}
.partners {
    background-color: #fff;
    padding: 80px 0;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.tag-cloud a {
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 35px;
    font-weight: 500;
    border: 1px solid #fff;
}
.tag-cloud a img {
    height: 25px;
    object-fit: contain;
}
.back-to-top {
    position: fixed;
    border: 1px solid #fff;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.supporters {
    background-color: var(--light);
    padding: 80px 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
#supp_by_note {
    display: block;
    text-align: center;
}
@media (min-width: 576px) {
    #supp_by_note {
        display: none !important;
    }
}

/* ----------  POST PAGE STYLING  ---------- */
.blog-post {
    background: #fff;
    padding: 80px 0 0;
}

.post-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.post-meta {
    text-align: left;
    font-size: .95rem;
    color: var(--gray);
    margin-bottom: 15px;
    letter-spacing: .5px;
}

.post-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--secondary);
}

.post-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--dark);
}

/*  neat reading experience  */
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2.2em;
    margin-bottom: .7em;
    font-weight: 600;
    color: var(--secondary);
}

.post-content p {
    margin-bottom: 1.3em;
}

.post-content ul,
.post-content ol {
    margin: 1.2em 0 1.2em 1.8em;
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.4em;
    margin: 2em 0;
    font-style: italic;
    color: var(--gray);
}

.post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2.5em auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.post-content a {
    color: var(--primary);
    text-decoration: underline;
}





/* Treatments Split Layout - Perfect Blending */
.treatments-split-layout {
    display: grid;
    grid-template-columns: 225px 1fr;
    border-radius: 35px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    padding: 30px;
    overflow: hidden;
    height: 600px;

}

/* Left Side Categories - Matches your nav style */
.treatment-categories {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow-y: auto; /* Always allow vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */

}

.categories-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.category-item:hover {
    text-decoration: underline;
    text-underline-offset: 7px;
}

.category-item.active {
    text-decoration: underline;
    text-underline-offset: 7px;
}

.category-item i {
    width: 25px;
    margin-right: 12px;
    font-size: 1rem;
ç}

/* Right Side Table Container */
.treatment-table-container {
    padding-left: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

.table-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.table-header h3 {
    margin: 0;
    font-weight: 600;
    color: var(--secondary);
}

/* Table Scroll Container */
.table-scroll-container {
    flex: 1;
    height: 100%;
    overflow: auto;
}

/* Simple Table Styling */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.price-table th {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    position: sticky;
    top: 0;
}

.price-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: var(--gray);
}

.price-table tr:hover {
    background: rgba(42, 91, 215, 0.02);
}

/* Add this to your main.css file */
.price-table th:nth-child(5),
.price-table td:nth-child(5) {
    min-width: 250px; /* Optional: set a minimum width */
}

/* Table Footer */
.table-footer {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.savings-summary {
    font-size: 1.1rem;
}


@media (max-width: 992px) {

    .table-header {
        padding: 30px 0;
    }


    .treatment-table-container {
        padding-left: 0;
    }
    .treatments-split-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .treatment-categories {
        max-height: 200px;
        overflow-x: auto;
        overflow-y: auto;
        width: 100%; /* Fit viewport */
        box-sizing: border-box;
    }
    
    .categories-container {
        flex-direction: row;
        flex-wrap: wrap; /* Or 'wrap' if preferred */
        width: 100%; /* Replace max-content */
        gap: 5px; /* Consistent spacing */
    }
    
    .category-item {
        flex: 0 0 auto;
        padding: 8px 0; /* Reduced padding */
        margin: 0; /* Remove margin, rely on gap */
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid #fff;
        white-space: nowrap; /* Allow text wrapping */
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
        
        
    .price-table th,
    .price-table td {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {

    .category-item {
        padding: 8px 0;

    }

    
    .price-table {
        min-width: 600px; /* Force horizontal scroll on mobile */
    }
    
    .table-scroll-container {
        overflow-x: auto;
    }
    
    .treatment-categories {
        max-height: 150px;
    }
}
