/* Modern Clean Oral Surgery Template */
.wp-template-chirurgie-orala-content {
    padding: 60px 0;
    min-height: 100vh;
}

.wp-template-chirurgie-orala-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Card Base */
.wp-template-chirurgie-orala-experience,
.wp-template-chirurgie-orala-procedures,
.wp-template-chirurgie-orala-products,
.wp-template-chirurgie-orala-patient-care {
    margin-bottom: 50px;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Experience Section - Gradient Background */
.wp-template-chirurgie-orala-experience {
    background: linear-gradient(135deg,
    rgba(var(--color-primary), 0.95) 0%,
    rgba(var(--color-secondary), 0.85) 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(var(--color-primary), 0.15);
}

.wp-template-chirurgie-orala-experience:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(var(--color-primary), 0.25);
}

.wp-template-chirurgie-orala-experience h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.wp-template-chirurgie-orala-experience h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: rgba(var(--color-white), 0.8);
    border-radius: 2px;
}

.wp-template-chirurgie-orala-experience .clinic-description {
    font-size: 1.3em;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.wp-template-chirurgie-orala-equipment {
    background: rgba(var(--color-white), 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid rgba(var(--color-white), 0.6);
    margin-top: 25px;
}

.wp-template-chirurgie-orala-equipment p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* Procedures Section - Clean White Card */
.wp-template-chirurgie-orala-procedures {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.wp-template-chirurgie-orala-procedures:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.wp-template-chirurgie-orala-procedures h3 {
    color: rgba(var(--color-primary), 0.95);
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.wp-template-chirurgie-orala-procedures h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
    rgba(var(--color-third), 1),
    rgba(var(--color-secondary), 1));
    border-radius: 2px;
}

.procedures-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.procedures-list li {
    padding: 20px 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid rgba(var(--color-third), 1);
    transition: all 0.3s ease;
    color: #2d3748;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.procedures-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(var(--color-third), 0.1),
    transparent);
    transition: left 0.5s ease;
}

.procedures-list li:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.procedures-list li:hover::before {
    left: 100%;
}

/* Products Section - Modern Vendor Grid */
.wp-template-chirurgie-orala-products {
    background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.wp-template-chirurgie-orala-products:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wp-template-chirurgie-orala-products h3 {
    color: rgba(var(--color-primary), 0.95);
    font-size: 2em;
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
    position: relative;
}


.wp-template-chirurgie-orala-products h3::before {
    left: 25%;
}

.wp-template-chirurgie-orala-products h3::after {
    right: 25%;
}

/* Vendor Categories */
.vendor-category {
    margin-bottom: 60px;
    padding: 0;
    border-bottom: 2px solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.vendor-category:last-child {
    margin-bottom: 0;
}

.vendor-category-title {
    color: rgba(var(--color-secondary), 0.95);
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.vendor-description {
    color: #4a5568;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.vendor-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    padding-bottom: 2rem;
}

.vendor-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s
    ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 132px;
    justify-content: space-between;
    min-width: 184px;
}

.vendor-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
    rgba(var(--color-third), 1),
    rgba(var(--color-secondary), 1));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vendor-logo-item:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--color-third), 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vendor-logo-item:hover::before {
    transform: scaleX(1);
}

.vendor-logo-item img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.vendor-logo-item:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}

.vendor-name {
    color: #2d3748;
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}

/* Patient Care Section - Soft Gradient */
.wp-template-chirurgie-orala-patient-care {
    background: linear-gradient(135deg,
    rgba(var(--color-third), 0.05) 0%,
    rgba(var(--color-secondary), 0.08) 50%,
    rgba(var(--color-primary), 0.05) 100%);
    border: 1px solid rgba(var(--color-third), 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wp-template-chirurgie-orala-patient-care:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.experience-technology-title {
    color: rgba(var(--color-primary), 0.95);
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
}


.patient-care-intro {
    font-size: 1.2em;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid rgba(76, 175, 80, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefits-list li {
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    color: #2d3748;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wp-template-chirurgie-orala-content {
        padding: 40px 0;
    }

    .wp-template-chirurgie-orala-experience,
    .wp-template-chirurgie-orala-procedures,
    .wp-template-chirurgie-orala-products,
    .wp-template-chirurgie-orala-patient-care {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .wp-template-chirurgie-orala-experience h2 {
        font-size: 2.2em;
    }

    .wp-template-chirurgie-orala-procedures h3,
    .wp-template-chirurgie-orala-products h3,
    .experience-technology-title {
        font-size: 1.8em;
    }

    .vendor-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .procedures-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wp-template-chirurgie-orala-content .container {
        padding: 0 15px;
    }

    .wp-template-chirurgie-orala-experience,
    .wp-template-chirurgie-orala-procedures,
    .wp-template-chirurgie-orala-products,
    .wp-template-chirurgie-orala-patient-care {
        padding: 30px 20px;
        margin-bottom: 30px;
        border-radius: 16px;
    }

    .wp-template-chirurgie-orala-experience h2 {
        font-size: 1.8em;
    }

    .wp-template-chirurgie-orala-procedures h3,
    .wp-template-chirurgie-orala-products h3,
    .experience-technology-title {
        font-size: 1.5em;
    }

    .wp-template-chirurgie-orala-products h3::before,
    .wp-template-chirurgie-orala-products h3::after {
        display: none;
    }

    .vendor-logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vendor-logo-item {
        padding: 20px 15px;
    }

    .vendor-logo-item img {
        max-width: 120px;
        max-height: 60px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .procedures-list li,
    .benefits-list li {
        padding: 20px 20px 20px 60px;
    }

    .benefits-list li::before {
        top: 18px;
        left: 18px;
    }
}

@media (max-width: 480px) {
    .wp-template-chirurgie-orala-experience h2 {
        font-size: 1.6em;
    }

    .wp-template-chirurgie-orala-procedures h3,
    .wp-template-chirurgie-orala-products h3,
    .experience-technology-title {
        font-size: 1.3em;
    }

    .wp-template-chirurgie-orala-experience .clinic-description,
    .patient-care-intro {
        font-size: 1.1em;
    }

    .vendor-category-title {
        font-size: 1.2em;
    }

    .vendor-description {
        font-size: 1em;
    }
}

/* Subtle Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-template-chirurgie-orala-experience,
.wp-template-chirurgie-orala-procedures,
.wp-template-chirurgie-orala-products,
.wp-template-chirurgie-orala-patient-care {
    animation: fadeInUp 0.6s ease-out;
}

.wp-template-chirurgie-orala-procedures {
    animation-delay: 0.1s;
}

.wp-template-chirurgie-orala-products {
    animation-delay: 0.2s;
}

.wp-template-chirurgie-orala-patient-care {
    animation-delay: 0.3s;
}